:root {
    --deep-blue: #00264e; 
    --bright-red: #d81b35;
    --gold-award: #b8860b;
    --gold-light: #fffcf0;
    --prinsupe-blue: #00264e;
}

#anniversary-section {
    padding: 60px 0;
    background: #fff; 
}

.anniversary-banner {
    background: 
        linear-gradient(90deg, rgba(0,38,78,1) 0%, rgba(0,38,78,0.7) 60%, rgba(0,38,78,0.2) 100%),
        url('../../../public/imagen/nosotros/nosotros_banner.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 100px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.anniversary-title {
    font-size: 4rem; 
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
}

.anniversary-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--bright-red);
    margin-top: 10px;
}

.anniversary-text {
    font-size: 1.5rem;
    line-height: 1.3;
    max-width: 600px;
    margin-bottom: 45px;
}

.anniversary-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-solicitar {
    background-color: var(--bright-red);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
}

.btn-solicitar:hover {
    background-color: #be2e3a; 
    color: white;
    transform: translateY(-3px);
}

.btn-outline-light-custom {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.btn-outline-light-custom i {
    font-size: 24px;
    color: #25d366;
}

@media (max-width: 1199px) {
    .anniversary-title {
        font-size: 3rem;
    }
}
@media (max-width: 991px) {
    .anniversary-banner {
        padding: 60px 30px;
        text-align: center;
        background-position: center top, center bottom;
        background-size: cover, 100% auto;
    }
    .anniversary-title {
        font-size: 2.5rem;
    }
    .anniversary-title::after {
        margin: 10px auto; 
    }
    .anniversary-text {
        margin: 0 auto 30px;
    }
    .anniversary-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .anniversary-banner {
        padding: 40px 20px;
    }
    .anniversary-title {
        font-size: 2.2rem;
    }
    .anniversary-text {
        font-size: 1.2rem;
    }
    .btn-solicitar {
        width: 100%; 
        justify-content: center;
    }
}

:root {
    --stat-title-color: #5b708b;
    --stat-number-color: #1a1e21;
    --stat-green: #24b358;
    --stat-border: #eef2f6;
}

#stats-section {
    background: #f8f9fa;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--stat-border);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.stat-title {
    color: var(--stat-title-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-icon {
    color: #16417d;
    font-size: 1.2rem;
}

.stat-number {
    color: var(--stat-number-color);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.stat-subtext {
    color: var(--stat-green);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Ajustes Responsivos */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-card {
        padding: 20px;
    }
}

:root {
    --navy-blue: #003366; /* El azul fuerte de la imagen */
    --light-gray-text: #666;
    --border-soft: #eee;
}

#who-we-are-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Títulos */
.who-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1e21;
    margin-bottom: 30px;
}

.who-title span {
    color: var(--navy-blue);
}

/* Párrafos y resaltados */
.who-paragraph {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--light-gray-text);
    margin-bottom: 20px;
}

.highlight-navy {
    color: var(--navy-blue);
    font-weight: 700;
}

.who-divider {
    border: 0;
    border-top: 1px solid var(--border-soft);
    margin: 30px 0;
    width: 100%;
}

.secondary {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contenedor de Imagen y Badge */
.who-image-container {
    position: relative;
    padding-left: 20px;
}

.img-who-rounded {
    width: 100%;
    border-radius: 40px; /* Bordes muy suaves */
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--navy-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

.exp-text span {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: none;
}

/* --- Ajustes Responsivos --- */
@media (max-width: 991px) {
    .who-title { font-size: 2.5rem; text-align: center; }
    .who-content { text-align: center; }
    .who-image-container { padding-left: 0; margin-top: 40px; }
    .experience-badge { 
        bottom: 15px; 
        right: 15px; 
        padding: 10px 20px;
    }
    .exp-number { font-size: 1.8rem; }
}


:root {
    --bg-light-gray: #f8f9fa;
    --text-navy: #1a1e21;
    --text-muted: #6c757d;
    --color-mission: #00264e;
    --color-vision: #d81b35;
    --color-values: #24b358;
}

#values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-main-title {
    color: var(--text-navy);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.values-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Tarjeta de Valores */
.value-card {
    background-color: var(--bg-light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

/* Iconos */
.value-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.icon-mission { background-color: var(--color-mission); }
.icon-vision { background-color: var(--color-vision); }
.icon-values { background-color: var(--color-values); }

.value-title {
    color: var(--text-navy);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.value-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Ajustes Responsive */
@media (max-width: 991px) {
    .values-main-title { font-size: 2rem; }
    .value-card { padding: 30px 25px; }
}

@media (max-width: 576px) {
    .values-main-title { font-size: 1.8rem; }
    .value-card { text-align: center; }
    .value-icon-box { margin: 0 auto 20px; }
}

:root {
    --cta-blue: #00264e; /* Azul de la imagen */
    --cta-red: #d81b35;  /* Rojo del botón contactanos */
    --white: #ffffff;
}

#final-cta {
    padding: 60px 0;
}

.cta-card {
    background-color: var(--cta-blue);
    border-radius: 25px; /* Bordes muy redondeados */
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 15px 35px rgba(30, 75, 122, 0.2);
}

.cta-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Contenedor de Botones */
.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Botón Blanco (Auditoría) */
.btn-audit {
    background-color: var(--white);
    color: var(--cta-blue);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-audit:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    color: var(--cta-blue);
}

/* Botón Rojo (Contacto) */
.btn-contact-red {
    background-color: var(--cta-red);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-red:hover {
    background-color: #be2e3a;
    transform: translateY(-3px);
    color: var(--white);
}

/* Icono Marca de Agua */
.cta-watermark {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 180px;
    color: rgba(255, 255, 255, 0.05); /* Muy tenue */
    z-index: 1;
    pointer-events: none;
}

/* Ajustes Responsivos */
@media (max-width: 991px) {
    .cta-main-title {
        font-size: 2.2rem;
    }
    .cta-card {
        padding: 60px 25px;
    }
    .cta-watermark {
        display: none; /* Se oculta en tablets/móviles para limpiar el diseño */
    }
}

@media (max-width: 576px) {
    .cta-main-title {
        font-size: 1.8rem;
    }
    .btn-audit, .btn-contact-red {
        width: 100%; /* Botones uno sobre otro en móviles */
        text-align: center;
    }
}

#award-section {
    background-color: #f4f7f9;
}
.award-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-left: 8px solid var(--gold-award); 
}
.award-badge {
    color: var(--gold-award);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}
.award-main-title {
    color: var(--prinsupe-blue);
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.award-subtitle {
    color: var(--gold-award);
    font-weight: 700;
    margin-bottom: 25px;
    font-style: italic;
}
.award-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}
.award-institutions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}
.institutions-title {
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.institutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.institutions-grid span {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}
.institutions-grid i {
    color: var(--gold-award);
}
.award-img {
    border-radius: 15px;
    height: 180px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.award-img:hover {
    transform: scale(1.05);
}
.slogan-prinsupe {
    font-weight: 800;
    color: var(--prinsupe-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    font-size: 0.9rem;
}
@media (max-width: 991px) {
    .award-wrapper {
        padding: 30px;
    }
    .award-main-title {
        font-size: 1.8rem;
    }
    .award-img {
        height: 140px;
    }
}
@media (max-width: 576px) {
    .award-main-title {
        font-size: 1.5rem;
    }
    .institutions-grid {
        flex-direction: column;
        gap: 10px;
    }
}