* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0c1b33; 
    background-image: 
        radial-gradient(circle at 15% 15%, #185a7d 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, #471b3e 0%, transparent 50%);
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.top-bar {
    width: 100%;
    background-color: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(10px); 
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1200px;
    width: 100%;
}

.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.95rem; font-weight: 500; transition: color 0.3s; }
.social-contact a:hover { color: #FFC107; }

/* --- Hero Section Restaurada (2 Columnas) --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 50px;
    min-height: 85vh;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
}

.hero-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* LOGO CENTRADO */
#main-logo {
    display: block;
    max-width: 180px;
    align-self: center;
    margin-bottom: 30px;
    animation: fadeInDown 1.2s ease;
}

.hero-text h1 { font-size: 3.8rem; margin-bottom: 20px; line-height: 1.1; font-weight: 800; }
.hero-text h2 { font-size: 1.25rem; font-weight: 300; color: #cbd5e1; margin-bottom: 40px; line-height: 1.6; }

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

#mockup-vid {
    max-width: 100%;
    width: 320px;
    height: auto;
    animation: flotar 4s ease-in-out infinite;
    filter: drop-shadow(0px 25px 50px rgba(0,0,0,0.6));
    outline: none;
}

/* --- Botones --- */
.btn-primary {
    display: inline-block;
    background-color: #FFC107;
    color: #000000;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
    animation: pulse 2.5s infinite;
    transition: all 0.3s ease;
}

.btn-primary:hover { transform: scale(1.05); background-color: #ffca2c; }

/* --- Beneficios --- */
.benefits-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 100px 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 45px 35px;
    border-radius: 16px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.benefit-card.cyan-glow { box-shadow: 0 4px 15px rgba(24, 90, 125, 0.2); }
.benefit-card.magenta-glow { box-shadow: 0 4px 15px rgba(71, 27, 62, 0.2); }
.benefit-card:hover { transform: translateY(-10px); }
.benefit-card.cyan-glow:hover { box-shadow: 0 10px 40px rgba(24, 90, 125, 0.6); border-color: rgba(24, 90, 125, 0.4); }
.benefit-card.magenta-glow:hover { box-shadow: 0 10px 40px rgba(71, 27, 62, 0.6); border-color: rgba(71, 27, 62, 0.4); }

.benefit-card h3 { color: #FFC107; margin-bottom: 20px; font-size: 1.4rem; }
.benefit-card p { color: #cbd5e1; font-size: 1rem; line-height: 1.6; }

/* --- Iconos SVG --- */
.benefit-icon-container { width: 80px; height: 80px; margin: 0 auto 30px auto; }
.animated-icon { width: 100%; height: 100%; stroke: #ffffff; fill: none; }
.search-circle { animation: draw 2s ease-out forwards, pulseCyan 3s infinite 2s; }
.search-handle { animation: drawHandle 1s ease-out forwards 1.5s; }
.note-1 { stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawNote 1.5s ease-out forwards 2s; }
.node { fill: #ffffff; animation: nodePulse 3s infinite alternate; }
.node-c { fill: #FFC107; animation: nodePulseMagenta 3s infinite alternate; }
.link-1, .link-2, .link-3 { stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawLink 2s ease-out forwards 0.5s; stroke: rgba(255,255,255,0.4); }
.list-base { animation: draw 2s ease-out forwards; }
.list-line-1 { animation: drawLines 1s ease-out forwards 1s; }
.list-line-2 { animation: drawLines 1s ease-out forwards 1.3s; }
.star-check { opacity: 0; animation: fadeInStar 1s ease-out forwards 2s; }

/* --- Seccion Pro --- */
.pro-section {
    background: rgba(10, 25, 47, 0.7); 
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    padding: 100px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.pro-content { max-width: 800px; display: flex; flex-direction: column; align-items: center; }

.pro-badge-container {
    width: 90px;
    height: 110px;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease, flotarPro 4s ease-in-out infinite 1s;
    filter: drop-shadow(0 5px 15px rgba(255, 193, 7, 0.3));
}

.pro-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: #ffffff; font-weight: 800; }
.stat-container { margin-bottom: 30px; }
.stat-number-wrapper {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFEA79 0%, #FFC107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    animation: glowPulse 3s infinite alternate;
}

.pro-content h3 { font-size: 1.35rem; margin-bottom: 20px; color: #e2e8f0; max-width: 600px; }
.pro-content p { font-size: 1.15rem; line-height: 1.7; color: #94a3b8; margin-bottom: 50px; max-width: 700px; }

/* Boton Pro (Igual a tu App) */
.btn-pro {
    display: inline-block;
    background-color: #FFC107;
    color: #000000;
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
    transition: all 0.3s ease;
}
.btn-pro:hover { transform: scale(1.05); background-color: #ffca2c; box-shadow: 0 8px 30px rgba(255, 193, 7, 0.7); }

/* --- Resto de Estilos --- */
.final-cta { text-align: center; padding: 120px 20px; }
.final-cta h2 { font-size: 2.5rem; margin-bottom: 25px; }
.final-cta p { font-size: 1.2rem; color: #cbd5e1; margin-bottom: 45px; }

/* --- Incentivo CTA Final --- */
.incentive-box { margin-top: 20px; margin-bottom: 25px; }
.incentive-text { font-size: 1rem; color: #FFC107; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(255, 193, 7, 0.4); }
.arrow-down { width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 15px solid #FFC107; margin: 0 auto; animation: bounceArrow 1.5s infinite; }

.site-footer { background-color: #050d1a; text-align: center; padding: 30px; font-size: 0.9rem; color: #94a3b8; }

/* Animaciones */
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes drawHandle { from { stroke-dashoffset: 60; stroke-dasharray: 60;} to { stroke-dashoffset: 0; stroke-dasharray: 60; } }
@keyframes drawNote { from { stroke-dashoffset: 40; } to { stroke-dashoffset: 0; } }
@keyframes drawLines { from { stroke-dasharray: 60; stroke-dashoffset: 60; } to { stroke-dasharray: 60; stroke-dashoffset: 0; } }
@keyframes drawLink { to { stroke-dashoffset: 0; } }
@keyframes fadeInStar { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseCyan { 0% { stroke: #ffffff; } 50% { stroke: #185a7d; } 100% { stroke: #ffffff; } }
@keyframes nodePulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.2); opacity: 1; } }
@keyframes nodePulseMagenta { 0% { transform: scale(1); opacity: 0.6; fill: #471b3e;} 100% { transform: scale(1.2); opacity: 1; fill: #FFC107; } }
@keyframes glowPulse { 0% { filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.1)); transform: scale(1); } 100% { filter: drop-shadow(0 0 30px rgba(255, 193, 7, 0.4)); transform: scale(1.03); } }
@keyframes flotarPro { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-10px) rotate(2deg); } 100% { transform: translateY(0px) rotate(0deg); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); } 70% { box-shadow: 0 0 0 18px rgba(255, 193, 7, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); } }
@keyframes flotar { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
@keyframes bounceArrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

.animated-icon * { stroke-dasharray: 200; stroke-dashoffset: 200; }
.animated-icon circle, .animated-icon rect, .animated-icon polygon { transition: fill 0.3s ease; }

/* --- Testimonios --- */
.testimonials-section {
    padding: 80px 20px 40px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 450px;
    text-align: left;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.author-info strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* --- Ajuste Footer Privacidad --- */
.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFC107;
}

/* --- Dispositivos Moviles --- */
@media (max-width: 768px) {
    .top-bar-content { padding: 20px; flex-direction: column; gap: 15px; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { align-items: center; }
    #main-logo { margin-bottom: 25px; }
    .hero-text h1 { font-size: 2.6rem; }
    #mockup-vid { width: 260px; }
    .benefits-section { gap: 30px; padding: 60px 20px; }
    .benefit-card { padding: 35px 25px; }
    .stat-number-wrapper { font-size: 6rem; }
}