:root {
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-surface-hover: #f1f5f9;
    --color-border: #e2e8f0;
    
    /* Paleta Verde que resalta sobre fondos claros */
    --color-primary: #059669; /* Verde Esmeralda (Más oscuro) */
    --color-secondary: #10b981; /* Verde Neón */

    /* Amarillo del logo — acento de marca */
    --color-accent: #F5A623;  /* Amarillo dorado del logo VentaryApp */
    
    --color-text-main: #000000;
    --color-text-muted: #334155;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

/* Header siempre igual — sin encogerse al hacer scroll */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    height: 5rem;
}

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

.btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #25d366;
    color: black;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-whatsapp-header:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128c7e;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Header Spacer */
body {
    padding-top: 5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo--framed {
    border: 1px solid var(--color-border);
    padding: 6px;
    border-radius: 8px;
    background: var(--color-surface);
}

.logo__img {
    height: 40px; /* Tamaño optimizado para móvil */
    width: auto;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .logo__img {
        height: 54px;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem; /* Match header height */
}

/* Navigation */
.nav {
    display: none; /* Oculto en móvil por defecto */
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
        background: var(--color-surface);
        padding: 2rem 1.5rem 3rem;
        z-index: 1001;
        gap: 0;
        animation: slideInNav 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        border-top: 2px solid var(--color-primary);
    }
    
    .nav.active .nav__link {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--color-text-main);
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
        display: block;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }
    
    .nav.active .nav__link:hover {
        color: var(--color-primary);
        padding-left: 0.5rem;
    }
    
    .nav.active .nav__link:last-child {
        border-bottom: none;
    }
}

@keyframes slideInNav {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav__link:hover {
    color: var(--color-primary);
    background: rgba(5, 150, 105, 0.05);
    transform: translateY(-1px);
}

.nav__link--active {
    color: white !important;
    background: var(--color-primary) !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.nav__link--active:hover {
    background: var(--color-secondary) !important;
    transform: translateY(-2px);
}

.btn-login {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-main);
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login:hover {
    background-color: var(--color-surface-hover);
    border-color: var(--color-text-main);
    transform: translateY(-2px);
}

.mobile-only {
    display: block !important;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

.header-actions .btn-login {
    display: none;
}

@media (min-width: 768px) {
    .header-actions {
        gap: 1.5rem;
    }
    .header-actions .btn-login {
        display: inline-block;
    }
}

.btn-primary {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transform: translateY(-3px);
}

/* Botón Prueba Gratis — muy llamativo en el header */
.btn-prueba-gratis {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #050505;
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.45);
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
}

.btn-prueba-gratis:hover {
    background: linear-gradient(135deg, #34d399, #6ee7b7);
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.65);
    transform: translateY(-2px) scale(1.04);
    color: #050505;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    color: var(--color-text-muted);
}

.mobile-menu-btn:hover {
    color: var(--color-text-main);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Main Content Area */
.main-content {
    padding-top: 0;
}

/* Text Gradient Utility */
.text-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Utilities */
.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-surface-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Restobar Style Hero */
.hero.restobar-style {
    background: var(--color-bg);
    min-height: calc(100vh - 5rem);
    display: flex;
    align-items: flex-start; /* en móvil alinea arriba para no cortar contenido */
    padding: 2.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero.restobar-style {
        max-height: 900px;
        align-items: center;
        padding: 4rem 0;
    }
}

/* Re-adding background glow but with green */
.hero.restobar-style::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(5, 5, 5, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero.restobar-style .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .hero.restobar-style .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .hero.restobar-style .hero__inner {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 4rem;
    }
}

.hero__main-title {
    font-size: 1.85rem; /* Más compacto en móvil */
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-text-main);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

@media (min-width: 768px) {
    .hero__main-title {
        font-size: 3.25rem;
    }
}

.orange-text {
    color: var(--color-accent);
}

/* Clase de texto amarillo del logo (uso en palabras clave y acentos) */
.text-yellow {
    color: var(--color-accent);
}

/* Gradiente de texto (verde del sistema) */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__secondary-title {
    font-size: 1.15rem; /* Más sutil en móvil */
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

@media (min-width: 768px) {
    .hero__secondary-title {
        font-size: 1.85rem;
    }
}

.hero__pricing-info {
    margin-bottom: 2.5rem;
}

.pricing-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.25rem;
}

.pricing-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero__footer-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
}

/* Restobar Buttons with Project Palette */
.btn-restobar-green {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-restobar-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-restobar-blue {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.btn-restobar-blue:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

/* Visual Column */
.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-badge-top {
    background: rgba(16, 185, 129, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mockup-container {
    width: 100%;
    max-width: 850px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.mockup-container img {
    width: 100%;
    display: block;
}

.visual-footer {
    text-align: center;
}

.visual-footer__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.visual-footer__subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

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

/* Features Section */
.features {
    padding: 4rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 40rem;
    margin: 0 auto;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pain-section {
    padding: 3rem 0;
    background: var(--color-bg);
}

.versatility-section {
    padding: 3rem 0;
    background: var(--color-surface-hover);
}

.setup-steps {
    padding: 3rem 0;
    background: var(--color-bg);
}

.features-grid-section {
    padding: 3rem 0;
    background: var(--color-surface-hover);
}

@media (min-width: 768px) {
    .pain-section, .versatility-section, .setup-steps, .features-grid-section {
        padding: 6rem 0;
    }
}

/* Responsividad móvil para la grid de 5 pasos */
.innovative-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .innovative-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .innovative-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .innovative-steps-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    background: var(--color-surface-hover);
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    transform: scale(1.1);
}

.feature-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Pricing Section - Eye-Catching Redesign */
.pricing {
    padding: 4rem 0;
    background: radial-gradient(circle at top, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 2.5rem 1.5rem; /* Menos padding en móvil */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card--popular {
    background: var(--color-surface);
    border: 2px solid #059669;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
}

@media (min-width: 768px) {
    .pricing-card--popular {
        transform: scale(1.08);
    }
    .pricing-card--popular:hover {
        transform: scale(1.1) translateY(-15px);
    }
}

.pricing-card--popular:hover {
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

/* Plan Gratuito (Emprendedor) - Azul Rey */
.pricing-card--free {
    border: 2px solid #2563eb;
}

.pricing-card--free:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

/* Plan Corporativo - Naranja */
.pricing-card--corporate {
    border: 2px solid #f97316;
}

.pricing-card--corporate:hover {
    border-color: #f97316;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

/* Animaciones de botones en planes */
.pricing-card .btn-secondary, .pricing-card .btn-primary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   BOTONES DE PLANES — Color propio + hover aclarado
   ============================================= */

/* Botón Plan Gratuito (Emprendedor) — Azul Rey */
.pricing-card--free .btn-secondary {
    background: #2563eb;
    color: #fff;
    border: 2px solid #2563eb;
}

.pricing-card--free .btn-secondary:hover {
    background: #3b82f6;   /* azul rey más claro */
    border-color: #3b82f6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* Botón Plan Profesional — Verde Esmeralda */
.pricing-card--popular .btn-primary {
    background: #059669;
    color: #fff;
    border: 2px solid #059669;
}

.pricing-card--popular .btn-primary:hover {
    background: #10b981;   /* verde más claro */
    border-color: #10b981;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

/* Botón Plan Corporativo — Naranja */
.pricing-card--corporate .btn-secondary {
    background: #f97316;
    color: #fff;
    border: 2px solid #f97316;
}

.pricing-card--corporate .btn-secondary:hover {
    background: #fb923c;  /* naranja más claro */
    border-color: #fb923c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: #059669; /* Verde Esmeralda */
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-card__name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.01em;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-amount {
    font-size: 3rem; /* Más pequeño en móvil */
    font-weight: 900;
    line-height: 1;
    color: var(--color-text-main);
}

.price-period {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.pricing-card__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.pricing-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.pricing-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 3px;
}

.pricing-card .btn-primary, 
.pricing-card .btn-secondary {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
}

.pricing-card--popular .btn-primary {
    /* los estilos viven en el bloque de botones de planes de arriba */
}

/* =============================================
   DETALLES E ÍCONOS ESPECÍFICOS POR PLAN
   ============================================= */

/* Plan Emprendedor (Prueba Gratuita) */
.pricing-card--free .price-currency {
    color: #2563eb;
}
.pricing-card--free .pricing-list li svg {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

/* Plan Profesional (Destacado) */
.pricing-card--popular .price-currency {
    color: #059669;
}
.pricing-card--popular .pricing-list li svg {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}
.pricing-card--popular .discount-label {
    color: #059669;
}
.pricing-card--popular .info-btn {
    background: #059669;
}
.pricing-card--popular .info-btn:hover {
    background: #10b981;
}

/* Plan Corporativo */
.pricing-card--corporate .price-currency {
    color: #f97316;
}
.pricing-card--corporate .pricing-list li svg {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}
.pricing-card--corporate .corp-discount-label {
    color: #f97316;
}
.pricing-card--corporate .info-btn-corp {
    background: #f97316;
}
.pricing-card--corporate .info-btn-corp:hover {
    background: #fb923c;
}

/* How it Works Section (Timeline) */
.how-it-works {
    padding: 4rem 0;
    position: relative;
    background: var(--color-surface-hover);
}

/* Setup Steps Section */
.step-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary) !important;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
    background: var(--color-surface-hover) !important;
}

.step-card div {
    transition: transform 0.3s ease;
}

.step-card:hover div {
    transform: scale(1.2);
}

/* Versatility Section Styles */
.versatility-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary) !important;
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.1);
}

.versatility-card div {
    transition: transform 0.3s ease;
}

.versatility-card:hover div {
    transform: scale(1.1) rotate(5deg);
}



.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Connecting Line */
    .timeline::before {
        content: '';
        position: absolute;
        top: 2rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-border), transparent);
        z-index: 0;
    }
}

.timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline__number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
    position: relative;
}

.timeline__number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent);
    z-index: -1;
    animation: rotate 4s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.timeline__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main); /* Corregido para que se vea en fondo claro */
    margin-bottom: 0.75rem;
}

.timeline__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Differentiators Section */
.differentiators {
    padding: 4rem 0;
    position: relative;
    background-color: var(--color-bg);
}

.diff-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.diff-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .diff-row {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }

    .diff-row--reverse .diff-content {
        order: 2;
    }

    .diff-row--reverse .diff-image-wrapper {
        order: 1;
    }
}

.diff-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diff-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .diff-title {
        font-size: 2.5rem;
    }
}

.diff-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.diff-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.diff-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    perspective: 1000px;
}

.diff-image-glow {
    position: absolute;
    inset: -10%;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
    border-radius: 50%;
}

.diff-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: transform 0.5s ease;
}

.diff-row:hover .diff-image {
    transform: translateY(-10px) scale(1.02);
}

/* SEO Blocks Section */
.seo-blocks {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at top right, rgba(10,10,10,1) 0%, rgba(10,10,10,1) 100%);
    border-top: 1px solid var(--color-border);
}

.seo__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .seo__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.seo-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.seo-card:hover {
    background: var(--color-surface-hover);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
}

.seo-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main); /* Corregido */
    margin-bottom: 1rem;
}

.seo-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.seo-card__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap 0.3s ease;
}

.seo-card__link svg {
    width: 1rem;
    height: 1rem;
}

.seo-card:hover .seo-card__link {
    gap: 0.75rem;
}

/* Footer Section */
.footer {
    background-color: var(--color-surface);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .footer {
        padding: 6rem 0 3rem;
    }
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.mb-4 {
    margin-bottom: 1rem;
}

.footer__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 20rem;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--color-secondary);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde oficial de WhatsApp */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    opacity: 0; /* Oculto por defecto */
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
    animation: none; /* Pausa el pulso al hacer hover */
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================
   CINEMATIC HERO (Rediseño Innovador)
   ========================================= */

.text-center {
    text-align: center;
}

.cinematic-hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stage-glow {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.cinematic-hero .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
    width: 100%;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cinematic-hero .hero__title {
    font-size: 4.5rem;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.cinematic-hero .hero__subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-muted);
}

.justify-center {
    justify-content: center !important;
}

.glass-badge {
    background: var(--color-surface-hover) !important;
    border: 1px solid var(--color-border);
}

.full-width-mockup {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 2;
}

.cinematic-mockup {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    border: 1px solid var(--color-border);
    border-bottom: none;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.05);
    display: block;
}

.fade-out-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, var(--color-bg) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Floating CTA Card Overlay */
.floating-cta-card {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 750px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.floating-cta-card .hero__subtitle {
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.shadow-glow {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.35);
}

.mt-4 {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cinematic-hero .hero__title {
        font-size: 2.5rem;
    }
    .cinematic-hero {
        padding-top: 8rem;
    }
    .full-width-mockup {
        margin: 2rem auto 0;
    }
    .floating-cta-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: -3rem;
        padding: 1.5rem;
    }
}

.img-zoom-container {
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.img-zoom {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: var(--color-surface);
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 768px) {
    .step-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .step-row .showcase-visual {
        order: -1 !important;
    }
} /* Cierre de media query corregido */
.interactive-card {
    background: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.interactive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
}

.interactive-card .icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

/* Final Impact CTA (Clean & Centered) */
.final-impact-cta {
    position: relative;
    padding: 5rem 1rem;
    background-color: var(--color-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.final-impact-cta .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-highlight {
    color: var(--color-primary);
}

.final-impact-cta h2 {
    font-size: 2rem; /* Más ajustado para móvil */
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    max-width: 1000px;
    text-align: center;
}

@media (min-width: 768px) {
    .final-impact-cta h2 {
        font-size: 4rem; /* Tamaño original para desktop */
    }
    .final-impact-cta {
        padding: 10rem 1rem;
    }
}

.final-impact-cta p {
    font-size: 1.15rem; /* Ajuste para móvil */
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 768px) {
    .final-impact-cta p {
        font-size: 1.5rem; /* Tamaño original para desktop */
    }
}

.btn-whatsapp-impact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background: #25D366;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-impact svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-whatsapp-impact:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45);
    background: #20bd5c;
}


/* --- Fin de Estilos --- */

