/* =========================================
   1. RESET Y GLOBALES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f8fafc; 
    background-image: 
        radial-gradient(circle at 0% 50%, rgba(200, 215, 245, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(220, 230, 255, 0.4) 0%, transparent 40%);
    color: #1a1e26;
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
    padding-top: 80px; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* =========================================
   2. HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.site-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-placeholder { 
    font-weight: 800; 
    font-size: 26px; 
    color: #25478d; 
}

.nav-btn {
    color: #25478d;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn:hover { 
    background-color: #f1f5f9; 
    border-radius: 20px; 
}

.site-header.scrolled .nav-btn {
    background-color: #25478d;
    color: #ffffff;
}

.site-header.scrolled .nav-btn:hover {
    background-color: #1a3366;
}

/* =========================================
   3. HERO SECTION (Textos y Botones)
   ========================================= */
.hero { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: center; 
    padding: 60px 0 100px 0; 
    min-height: 80vh;
}

.badge {
    background: #e6f6ec; 
    color: #38a169; 
    padding: 8px 16px;
    border-radius: 20px; 
    font-size: 14px; 
    font-weight: 600;
    display: inline-block; 
    margin-bottom: 24px;
}

.hero h1 { 
    font-size: 56px; 
    line-height: 1.15; 
    font-weight: 800; 
    margin-bottom: 20px; 
    letter-spacing: -1px;
}

.accent { color: #3e66f5; }

p.description { 
    color: #5e6b7a; 
    font-size: 19px; 
    margin-bottom: 40px; 
    max-width: 500px; 
    line-height: 1.6;
}

.stats { 
    display: flex; 
    gap: 40px; 
    margin-bottom: 40px; 
}

.stat-num { 
    display: block; 
    font-size: 36px; 
    font-weight: 800; 
    color: #3e66f5; 
    line-height: 1.1; 
}

.stat-text { 
    font-size: 15px; 
    color: #718096; 
    white-space: nowrap; 
}

.btns { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.btn-blue, .btn-outline { 
    display: inline-block;
    padding: 16px 32px; 
    border-radius: 10px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-blue { 
    background: #25478d; 
    color: white; 
    border: 2px solid #25478d; 
}

.btn-blue:hover { 
    background: #1a3366; 
    border-color: #1a3366; 
    transform: translateY(-3px); 
}

.btn-outline { 
    border: 2px solid #25478d; 
    color: #25478d; 
    background: transparent; 
}

.btn-outline:hover { 
    background: #f0f4ff; 
    transform: translateY(-3px); 
}

/* =========================================
   4. HERO DIAGRAMA (Nodos)
   ========================================= */
.hero-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-graphic-container {
    position: relative;
    width: 1100px;
    height: 500px;
    flex-shrink: 0;
    transform: scale(0.75); 
    transform-origin: center left;
    margin-top: -200px;
}

.hub-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hub-lines line { 
    stroke-width: 3px; 
} 

/* Nodo Central */
.hub-center-node {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #1e3a7a;
    color: white;
    width: 280px;  
    height: 320px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(30, 58, 122, 0.25);
}

.hub-center-icon { margin-bottom: 20px; }
.hub-center-node h3 { font-size: 32px; font-weight: 800; margin-bottom: 5px; }
.hub-center-node p { font-size: 16px; color: #cbd5e1; margin-bottom: 30px; }

.hub-center-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px;
    border-radius: 12px;
    font-size: 14px;
}

/* Nodos Blancos Periféricos */
.hub-node {
    position: absolute;
    background: white;
    width: 210px;  
    height: 160px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px; 
    border-radius: 16px;
    border: 1px solid #edf2f7;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    animation: float 4s ease-in-out infinite;
}

.hub-node span { font-size: 16px; font-weight: 600; color: #1e293b; }

.node-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}

.node-icon svg { width: 28px; height: 28px; }

.icon-blue { background: #f0f4ff; color: #3e66f5; }
.icon-green { background: #e6f6ec; color: #38a169; }

/* Posiciones exactas en el lienzo */
.node-tl { top: 55px; left: 75px; }
.node-tr { top: 55px; right: 75px; }
.node-bl { bottom: 55px; left: 75px; }
.node-br { bottom: 55px; right: 75px; }

/* Animaciones */
.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 2s; }
.delay-4 { animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.decor-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
}
.node-tl .decor-dot { top: -6px; left: -6px; }
.node-tr .decor-dot { top: -6px; right: -6px; }
.node-bl .decor-dot { bottom: -6px; left: -6px; }
.node-br .decor-dot { bottom: -6px; right: -6px; }

.dot-blue { background-color: #3e66f5; }
.dot-green { background-color: #38a169; }

/* =========================================
   5. RESPONSIVE HERO (CORREGIDO PARA MÓVIL)
   ========================================= */
@media (max-width: 1100px) {
    .hub-graphic-container { transform: scale(0.6); }
    .hero h1 { font-size: 48px; }
}

@media (max-width: 992px) {
    .hero { 
        grid-template-columns: 1fr; 
        text-align: center; 
        padding-top: 40px;
    }
    p.description { margin: 0 auto 40px auto; }
    .stats { justify-content: center; }
    .btns { justify-content: center; }
    
    .hero-graphic {
        width: 100%;
        overflow: hidden; 
        display: flex;
        justify-content: center;
    }

    .hub-graphic-container { 
        transform: scale(0.55); 
        transform-origin: top center;
        margin-top: 40px; 
        margin-bottom: -220px; 
    }
}

@media (max-width: 768px) {
    .site-header { 
        background-color: #ffffff !important; 
        padding: 12px 0; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    }
    .nav-btn { 
        background-color: #25478d !important; 
        color: #ffffff !important; 
        padding: 10px 16px; 
        font-size: 14px; 
    }
    .hero h1 { font-size: 38px; }
    .stats { flex-direction: column; gap: 20px; }
    .btns { flex-direction: column; width: 100%; }
    .btn-blue, .btn-outline { width: 100%; margin-bottom: 10px; }
    
    .hub-graphic-container { 
        transform: scale(0.35); 
        margin-bottom: -320px; 
    }
}

@media (max-width: 480px) {
    .hub-graphic-container { 
        transform: scale(0.28); 
        margin-bottom: -360px; 
    }
}


/* =========================================
   5. SECCIÓN FORMULARIO (Contacto)
   ========================================= */
.form-section-wrapper {
    background-color: #1e3a7a;
    background-image: 
        radial-gradient(circle at 10% 80%, rgba(62, 102, 245, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(62, 102, 245, 0.2) 0%, transparent 40%);
    width: 100%;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Textos de la cabecera --- */
.form-header-text {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.form-header-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.form-header-text p {
    color: #cbd5e1;
    font-size: 18px;
}

/* --- Tarjeta del Formulario --- */
.form-card {
    background: #ffffff;
    width: 100%;
    max-width: 550px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

/* Estilos para inputs y el select */
.input-group input, 
.input-group select {
    width: 100%;
    padding: 14px 16px;
    background-color: #f8fafc; 
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #334155;
    transition: all 0.3s ease;
    outline: none;
}

/* Efecto al hacer clic en los campos */
.input-group input:focus, 
.input-group select:focus {
    border-color: #3e66f5;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(62, 102, 245, 0.1);
}

.input-group select:invalid {
    color: #94a3b8;
}

/* --- Botón de Envío y Footer --- */
.btn-submit {
    width: 100%;
    background-color: #25478d;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #1a3366;
}

.form-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

/* --- Responsive para el Formulario --- */
@media (max-width: 768px) {
    .form-header-text h2 { font-size: 34px; }
    .form-section-wrapper { padding: 80px 20px; }
    .form-card { padding: 30px 20px; }
}

/* =========================================
   6. SECCIÓN VIDEO EXPLICATIVO
   ========================================= */
.video-section {
    padding: 100px 0;
    background-image: radial-gradient(circle at center, #f8fbf9 0%, #eef6f1 100%);
    background-color: #eef6f1; 
}

.video-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge-video {
    background: #e2e8f0;
    color: #1e3a7a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.video-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.video-header p {
    font-size: 18px;
    color: #64748b;
}

/* --- Contenedor Principal del Video --- */
.video-showcase-wrapper {
    position: relative;
    max-width: 900px; 
    margin: 0 auto;
}

.video-iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    background: #ffffff;
    border-radius: 20px;
    padding: 10px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    z-index: 1;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px; 
    background-color: #f1f5f9; 
}

/* --- Etiquetas Flotantes --- */
.floating-badge {
    position: absolute;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14px 22px;
    animation: float 4s ease-in-out infinite; 
}

/* Etiqueta Izquierda (Azul) */
.badge-left {
    top: 40%;
    left: -45px;
    background-color: #1e3a7a;
    color: white;
}

.badge-left small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2px;
}

.badge-left strong {
    font-size: 17px;
    font-weight: 700;
}

/* Etiqueta Derecha (Blanca) */
.badge-right {
    bottom: 20%;
    right: -35px; 
    background-color: white;
    color: #1e3a7a;
    animation-delay: 1s;
}

.badge-right small {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}

.badge-right strong {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a7a;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .video-showcase-wrapper {
        max-width: 90%; 
    }
}

@media (max-width: 768px) {
    .video-header h2 { font-size: 32px; }
    
    .badge-left { left: -10px; top: -20px; transform: scale(0.9); }
    .badge-right { right: -10px; bottom: -20px; transform: scale(0.9); }
}

/* =========================================
   7. SECCIÓN "INFORMACIÓN FRAGMENTADA"
   ========================================= */
.fragmented-section {
    padding: 100px 0;
    background-color: #f8fafc; 
}

/* --- Cabecera de la sección --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* --- Grilla de Tarjetas --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px;
}

.info-card {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 16px;
    border: 1px solid #edf2f7; 
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Efecto hover suave */
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(62, 102, 245, 0.08);
    border-color: #d1dbfe;
}

/* --- Círculos de los Íconos --- */
.icon-circle {
    width: 64px;
    height: 64px;
    background-color: #f0f4ff; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.info-card:hover .icon-circle {
    background-color: #3e66f5; 
}

.info-card:hover .icon-circle svg {
    stroke: #ffffff; 
}

.info-card p {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 30px;
    }
}

/* =========================================
   8. SECCIÓN SOLUCIÓN INTEGRAL
   ========================================= */
.solution-section {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 0% 30%, rgba(200, 215, 245, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 100% 70%, rgba(200, 215, 245, 0.4) 0%, transparent 40%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(37, 71, 141, 0.08); 
}

/* El cuadradito azul para los íconos */
.solution-icon {
    width: 52px;
    height: 52px;
    background-color: #25478d;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.solution-cta {
    text-align: center;
    margin-top: 50px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   9. SECCIÓN CÓMO FUNCIONA
   ========================================= */
.how-it-works-section {
    padding: 100px 0;
    background-color: #f8fafc; 
}

.badge-blue {
    background: #eef2ff;
    color: #3e66f5;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.steps-wrapper {
    position: relative;
    max-width: 900px; 
    margin: 60px auto 0;
}

.steps-line {
    position: absolute;
    top: 45px; 
    left: 15%; 
    width: 70%; 
    height: 2px;
    background-color: #3e66f5;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2; 
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Círculo Azul Oscuro */
.step-icon-container {
    position: relative;
    width: 90px;
    height: 90px;
    background-color: #25478d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(37, 71, 141, 0.2);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon-container {
    transform: scale(1.05); 
}

/* Burbuja con el Número */
.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    color: #3e66f5;
    border: 2px solid #3e66f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    transform: translate(-15%, -15%); 
}

.step-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    max-width: 250px;
}

.steps-cta {
    text-align: center;
    margin-top: 60px;
}

.steps-cta p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 15px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .steps-line {
        display: none; 
    }
}

/* =========================================
   10. SECCIÓN SEGURIDAD Y PRIVACIDAD
   ========================================= */
.security-section {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(200, 215, 245, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(200, 215, 245, 0.3) 0%, transparent 40%);
}

.badge-green {
    background: #e6f6ec; 
    color: #38a169; 
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.security-card {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    position: relative; 
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(62, 102, 245, 0.08);
    border-color: #d1dbfe;
}

.security-icon-container {
    width: 64px;
    height: 64px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: all 0.3s ease;
}

.security-card:hover .security-icon-container {
    background-color: #3e66f5;
}

.security-card:hover .security-icon-container svg {
    stroke: #ffffff;
}

.security-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 12px;
}

.security-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* --- Animación del Punto Verde --- */
.status-dot {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    background-color: #38a169;
    border-radius: 50%;
    z-index: 1;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #38a169;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   11. SECCIÓN EQUIPO Y MISIÓN
   ========================================= */
.team-section {
    padding: 100px 0;
    background-color: #f8fafc; 
}

.badge-blue {
    background: #eef2ff;
    color: #3e66f5;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px; 
    margin: 50px auto;
}

/* --- Tarjetas de Fundadores --- */
.team-card {
    position: relative;
    background: #ffffff;
    padding: 60px 30px 40px 30px; 
    border-radius: 16px;
    border: 1px solid #edf2f7;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(62, 102, 245, 0.08);
    border-color: #d1dbfe;
}

/* Etiqueta flotante superior */
.founder-badge {
    position: absolute;
    top: -14px; 
    left: 50%;
    transform: translateX(-50%);
    background: #25478d; /* Azul oscuro */
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(37, 71, 141, 0.2);
}

/* Avatar y Halo Decorativo */
.avatar-wrapper {
    position: relative;
    width: 200px; /* Ancho del óvalo */
    height: 100px; /* Alto del óvalo */
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ellipse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #d1dbfe; 
    border-radius: 50%; 
    z-index: 1;
}

.avatar-circle {
    position: relative;
    width: 80px;
    height: 80px;
    background: #1e3a7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; 
    box-shadow: 0 0 0 10px #ffffff; 
}

/* Textos de la tarjeta */
.team-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 5px;
}

.role {
    font-size: 14px;
    color: #3e66f5;
    font-weight: 600;
}

.divider {
    width: 40px;
    height: 2px;
    background: #cbd5e1;
    margin: 20px auto;
}

.team-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* --- Tarjeta de Misión --- */
.mission-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.mission-card:hover {
    box-shadow: 0 15px 30px rgba(62, 102, 245, 0.08);
    border-color: #d1dbfe;
}

.mission-icon {
    margin-bottom: 15px;
    display: inline-block;
    animation: pulse 2s infinite; 
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 15px;
    color: #5e6b7a;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr; 
    }
}

/* =========================================
   12. SECCIÓN BENEFICIOS DE LANZAMIENTO
   ========================================= */
.benefits-section {
    padding: 100px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #25478d;
    background-image: 
        radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    color: white;
    text-align: center;
}

.benefits-header {
    margin-bottom: 50px;
}

.benefits-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.benefits-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

.benefits-header p {
    font-size: 16px;
    color: #cbd5e1;
}

/* Grilla de tarjetas semitransparentes */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* --- Efecto "Glassmorphism"  --- */
.benefit-card {
    background: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Íconos cuadrados de cada beneficio */
.b-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* --- Etiqueta de Oferta Limitada --- */
.limited-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.offer-dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e1;
    border-radius: 50%;
    animation: pulse 2s infinite; 
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefits-header h2 {
        font-size: 32px;
    }
}

/* =========================================
   13. FOOTER (PIE DE PÁGINA)
   ========================================= */
.site-footer {
    background-color: #0f172a; 
    color: #94a3b8; 
    padding: 80px 0 30px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-grid {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    flex-wrap: wrap; 
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    padding-bottom: 40px;
}

/* --- Columna Izquierda (Marca) --- */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
}

/* --- Columna Derecha (Contacto) --- */
.footer-links {
    min-width: 200px;
}

.footer-links h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white; 
}

/* --- Base del Footer (Copyright) --- */
.footer-bottom {
    text-align: center;
    font-size: 14px;
}

/* --- Responsive para Celulares --- */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column; 
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center; 
    }
}

/* =========================================
   14. BOTÓN "VOLVER ARRIBA"
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #3e66f5; 
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999; 
    box-shadow: 0 5px 15px rgba(62, 102, 245, 0.4);
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #25478d;
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(37, 71, 141, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}