/* ============================================
   ABOUT.CSS
   Estilos exclusivos para la página About Us
   SECUENCIA DE COLORES: 
   Blanco → Negro → Blanco → Negro → Azul (tarjetas blancas)
   ============================================ */

/* === IMPORTAR VARIABLES GLOBALES === */
:root {
    --hexa-blue: #0A3D66;
    --hexa-blue-dark: #072e4d;
    --hexa-blue-glow: rgba(10, 61, 102, 0.25);
    --hexa-orange: #FF6A00;
    --hexa-orange-dark: #e65c00;
    --hexa-orange-glow: rgba(255, 106, 0, 0.25);
    --hexa-black: #0F1115;
    --hexa-white: #FFFFFF;
    --text-light: #ffffff;
    --text-dark: #0F1115;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
}

/* ============================================
   HERO (siempre con imagen)
   ============================================ */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(10, 61, 102, 0.85), rgba(10, 61, 102, 0.6)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 80px;
}

.about-hero .hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 102, 0.85) 0%, rgba(10, 61, 102, 0.6) 100%);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.about-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 106, 0, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #FF6A00;
    border: 1px solid rgba(255, 106, 0, 0.3);
    margin-bottom: 1rem;
}

.about-hero h1 {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    .about-hero .lead {
        font-size: 0.95rem;
    }
}

/* ============================================
   SECCIÓN FONDO BLANCO (texto negro) - SIN CAMBIOS
   ============================================ */
.about-section-white {
    background-color: var(--hexa-white);
    color: var(--text-dark);
    padding: 80px 0;
}

.about-section-white .section-header-center span,
.about-section-white .section-header-center h2,
.about-section-white h2,
.about-section-white p {
    color: var(--text-dark);
}

.about-section-white .text-secondary {
    color: var(--text-muted) !important;
}

/* ============================================
   SECCIÓN FONDO NEGRO (texto blanco) - SIN CAMBIOS (excepto fondo)
   ============================================ */
.about-section-black {
    background-color: #D9DEE3;
    color: var(--text-dark);
    padding: 80px 0;
}

.about-section-black .section-header-center span,
.about-section-black .section-header-center h2,
.about-section-black h2 {
    color: var(--text-dark);
}

.about-section-black p {
    color: var(--text-muted);
}

/* ============================================
   SECCIÓN FONDO AZUL (tarjetas blancas) - SIN CAMBIOS
   ============================================ */
.about-section-blue {
    background-color: var(--hexa-blue);
    color: var(--text-light);
    padding: 80px 0;
}

.about-section-blue .section-header-center span,
.about-section-blue .section-header-center h2,
.about-section-blue h2 {
    color: white;
}

.about-section-blue p {
    color: rgba(255, 255, 255, 0.8);
}

/* Tarjetas blancas dentro de fondo azul */
.about-section-blue .leadership-card {
    background: var(--hexa-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-section-blue .leadership-card:hover {
    transform: translateY(-8px);
    border-color: var(--hexa-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-section-blue .leadership-card h3 {
    color: var(--text-dark);
}

.about-section-blue .leadership-card .title {
    color: var(--hexa-orange);
}

.about-section-blue .leadership-card .bio p {
    color: var(--text-muted);
}

.about-section-blue .leadership-card .bio .quote {
    color: var(--hexa-orange);
}

/* ============================================
   DIVIDER - SIN CAMBIOS
   ============================================ */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--hexa-orange), var(--hexa-orange-dark));
    border-radius: 3px;
    margin: 1rem auto 0;
}

/* ============================================
   FEATURE CARDS (sección Florida Presence - ACTUALIZADA)
   ============================================ */
.about-section-black .feature-card {
    background: transparent;
    border: 2px solid #0A3D66;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-section-black .feature-card:hover {
    transform: translateY(-8px);
    border-color: #0A3D66;
    background: rgba(10, 61, 102, 0.03);
    box-shadow: 0 10px 25px rgba(10, 61, 102, 0.15);
}

.about-section-black .feature-card i {
    font-size: 2.5rem;
    color: #0A3D66;
    margin-bottom: 1rem;
}

.about-section-black .feature-card h4 {
    color: #0A3D66;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.about-section-black .feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   TABLA (sección Why Our Model Works - fondo blanco) - SIN CAMBIOS
   ============================================ */
.about-section-white .table-premium {
    background: transparent;
    width: 100%;
    border-collapse: collapse;
}

.about-section-white .table-premium thead th {
    background: var(--hexa-blue);
    color: white;
    font-weight: 700;
    padding: 1rem;
    border: none;
}

.about-section-white .table-premium tbody td {
    background: var(--hexa-white);
    color: var(--text-dark);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.about-section-white .table-premium tbody tr:hover td {
    background: rgba(255, 106, 0, 0.05);
}

.about-section-white .table-premium .text-orange {
    color: var(--hexa-orange) !important;
}

/* ============================================
   MISSION CARDS (sección Misión y Visión - ACTUALIZADA)
   ============================================ */
.about-section-black .mission-card {
    background: transparent;
    border: 2px solid #0A3D66;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-section-black .mission-card:hover {
    transform: translateY(-5px);
    border-color: #0A3D66;
    background: rgba(10, 61, 102, 0.03);
    box-shadow: 0 10px 25px rgba(10, 61, 102, 0.15);
}

.about-section-black .mission-card i {
    font-size: 2.5rem;
    color: #0A3D66;
    margin-bottom: 1rem;
}

.about-section-black .mission-card h3 {
    color: #0A3D66;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-section-black .mission-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   SERVICE SUMMARY CARDS (sección What We Do - fondo blanco) - SIN CAMBIOS
   ============================================ */
.about-section-white .service-summary-card {
    background: var(--hexa-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.about-section-white .service-summary-card:hover {
    transform: translateY(-5px);
    border-color: var(--hexa-orange);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.about-section-white .service-summary-card i {
    font-size: 2rem;
    color: var(--hexa-orange);
    margin-bottom: 1rem;
}

.about-section-white .service-summary-card h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.about-section-white .service-summary-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   SECTOR CARDS (sección Sectors We Serve - ACTUALIZADA)
   ============================================ */
.about-section-black .sector-card {
    background: transparent;
    border: 2px solid #0A3D66;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-section-black .sector-card:hover {
    transform: translateY(-5px);
    border-color: #0A3D66;
    background: rgba(10, 61, 102, 0.03);
    box-shadow: 0 10px 25px rgba(10, 61, 102, 0.15);
}

.about-section-black .sector-card i {
    font-size: 2rem;
    color: #0A3D66;
    margin-bottom: 1rem;
}

.about-section-black .sector-card h4 {
    color: #0A3D66;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.about-section-black .sector-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* ============================================
   WORKFLOW STEPS (sección How We Work - fondo blanco) - SIN CAMBIOS
   ============================================ */
.about-section-white .workflow-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.about-section-white .workflow-step {
    background: var(--hexa-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 160px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.about-section-white .workflow-step:hover {
    border-color: var(--hexa-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-section-white .workflow-number {
    width: 45px;
    height: 45px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--hexa-orange);
}

.about-section-white .workflow-step h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-section-white .workflow-step p {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-section-white .workflow-wrapper {
        flex-direction: column;
    }
    .about-section-white .workflow-step {
        min-width: auto;
    }
}

/* ============================================
   PRINCIPLE CARDS (sección Principles - ACTUALIZADA)
   ============================================ */
.about-section-black .principle-card {
    background: transparent;
    border: 2px solid #0A3D66;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-section-black .principle-card:hover {
    transform: translateY(-5px);
    border-color: #0A3D66;
    background: rgba(10, 61, 102, 0.03);
    box-shadow: 0 10px 25px rgba(10, 61, 102, 0.15);
}

.about-section-black .principle-card i {
    font-size: 2rem;
    color: #0A3D66;
    margin-bottom: 1rem;
}

.about-section-black .principle-card h4 {
    color: #0A3D66;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.about-section-black .principle-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* ============================================
   LEADERSHIP (sección Leadership - fondo azul con tarjetas blancas) - SIN CAMBIOS
   ============================================ */
.about-section-blue .leadership-card {
    background: var(--hexa-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-section-blue .leadership-card:hover {
    transform: translateY(-8px);
    border-color: var(--hexa-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-section-blue .leadership-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--hexa-orange);
    margin: 0 auto 1.2rem;
    display: block;
}

.about-section-blue .leadership-card h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.about-section-blue .leadership-card .title {
    text-align: center;
    color: var(--hexa-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-section-blue .specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.about-section-blue .specialties span {
    background: rgba(255, 106, 0, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--hexa-orange);
}

.about-section-blue .bio {
    text-align: left;
}

.about-section-blue .bio p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-section-blue .bio .quote {
    color: var(--hexa-orange);
    font-style: italic;
    font-size: 0.85rem;
    border-left: 2px solid var(--hexa-orange);
    padding-left: 1rem;
}

@media (max-width: 768px) {
    .about-section-blue .leadership-img {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   CTA PREMIUM (sección CTA - fondo blanco - ACTUALIZADA)
   ============================================ */
.about-section-white .cta-premium {
    background: #FFFFFF;
    border: 2px solid #0A3D66;
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-section-white .cta-premium h2,
.about-section-white .cta-premium p {
    color: var(--text-dark);
}

.about-section-white .cta-premium h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-section-white .cta-premium p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-section-white .cta-premium .btn-cta {
    background: #0A3D66;
    color: white;
}

.about-section-white .cta-premium .btn-cta:hover {
    background: #072e4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 61, 102, 0.3);
}

@media (max-width: 768px) {
    .about-section-white .cta-premium {
        padding: 2rem;
    }
    .about-section-white .cta-premium h2 {
        font-size: 1.5rem;
    }
}