    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

    :root {
        --azul1: #0d47a1;
        --azul2: #1e88e5;
        --verde: #4cd4b0;
        --fondo: #050505;
        --gris: #b5b5b5;
        --blanco: #ffffff;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        padding: 0;
        background: radial-gradient(ellipse at 60% 40%, #101624 0%, #002040 18%, #0a0d16 60%, #050505 100%);
        color: var(--blanco);
        font-family: 'Inter', sans-serif;
        min-height: 100vh;
        overflow-x: hidden;
        animation: fadeIn 1.2s cubic-bezier(.77,0,.18,1) both;
    }

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 96vw;
        max-width: 1400px;
        min-width: 320px;
        min-height: 100vh;
        height: 100vh;
        padding: 0 1vw;
        gap: 2vw;
        box-sizing: border-box;
        margin: 0 auto; /* Centra horizontalmente */
    }

    @media (max-width: 1200px) {
        .container {
            width: 99vw;
            max-width: 99vw;
            height: auto;
            flex-direction: column;
            gap: 32px;
            padding: 40px 3vw;
            margin: 0 auto;
        }
    }
@media (max-width: 700px) {
    .container {
        padding: 12px 1vw;
        gap: 12px;
        min-height: unset;
    }
    .right {
        height: 200px;
    }
}

    /* Columna izquierda */
    .left {
        max-width: 650px;
    }

    .tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        background: rgba(255,255,255,0.05);
        padding: 8px 18px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.1);
        color: #4cd4b0;
    }

    .est {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #b0d5ff;
    }

    .est-circle {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(145deg, #4cd4b0, #0d47a1);
        box-shadow: 0 0 20px rgba(76,212,176,0.5);
    }

    h1 {
        font-size: 80px;
        line-height: 1.1;
        margin: 40px 0 15px;
        font-weight: 800;
        letter-spacing: -1.5px;
    }

    h1 span {
        background: linear-gradient(90deg, #1e88e5, #4cd4b0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    h2 {
        color: var(--verde);
        font-size: 28px;
        font-weight: 600;
        margin-top: 10px;
    }

    p {
        color: #b5b5b5;
        line-height: 1.8;
        font-size: 18px;
        margin-top: 15px;
        max-width: 550px;
    }

    .botones {
        margin-top: 40px;
        display: flex;
        gap: 20px;
    }

    .btn-azul {
        background: linear-gradient(90deg, #1e88e5, #4cd4b0);
        border: none;
        color: var(--blanco);
        font-weight: 600;
        padding: 16px 32px;
        border-radius: 35px;
        cursor: pointer;
        box-shadow: 0 0 25px rgba(76,212,176,0.4);
        transition: all 0.3s ease;
        font-size: 16px;
    }


    .btn-azul:hover {
        box-shadow: 0 0 35px rgba(30,136,229,0.7);
        transform: translateY(-2px);
    }

    .btn-blanco {
        background: var(--blanco);
        color: #4cd4b0;
        padding: 16px 32px;
        border-radius: 35px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .btn-blanco:hover {
        background: #e5e5e5;
        transform: translateY(-2px);
    }

    .stats {
        display: flex;
        gap: 80px;
        margin-top: 60px;
    }

    .stat h3 {
        font-size: 32px;
        margin: 0;
        color: var(--blanco);
        font-weight: 700;
    }

    .stat p {
        color: var(--gris);
        font-size: 15px;
        margin: 6px 0 0;
    }

    /* Columna derecha */
    .right {
        position: relative;
        width: 550px;
        height: 500px;
        border-radius: 25px;
        overflow: hidden;
        background: rgba(0,0,0,0.35);
        box-shadow: 0 0 35px rgba(30,136,229,0.25);
        display: flex;
        align-items: end;
        justify-content: center;
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .glow-bg {
        position: absolute;
        inset: 0;
        background: url("/hero.jpg") center/cover no-repeat;
        animation: pulse 6s infinite alternate;
        z-index: 1;
    }
    .glow-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55); /* Ajusta la opacidad aquí */
        pointer-events: none;
        border-radius: inherit;
    }

    .logo-main {
        display: block;
        width: auto;
        height: 120px; /* Ajusta según el tamaño visual que quieras */
        margin: 40px 0 15px 0; /* Igual que el h1 */
        filter: drop-shadow(0 2px 8px #002e82aa);
        max-width: 100%;
    }
    @media (max-width: 950px) {
        .logo-main {
            height: 54px;
            margin: 24px 0 10px 0;
        }
    }

    @keyframes pulse {
        0% { opacity: 0.6; transform: scale(1); }
        100% { opacity: 1; transform: scale(1.15); }
    }

    .tags {
        position: relative;
        display: flex;
        gap: 12px;
        margin-bottom: 30px;
        z-index: 2;
    }

    .tag2 {
        background: rgba(0,0,0,0.6);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 8px 18px;
        color: #b5b5b5;
        font-size: 14px;
        transition: 0.3s;
    }

    .tag2:hover {
        background: rgba(76,212,176,0.2);
        color: #fff;
    }

    @media (max-width: 950px) {
        body {
            overflow-y: auto;
        }
        .container {
            flex-direction: column;
            text-align: center;
            height: auto;
            padding: 60px 5%;
        }

        .right {
            width: 100%;
            height: 300px;
            margin-top: 60px;
        }

        h1 {
            font-size: 54px;
        }

        p {
            font-size: 16px;
            margin: 10px auto;
        }

        .stats {
            justify-content: center;
            margin-bottom: 40px;
        }
    }

    /* Animación de fade in general */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px);}
    to { opacity: 1; transform: translateX(0);}
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-60px);}
    to { opacity: 1; transform: translateX(0);}
}
@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}

/* Fondo animado */
body {
    animation: fadeIn 1.2s cubic-bezier(.77,0,.18,1) both;
}

/* Columna izquierda animada */
.left {
    animation: fadeInLeft 1.2s cubic-bezier(.77,0,.18,1) 0.2s both;
}

/* Columna derecha animada */
.right {
    animation: fadeInRight 1.2s cubic-bezier(.77,0,.18,1) 0.4s both;
}

/* Título animado */
h1 {
    animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) 0.5s both;
}

/* Subtítulo animado */
h2 {
    animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) 0.7s both;
}

/* Párrafo animado */
.left p {
    animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) 0.8s both;
}

/* Botones animados */
.botones {
    animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) 1s both;
}

/* Stats animadas */
.stats {
    animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) 1.2s both;
}

/* Tag animada */
.tag {
    animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) 0.3s both;
}

/* Tags de la derecha animadas en cascada */
.tags .tag2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(.77,0,.18,1) forwards;
}
.tags .tag2:nth-child(1) { animation-delay: 1.3s; }
.tags .tag2:nth-child(2) { animation-delay: 1.4s; }
.tags .tag2:nth-child(3) { animation-delay: 1.5s; }
.tags .tag2:nth-child(4) { animation-delay: 1.6s; }



/* ============================================
   NAVBAR - RESPONSIVE CON MENÚ HAMBURGUESA
   ============================================ */
.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 18px;
    left: 0;
    z-index: 1000;
}

.navbar-content {
    width: 92vw;
    max-width: 1300px;
    background: rgba(10, 18, 32, 0.82);
    border: 1px solid rgba(76, 212, 176, 0.07);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    box-shadow: 0 4px 32px #002e8222;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.navbar-logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  height: 56px;
}
.navbar-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.navbar-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex: 1;
}

.navbar-links li {
    display: flex;
}

.navbar-links a,
.navbar-links .navbar-btn {
    color: #e0e6f7;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 12px;
    white-space: nowrap;
}

.navbar-links a:hover,
.navbar-links a:focus {
    color: #4cd4b0;
    background: rgba(76, 212, 176, 0.07);
}

.navbar-links .navbar-btn {
    background: linear-gradient(90deg, #1e88e5, #4cd4b0);
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 18px;
    box-shadow: 0 0 12px rgba(76, 212, 176, 0.10);
}

.navbar-links .navbar-btn:hover,
.navbar-links .navbar-btn:focus {
    background: #4cd4b0;
    box-shadow: 0 0 18px #4cd4b088;
    transform: translateY(-2px);
}

/* Menú hamburguesa (oculto por defecto) */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: #4cd4b0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Animación del menú hamburguesa cuando está abierto */
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   RESPONSIVE - TABLETS Y MÓVILES
   ============================================ */
@media (max-width: 900px) {
    .navbar-content {
        padding: 12px 20px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-logo {
        display: block; /* Mostrar logo en mobile */
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 18, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 0;
        border-left: 2px solid rgba(76, 212, 176, 0.2);
        box-shadow: -4px 0 32px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
        overflow-y: auto;
    }

    .navbar-links.active {
        right: 0;
    }

    .navbar-links li {
        width: 100%;
        margin-bottom: 8px;
    }

    .navbar-links a,
    .navbar-links .navbar-btn {
        width: 100%;
        text-align: left;
        padding: 14px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .navbar-links .navbar-btn {
        margin-top: 12px;
        text-align: center;
    }

    /* Overlay cuando el menú está abierto */
    .navbar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 999;
    }

    .navbar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 500px) {
    .navbar {
        top: 12px;
    }

    .navbar-content {
        width: 95vw;
        padding: 10px 16px;
    }

    .navbar-links {
        width: 85vw;
        max-width: 300px;
    }
}

.about-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: transparent;
    overflow: hidden;
    margin-bottom: 80px;
}
.about-bg-full {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    background: url('/background.png') center center no-repeat;
    background-size: contain;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}
.about-float {
    position: absolute;
    color: #4cd4b0;
    background: rgba(0,0,0,0.55);
    padding: 18px 28px;
    border-radius: 18px;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 2px 16px #002e8233;
    z-index: 2;
    max-width: 220px;
    text-align: center;
}
.about-float1 { top: 18%; left: 22%; }
.about-float2 { top: 38%; left: 65%; }
.about-float3 { top: 60%; left: 30%; }
.about-float4 { top: 75%; left: 55%; }
.about-float5 { top: 50%; left: 45%; }
.about-container {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.55);
    border-radius: 18px;
    padding: 48px 32px;
    max-width: 700px;
    text-align: left;
    box-shadow: 0 4px 32px #002e8233;
    border-left: 6px solid #4cd4b0;
}
.about-title {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    color: #4cd4b0;
    font-weight: 800;
    z-index: 2;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 16px #1e88e555;
}
.about-desc {
    display: block;
    font-size: 1rem;
    color: #b5b5b5;
    margin-top: 8px;
    font-weight: 400;
}
.about-container h2 {
    font-size: 2.3rem;
    color: #4cd4b0;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.about-container p {
    font-size: 1.15rem;
    color: #e0e6f7;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 24px;
}
.about-container ul {
    padding-left: 0;
    margin: 0;
}
.about-container li {
    font-size: 1.08rem;
    color: #b5b5b5;
    margin-bottom: 10px;
    list-style: none;
    position: relative;
    padding-left: 24px;
}
.about-container li::before {
    content: "✔";
    color: #4cd4b0;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
}


.about-step-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    opacity: 0.18;
    filter: blur(2px) brightness(0.8);
    pointer-events: none;
}
.about-step {
    position: relative;
    z-index: 2;
}

.about-step {
    background: rgba(0,0,0,0.65);
    border-radius: 32px;
    box-shadow: 0 8px 48px #002e82cc;
    padding: 72px 56px;
    max-width: 700px;
    width: 90vw;
    text-align: center;
    border-left: 8px solid #4cd4b0;
    position: relative;
    margin: 0 auto;
    transition: box-shadow 0.3s;
}

.about-step:hover {
    box-shadow: 0 16px 64px #4cd4b088;
}

.about-motivation {
    font-size: 2.8rem;
    color: #4cd4b0;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 32px #1e88e555;
}

.about-anim {
    margin-bottom: 28px;
}

.about-step h3 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
}

.about-sub {
    font-size: 1.35rem;
    color: #b5b5b5;
    margin-bottom: 28px;
}

.btn-azul {
    font-size: 1.15rem;
    padding: 18px 40px;
    border-radius: 40px;
}

@media (max-width: 900px) {
    .about-step {
        padding: 32px 8px;
        max-width: 98vw;
    }
    .about-motivation {
        font-size: 2rem;
    }
}



.trusted-section {
    width: 100vw;
    min-height: 50vh;
    background: transparent;
    padding: 80px 0 40px 0;
    text-align: center;
}

.trusted-title {
    font-size: 3rem;
    color: #4cd4b0;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.trusted-sub {
    font-size: 1.25rem;
    color: #e0e6f7;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 48px;
}
.trusted-title,
.trusted-sub {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    width: 100%;
    margin: 0 auto;
}

.logo-item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Elimina fondo y tamaño fijo */
}

.logo-item img {
    max-width: 240px;
    max-height: 160px;
    border-radius: 24px;
    object-fit: contain;
    box-shadow: 0 4px 32px #4cd4b088;
    transition: box-shadow 0.3s, transform 0.3s;
    background: none;
    padding: 0;
}
.logo-item:hover img {
    box-shadow: 0 4px 32px #4cd4b0cc;
    transform: scale(1.12);
    cursor:pointer;
}

.logo-item.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}
.trusted-highlight {
    color: #4cd4b0;
    font-weight: 700;
    font-size: 1.15em;
    display: block;
    margin-top: 12px;
}

.trusted-btn-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .trusted-title { font-size: 2.1rem; }
    .trusted-logos { gap: 24px; }
    .logo-item { min-width: 80px; min-height: 80px; max-width: 100px; max-height: 100px; }
    .logo-item img { max-width: 60px; max-height: 60px; }
}