/* --- Reseteo y Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    /* Fondo degradado exacto de la aplicación */
    background-color: #0c1b33; /* Color base oscuro del centro */
    background-image: 
        radial-gradient(circle at top left, #185a7d 0%, transparent 60%),
        radial-gradient(circle at bottom right, #471b3e 0%, transparent 60%);
    background-attachment: fixed; /* Hace que el fondo no se mueva al hacer scroll */
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- 1. Barra de Navegación --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(10, 25, 47, 0.5); /* Semi transparente */
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.social-contact a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-contact a:hover {
    color: #FFC107; /* Brillo al pasar el cursor */
}

/* --- 2. Hero Section (Principal) --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 80vh;
}

.hero-content {
    max-width: 800px;
}

#main-logo {
    max-width: 250px;
    margin-bottom: 30px;
    animation: fadeInDown 1.5s ease; /* Efecto de entrada */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #B0B2C3;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Botón Amarillo Animado (Global) */
.btn-primary {
    display: inline-block;
    background-color: #FFC107;
    color: #000000;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite; /* Latido constante */
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* --- 3. Sección de Beneficios --- */
.benefits-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    background: transparent; /* <-- Esto hace que se vea el fondo de la app */
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05); /* Tarjetas estilo cristal oscuro */
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px); /* Flota al pasar el mouse */
}

.benefit-card h3 {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #B0B2C3;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- 4. Sección Factor Pro (Fondo Blanco) --- */
.pro-section {
    background-color: #ffffff; 
    color: #0A192F; 
    padding: 80px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.pro-content {
    max-width: 800px;
}

.pro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* Gran Número Estadístico */
.stat-number {
    font-size: 6rem;
    font-weight: 900;
    color: #FFC107; 
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.pro-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.pro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* --- 5. Cierre y CTA Final --- */
.final-cta {
    text-align: center;
    padding: 80px 20px;
    background: transparent; /* <-- Esto hace que se vea el fondo de la app */
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    color: #B0B2C3;
    margin-bottom: 40px;
}

/* --- 6. Pie de Página --- */
.site-footer {
    background-color: #050d1a;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #B0B2C3;
}

/* --- Animaciones (Keyframes) --- */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Adaptación a Teléfonos Móviles --- */
@media (max-width: 768px) {
    .top-bar { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
    }
    .hero-content h1 { 
        font-size: 2.2rem; 
    }
    .pro-content h2 {
        font-size: 1.8rem;
    }
    .stat-number {
        font-size: 4.5rem;
    }
    .final-cta h2 {
        font-size: 1.8rem;
    }
}