﻿.about-section {
    padding: 40px 0;
}

.section-tag {
    color: #1565ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
}

.about-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    color: #071d49;
}

.about-titleb {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.1;
    color: #071d49;
}

.about-description {
    font-size: 18px;
    line-height: 1.5;
    color: #4f5b6b;
}

.about-panel {
    background: #03183F;
    border-radius: 22px;
    padding: 35px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,.15);
}

    .about-image img {
        max-width: 100%;
    }

.about-info {
    padding-left: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 35px;
}

    .about-feature:last-child {
        margin-bottom: 0;
    }

    .about-feature i {
        font-size: 42px;
        color: #0D6EFD;
        min-width: 45px;
    }

    .about-feature h5 {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .about-feature p {
        color: rgba(255,255,255,.75);
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

.value-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 25px 20px;
}

.value-title {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 18px;
    color: #1565ff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .5px;
}

.value-item {
    text-align: center;
    padding: 15px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .value-item:last-child {
        border-right: none;
    }

.icon-circle {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icon-circle i {
        color: #1565ff;
        font-size: 42px;
    }

.value-item h5 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2b45;
    margin: 0 0 15px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #5f6368;
}

.mission-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.mission-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #1565ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .mission-icon i {
        color: #fff;
        font-size: 24px;
    }

.mission-content {
    flex: 1;
}
    .mission-content h5 {
        margin: 0 0 10px;
        color: #1565ff;
        font-size: 22px;
        font-weight: 700;
    }

    .mission-content p {
        margin: 0;
        color: #555;
        font-size: 13px;
        line-height: 1.3;
    }

.mission-card hr {
    margin: 25px 0;
    border-color: #e5e7eb;
}

.about-footer {
    display: flex;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-top: 40px; /* Espacio superior */
}

.footer-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-right: 1px solid #e5e7eb;
}

    .footer-item:last-child {
        border-right: none;
    }

    .footer-item i {
        font-size: 42px;
        color: #1565ff;
        flex-shrink: 0;
    }

.footer-content {
    flex: 1;
}

.footer-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 8px;
}

.footer-number {
    font-size: 30px;
    font-weight: 800;
    color: #1565ff;
    line-height: 1;
}
.footer-titulos {
    font-size: 20px;
    font-weight: 800;
    color: #1565ff;
    line-height: 1;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #1d3557;
    line-height: 1.2;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {

    /* Sección general */
    .about-section {
        padding: 20px 15px;
    }

    /* Títulos */
    .about-title {
        font-size: 30px;
    }

    .about-titleb {
        font-size: 28px;
    }

    .about-description {
        font-size: 16px;
        text-align: justify;
    }

    /* Panel azul */
    .about-panel {
        padding: 20px;
        margin-top: 25px;
    }

    .about-image {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.15);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .about-info {
        padding-left: 0;
    }

    .about-feature {
        gap: 12px;
        margin-bottom: 25px;
    }

        .about-feature i {
            font-size: 30px;
            min-width: 35px;
        }

        .about-feature h5 {
            font-size: 18px;
        }

        .about-feature p {
            font-size: 14px;
            line-height: 1.5;
        }

    /* Propuesta de Valor */

    .value-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .value-title {
        font-size: 13px;
        white-space: nowrap;
    }

    .value-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 20px 10px;
    }

        .value-item:last-child {
            border-bottom: none;
        }

    .icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

        .icon-circle i {
            font-size: 30px;
        }

    .value-item h5 {
        font-size: 20px;
    }

    .value-item p {
        font-size: 14px;
    }

    /* Misión y Visión */

    .mission-card {
        margin-top: 20px;
        padding: 20px;
    }

    .mission-item {
        gap: 12px;
    }

    .mission-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

        .mission-icon i {
            font-size: 20px;
        }

    .mission-content h5 {
        font-size: 18px;
    }

    .mission-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Barra inferior */

    .about-footer {
        flex-direction: column;
    }

    .footer-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 20px;
    }

        .footer-item:last-child {
            border-bottom: none;
        }

        .footer-item i {
            font-size: 34px;
        }

    .footer-number {
        font-size: 24px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    /* Sección general */

    .about-section {
        padding: 15px 10px;
    }

    /* Títulos */

    .about-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .about-titleb {
        font-size: 22px;
        line-height: 1.2;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
    }

    /* Panel azul */

    .about-panel {
        padding: 15px;
        margin-top: 20px;
        border-radius: 12px;
    }

    .about-image {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .about-feature {
        gap: 10px;
        margin-bottom: 20px;
    }

        .about-feature i {
            font-size: 24px;
            min-width: 30px;
        }

        .about-feature h5 {
            font-size: 16px;
        }

        .about-feature p {
            font-size: 13px;
            line-height: 1.4;
        }

    /* Propuesta de Valor */

    .value-card {
        padding: 15px;
        margin-bottom: 15px;
    }

  /*  .value-title {
        font-size: 12px;
        white-space: normal;
    }*/
    .value-title {
        font-size: 11px !important;
        line-height: 1.1;
        letter-spacing: 0;
    }

    .value-item {
        padding: 15px 10px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

        .icon-circle i {
            font-size: 24px;
        }

    .value-item h5 {
        font-size: 18px;
    }

    .value-item p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Misión y Visión */

    .mission-card {
        padding: 15px;
        margin-top: 15px;
    }

    .mission-item {
        gap: 10px;
    }

    .mission-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

        .mission-icon i {
            font-size: 18px;
        }

    .mission-content h5 {
        font-size: 16px;
    }

    .mission-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Footer */

    .about-footer {
        flex-direction: column;
    }

    .footer-item {
        padding: 15px;
    }

        .footer-item i {
            font-size: 28px;
        }

    .footer-number {
        font-size: 20px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-content p {
        font-size: 12px;
        line-height: 1.4;
    }
}