.top-navbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-flow: column-reverse;
    align-items: center;
    padding: 2rem 5%;
    z-index: 1;
    gap: 2rem;
}

.logo{
    width: 10rem;
}

.nav-contact-container{
    width: 100%;
    display: flex;
    gap: 3vw;
}

.nav-contact-container > span{
    font-size: 2.75vw;
    font-weight: light;
    color: white;
}

.phone-white::before{
    content: "";
    padding-left: 3vw;
    width: 2.5vw;
    height: 2.5vw;
    background-image: url('/res/img/1150-25-17-2-Telefono-Blanco.svg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.email-white::before{
    content: "";
    padding-left: 5vw;
    width: 1vw;
    height: 1vw;
    background-image: url('/res/img/1150-25-17-2-Contacto-Blanco.svg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.gps-white::before{
    content: "";
    padding-left: 3vw;
    width: 2.5vw;
    height: 2.5vw;
    background-image: url('/res/img/1150-25-17-2-Ubicación-Blanco.svg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner-container{
    width: 100%;
    position: relative;
}

.banner-title{
    position: absolute;
    top: 47.5%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 2.5%;
    text-align: center;
    color: white;
    font-family: var(--titles-font);
    font-weight: normal;
    font-size: 8vw;
    margin: 0;
}

.banner-subtitle{
    position: absolute;
    top: 52.5%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 7.5%;
    text-align: center;
    color: white;
    margin: 0;
    font-size: 4.75vw;
}

.intro-p{
    padding: 2rem 7.5%;
    font-size: 0.85rem;
    text-align: justify;
    margin: 0;
}

.section-title{
    width: 100%;
    padding: 1rem 7.5% 0.25rem;
    margin: 0;
    position: relative;
}

.section-title::before{
    content: "";
    position: absolute;
    left: calc(7.5% - 1.25rem);
    top: 1.20rem;
    width: 0;
    height: 0;
    border-top: 0.85rem solid transparent;
    border-left: 0.85rem solid var(--primary-color);
}

.section-subtitle{
    width: 100%;
    padding: 0.25rem 7.5% 0;
    margin: 0;
    font-size: 0.85rem;
    font-weight: normal;
}

.tools-container{
    width: 100%;
    padding: 1rem 7.5%;
}

.tools-title{
    font-size: 0.9rem;
    line-height: 1.5em;
    font-weight: normal;
}

.tools-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0.25rem;
}

.tools-p{
    padding: 2rem 7.5%;
    text-align: center;
    font-size: 0.95rem;
}

.benefits-container{
    width: 100%;
    background-color: var(--primary-color);
    margin-top: 3rem;
    position: relative;
}

.benefits-container::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.75rem;
    width: 0;
    height: 0;
    border-top: 1.75rem solid var(--primary-color);
    border-left: 1.75rem solid transparent;
    border-right: 1.75rem solid transparent;
}

.benefits-content{
    width: 100%;
    padding: 0 7.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.banefit-item{
    background-color: white;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 10/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 15%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.banefit-item:first-child::after{
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 50%;
    background-color: white;
    z-index: -1;
}

.item-img{
    width: 8rem;
}

.item-title{
    margin: 2.5rem 0 0;
    font-size: 0.9rem;
    text-align: center;
}

.item-subtitle{
    font-size: 0.9rem;
    font-weight: normal;
    margin: 0.25rem 0 0;
    text-align: center;
}

.benefits-p{
    width: 100%;
    padding: 3rem 7.5%;
    color: white;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.35em;
    letter-spacing: 0.02em;
}

.promo-container{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.promo-content{
    width: 100%;
    background-color: black;
    padding: 5rem 0 3rem;
}

.promo-content > .section-title{
    color: white;
}

.promo-p{
    width: 100%;
    font-size: 0.85rem;
    line-height: 1.5em;
    color: white;
    font-weight: lighter;
    padding: 0 7.5% 0;
}

.promo-a{
    display: block;
    width: fit-content;
    background-color: white;
    padding: 0.5em 2em;
    font-size: 0.85rem;
    margin: 2rem auto 1rem 7.5%;
    color: black;
}

.promo-img{
    height: 65vh;
    object-fit: cover;
}

.footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 7.5%;
    gap: 1rem;
}

.footer-title{
    font-size: 1.25rem;
    margin: 0;
    text-align: center;
}

.footer-p{
    font-size: 0.95rem;
    line-height: 1.35em;
    text-align: center;
}

.yellow{
    color: var(--primary-color);
}

.contact-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phone::before{
    content: "";
    padding-left: 1.5rem;
    width: 1rem;
    height: 1rem;
    background-image: url('/res/img/1150-25-17-2-Telefono-Amarillo.svg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.email::before{
    content: "";
    padding-left: 2rem;
    width: 1rem;
    height: 1rem;
    background-image: url('/res/img/1150-25-17-2-Contacto-Amarillo.svg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.gps::before{
    content: "";
    padding-left: 1.25rem;
    width: 1rem;
    height: 1rem;
    background-image: url('/res/img/1150-25-17-2-Ubicación-Amarillo.svg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (width >= 1024px){
    .top-navbar{
        flex-flow: row;
        justify-content: space-between;
        padding: 1rem 7.5%;
        gap: 2rem;
    }
    
    .logo{
        width: 10rem;
    }
    
    .nav-contact-container{
        width: fit-content;
        gap: 2rem;
    }
    
    .nav-contact-container > span{
        font-size: 1.25rem;
    }
    
    .phone-white::before{
        padding-left: 1.5rem;
        width: 1rem;
        height: 1rem;
    }
    
    .email-white::before{
        padding-left: 2.5rem;
        width: 1rem;
        height: 1rem;
    }
    
    .gps-white::before{
        padding-left: 1.5rem;
        width: 1rem;
        height: 1rem;
    }
    
    .banner-title{
        top: 45%;
        padding: 0 7.5%;
        font-size: 4.5vw;
    }
    
    .banner-subtitle{
        font-size: 2.5vw;
    }
    
    .intro-p{
        padding: 3rem 10%;
        font-size: 1.25rem;
        line-height: 1.5em;
        text-align-last: center;
    }
    
    .section-title{
        padding: 1.5rem 7.5% 0.5rem;
        font-size: 1.75rem;
    }
    
    .section-title::before{
        left: calc(7.5% - 2rem);
        top: 2rem;
        border-top: 1rem solid transparent;
        border-left: 1rem solid var(--primary-color);
    }
    
    .section-subtitle{
        padding: 0.5rem 7.5% 0;
        font-size: 1.25rem;
    }
    
    .tools-container{
        padding: 2rem 7.5%;
    }
    
    .tools-title{
        font-size: 1.35rem;
    }
    
    .tools-content{
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem 0.5rem;
    }
    
    .tools-p{
        padding: 3rem 15%;
        font-size: 1.45rem;
        line-height: 1.5em;
        font-weight: bold;
    }
    
    .benefits-container::after{
        bottom: -2.45rem;
        border-top: 2.5rem solid var(--primary-color);
        border-left: 2.5rem solid transparent;
        border-right: 2.5rem solid transparent;
    }
    
    .benefits-content{
        padding: 0 7.5%;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 2rem;
        position: relative;
    }

    .benefits-content::after{
        content: '';
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 50%;
        background-color: white;
    }
    
    .banefit-item{
        width: 25%;
        max-width: unset;
        padding: 1rem 1.5%;
        z-index: 1;
    }
    
    .banefit-item:first-child::after{
        content: unset;
    }
    
    .item-img{
        width: 6rem;
    }
    
    .item-title{
        margin: 2rem 0 0;
        font-size: 1rem;
    }
    
    .item-subtitle{
        font-size: 1rem;
    }
    
    .benefits-p{
        padding: 5rem 15% 3rem;
        font-size: 1.5rem;
        line-height: 1.5em;
        letter-spacing: 0em;
    }
    
    .promo-container{
        flex-direction: row;
    }
    
    .promo-content{
        width: 49%;
        padding: 3rem 0;
        align-content: center;
    }
    
    .promo-content > .section-title{
        color: white;
        margin-left: 7.5%;
    }
    
    .promo-p{
        font-size: 1.35rem;
        padding: 0 15% 0;
    }
    
    .promo-a{
        padding: 0.75em 3em;
        font-size: 1rem;
        margin: 2rem auto 1rem 15%;
    }
    
    .promo-img{
        width: 51%;
        height: unset;
    }
    
    .footer-title{
        font-size: 1.75rem;
    }
    
    .footer-p{
        font-size: 1.5rem;
    }
    
    .contact-container{
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .contact-container > span{
        font-size: 1.25rem;
    }
    
    .phone::before{
        padding-left: 2rem;
    }
    
    .email::before{
        padding-left: 2.5rem;
    }
    
    .gps::before{
        padding-left: 1.75rem;
    }
}