p.text {
    font-size: 14px;
    line-height: 26px;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    top: unset;
    transition: opacity 0.4s ease, background-color 0.4s ease;
    background: unset;
}

.vision-mision p.text {
    margin-top: 25px;
}

section.banner-section.institutional-video {
    padding: 0px;
}

/* Values */
.our-values {
    text-align: center;
    padding: 60px 20px;
    background: #F8F8F8;
}

.our-values h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1d2d5d;
    /* azul similar al de la imagen */
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    
    /* fondo circular gris-azulado claro */
    border-radius: 50%;
}

.value-item p {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

/* Certifications Banner */
.banner-section {
    padding: 5% 7%;
    gap: 2%;
}

.banner-text {
    font-weight: 400;
    font-size: 35px;
    line-height: 45px;
    width: 50%;
    padding: 0;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 12%;
}

.banner-text h4 {
    text-align: left;
    line-height: 40px;
}

.banner-text span {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 35px;
}

.banner-section .features-list,
.text a {
    text-align: left;
    text-decoration: unset;
    line-height: 30px;
    font-size: 14px;
    width: fit-content;
}

/* Quote Banner */
.banner-section.quote-section {
    padding: 0 4%;
    flex-direction: column;
    margin: 60px auto 90px
}


.quote-section .banner-text {
    line-height: 55px;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.quote-section p.quote {
    font-size: 35px;
    line-height: 55px;
    margin: 30px auto 0;
}

.quote-section .banner-text span {
    color: #233E99;
    font-weight: 700;
}

.blue-content .features-list li a {
    color: white
}

/* Netbook */
@media screen and (min-width: 1000px) and (max-width: 1250px) {

    /* Borders Info Grid Section */
    .info-grid h3 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 5%;
    }

    p.text {
        font-size: 13px;
        line-height: 22px;
    }


    /* Certifications Banner */
    .banner-section {
        padding: 4% 6%;
        gap: 8%;
    }


    .banner-text {

        font-size: 28px;
        width: 65%;
        gap: 8%;
    }

    .banner-text .extrabold {
        font-size: 28px;
    }

    .blue-content .features-list li {
        line-height: 0px;
    }

    .blue-content .features-list li a {
        font-size: 13px;
        line-height: 26px;
    }

}

/* Tablet */
@media screen and (max-width: 1000px) {

    /* Hero */
    .hero-dashboard .hero-wrap .hero-background img {
        width: 100%;
        height: 100%;
        aspect-ratio: 390/366;
        background-image: url(/files/customs/company/home-hero-mobile.jpg);
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
        gap: 32px 24px;
        max-width: 820px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {

    .vision-mision p.text {
        margin-top: 0px;
    }

    /* Values */
    .our-values {
        padding: 36px 16px;
    }

    .our-values h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columnas */
        gap: 24px 18px;
        /* espacios más compactos */
        max-width: 420px;
    }

    .value-item img {
        width: 42px;
        height: 42px;
        padding: 12px;
        /* círculo un toque más chico */
        margin-bottom: 10px;
    }

    .value-item p {
        font-size: 0.95rem;
        line-height: 1.25rem;
    }

    /* Certifications Banner */
    .banner-section .banner-text {
        text-align: center;
        max-width: 90%;
    }

    .banner-text {
        width: 100%;
        margin: 0 auto;
        font-size: 25px;
        line-height: 35px;
        width: 100%;
        flex-direction: column;
        gap: 12%;

    }

    section.vision-mision.offset-section {
        flex-direction: column;
    }

    section.banner-section.institutional-video {
        margin-top: 0px;
        /* width: 90%; */
    }

    /* Quote Banner */
    p.text {
        font-size: 14px;
        line-height: 22px;
    }

    .banner-section.quote-section {
        padding: 0 5%;
        flex-direction: column;
        margin: 0px auto 0px;
    }


    .quote-section .banner-text {
        line-height: 40px;
        gap: 20px;
        padding-block: 30px;
    }

    .quote-section p.quote,
    .quote-section .banner-text span {
        font-size: 23px;
        line-height: 38px;
    }
}