﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --light: #f8fafc;
    --dark: #0f172a;
    --purple: #7c3aed;
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-hero: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: white;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

/* Icono hamburguesa custom (3 líneas) */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animación cuando está activo (X) */
.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Modo oscuro */
body.dark-mode .hamburger-icon span {
    background: rgba(255, 255, 255, 0.9);
}

/* Theme Toggle en Navbar */
.theme-toggle-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-nav {
    background: rgba(79, 70, 229, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.1rem;
}

.theme-toggle-nav:hover {
    background: var(--primary);
    color: white;
    transform: rotate(15deg) scale(1.05);
}

/* Estilos para modo oscuro en navbar */
body.dark-mode .theme-toggle-nav {
    background: rgba(255, 255, 255, 0.15);
    color: #fbbf24;
}

body.dark-mode .theme-toggle-nav:hover {
    background: rgba(139, 92, 246, 0.3);
    color: #fde047;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 42px;
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.2));
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* BotÃ³n Ingresar (simple) */
.btn-nav-login {
    color: var(--dark) !important;
    font-weight: 600 !important;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-nav-login:hover {
    color: var(--primary) !important;
}

.btn-nav-login::after {
    display: none !important;
}

/* Theme Toggle en Navbar */
.theme-toggle-nav {
    background: rgba(79, 70, 229, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.1rem;
}

.theme-toggle-nav:hover {
    background: var(--primary);
    color: white;
    transform: rotate(15deg) scale(1.05);
}

/* Estilos para modo oscuro en navbar */
body.dark-mode .navbar {
    background: rgba(15, 20, 25, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enlaces del navbar en modo oscuro - con !important para asegurar la visibilidad */
body.dark-mode .nav-links a {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-mode .nav-links a:hover {
    color: white !important;
}

body.dark-mode .nav-links a::after {
    background: #8b5cf6;
}

body.dark-mode .btn-nav-login {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-mode .btn-nav-login:hover {
    color: white !important;
    background: rgba(139, 92, 246, 0.1);
}

body.dark-mode .theme-toggle-nav {
    background: rgba(255, 255, 255, 0.15);
    color: #fbbf24;
}

body.dark-mode .theme-toggle-nav:hover {
    background: rgba(139, 92, 246, 0.3);
    color: #fde047;
}

/* Logo en modo oscuro */
body.dark-mode .logo {
    color: #a78bfa;
}

body.dark-mode .logo:hover {
    color: #c4b5fd;
}



.btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

/* Modo oscuro para botÃ³n primary */
body.dark-mode .btn-primary {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 1.15rem;
    padding: 16px 36px;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.hero {
    background: var(--gradient-hero);
    padding: 120px 20px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234f46e5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

/* Modo oscuro para hero */
body.dark-mode .hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

body.dark-mode .hero::before {
    opacity: 0.2;
}

body.dark-mode .hero h1 {
    color: white;
}

body.dark-mode .hero-badge {
    background: rgba(79, 70, 229, 0.2);
    color: #a78bfa;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.15);
    animation: float 3s ease-in-out infinite;
}

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

.hero-badge i {
    font-size: 1.1rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.8rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 0.1em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.8;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

/* Modo oscuro para hero-subtitle */
body.dark-mode .hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

body.dark-mode .hero-subtitle strong {
    color: #8b5cf6;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 18px 42px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(79, 70, 229, 0.45);
}

.btn-hero-secondary {
    background: white;
    color: var(--primary);
    padding: 18px 42px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid #e0e7ff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
}

.hero-feature i {
    font-size: 1.3rem;
    color: #10b981;
}

/* Modo oscuro para hero-features */
body.dark-mode .hero-feature {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .hero-feature i {
    color: #34d399;
}

section {
    padding: 100px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 500;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.trust-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.trust-icon i {
    font-size: 2rem;
    color: white;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.trust-card p {
    color: var(--secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================
   CLARITY GRID (2 COLUMNAS)
   ============================================ */

.clarity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.clarity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.clarity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.clarity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #7c3aed;
}

.clarity-card:hover::before {
    transform: scaleX(1);
}

.clarity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.clarity-icon i {
    font-size: 2rem;
    color: white;
}

.clarity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.clarity-card p {
    color: var(--secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================
   VALUE GRID (2 COLUMNAS)
   ============================================ */

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #10b981;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.value-card p {
    color: var(--secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.urgency-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 100px 20px;
    position: relative;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

/* ============================================
   URGENCY GRID (2 COLUMNAS)
   ============================================ */

.urgency-grid-two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.urgency-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--danger);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.urgency-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.urgency-icon {
    font-size: 2.8rem;
    color: var(--danger);
    margin-bottom: 1.2rem;
}

.urgency-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.urgency-card p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-center {
    text-align: center;
    margin-top: 3.5rem;
}

.roi-section {
    background: var(--light);
}

.roi-container {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.roi-highlight {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-align: center;
    margin: 2.5rem 0;
}

.roi-list {
    list-style: none;
    margin: 2.5rem 0;
}

.roi-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 500;
}

.roi-list li i {
    color: var(--success);
    margin-right: 1.2rem;
    font-size: 1.3rem;
}

.roi-result {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 2.5rem;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.function-item {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.function-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: var(--primary);
}

.function-item i {
    font-size: 2.2rem;
    color: var(--primary);
}

.function-item span {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.testimonial-text {
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.testimonial-business {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-currency-selector {
    text-align: center;
    margin: 2rem 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(79, 70, 229, 0.1);
    flex-wrap: wrap;
}

.pricing-currency-selector label {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-currency-selector label i {
    color: var(--primary);
    font-size: 1.2rem;
}

.pricing-currency-selector .currency-selector {
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid var(--primary-light);
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    min-width: 280px;
}

.pricing-currency-selector .currency-selector:hover,
.pricing-currency-selector .currency-selector:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

body.dark-mode .pricing-currency-selector {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .pricing-currency-selector label {
    color: #f8fafc;
}

body.dark-mode .pricing-currency-selector label i {
    color: #8b5cf6;
}

body.dark-mode .pricing-currency-selector .currency-selector {
    background: #1e293b;
    color: white;
    border-color: rgba(139, 92, 246, 0.3);
}

body.dark-mode .pricing-currency-selector .currency-selector:hover,
body.dark-mode .pricing-currency-selector .currency-selector:focus {
    background: #2d3748;
    border-color: #8b5cf6;
}

/* Opciones del select en modo oscuro */
body.dark-mode .pricing-currency-selector .currency-selector option {
    background: #1e293b;
    color: white;
    padding: 10px;
}

body.dark-mode .pricing-currency-selector .currency-selector option:hover {
    background: #2d3748;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    letter-spacing: 0.5px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 45px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.pricing-period {
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li i {
    color: var(--success);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Botones de Pricing - Estilos consistentes para ambos modos */
.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-pricing-primary {
    background: var(--gradient-primary);
    color: white !important;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-pricing-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-pricing-outline:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 12px;
}

.pricing-footer p {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
}

.pricing-footer i {
    color: var(--success);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* ============================================
   FAQ SECTION - NUEVA VERSIÃ“N CON BOTÃ“N PRINCIPAL
   ============================================ */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* BotÃ³n principal colapsable */
.faq-main-toggle {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(79, 70, 229, 0.1);
    margin-bottom: 2rem;
}

.faq-main-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.2);
    border-color: var(--primary);
}

.faq-main-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.faq-main-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-main-icon i {
    font-size: 1.8rem;
    color: white;
}

.faq-main-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.faq-main-text p {
    font-size: 0.95rem;
    color: var(--secondary);
    margin: 0;
}

.faq-main-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-main-toggle.active .faq-main-arrow {
    transform: rotate(180deg);
}

/* Contenedor de preguntas (oculto por defecto) */
.faq-questions-wrapper {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.5s ease !important;
}

.faq-questions-wrapper.active {
    max-height: 2000px !important;
}

/* Items individuales de FAQ */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 70, 229, 0.2);
}

.faq-question {
    padding: 1.5rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--dark);
    font-size: 1.05rem;
}

.faq-question:hover {
    background: rgba(79, 70, 229, 0.05);
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    color: var(--secondary);
    line-height: 1.8;
    transition: all 0.3s ease !important;
    font-size: 1rem;
}

.faq-answer.active {
    padding: 0 1.8rem 1.8rem !important;
    max-height: 500px !important;
}

/* Estilos para modo oscuro */
body.dark-mode .faq-main-toggle {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .faq-main-toggle:hover {
    border-color: var(--primary);
}

body.dark-mode .faq-main-text h3 {
    color: #f8fafc;
}

body.dark-mode .faq-main-text p {
    color: #94a3b8;
}

body.dark-mode .faq-item {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .faq-question {
    color: #f8fafc;
}

body.dark-mode .faq-question:hover {
    background: rgba(79, 70, 229, 0.1);
}

body.dark-mode .faq-answer {
    color: #94a3b8;
}

.final-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
 pointer-events: none;}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.final-cta .btn, .final-cta a { position: relative; z-index: 10 !important; pointer-events: auto !important; }

/* ============================================
   FOOTER - NUEVA VERSIÃ“N MINIMALISTA
   ============================================ */

footer {
    background: #1a202c;
    color: white;
    padding: 4rem 20px 1.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.3));
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* Estilos para modo oscuro */
body.dark-mode footer {
    background: #0a0e1a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    /* OCULTAR EL NAV-LINKS POR DEFECTO EN MOBILE */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* IMPORTANTE: Debe empezar oculto fuera de la pantalla */
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 1.5rem;
        overflow-y: auto;
        margin-left: 0; /* RESETEAR el margin-left */
    }

    .nav-links.active {
        right: 0; /* Cuando está activo, aparece */
    }

    /* MOSTRAR BOTÓN HAMBURGUESA EN MOBILE */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 2rem;
    }

    /* HERO RESPONSIVE */
    .hero {
        padding: 80px 20px 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 16px 32px;
    }

    .hero-features {
        gap: 1.5rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-feature {
        font-size: 0.9rem;
    }

    .hero-feature i {
        font-size: 1.1rem;
    }

    /* ANIMACIÓN DE ITEMS DEL MENÚ */
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-links.active li {
        animation: slideIn 0.3s ease forwards;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.35s; }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* SECTION TITLES RESPONSIVE */
    .section-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* GRIDS A 1 COLUMNA */
    .trust-grid,
    .features-grid,
    .clarity-grid,
    .value-grid,
    .urgency-grid-two-cols,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px) scale(1);
    }

    /* FIX SELECTOR DE MONEDA MOBILE */
    .pricing-currency-selector {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem;
        margin: 1.5rem 1rem 2rem;
    }
    
    .pricing-currency-selector label {
        font-size: 0.95rem;
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-currency-selector .currency-selector {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        font-size: 0.95rem;
        padding: 10px 15px;
    }

    /* MODO OSCURO MOBILE */
    body.dark-mode .nav-links {
        background: rgba(15, 20, 25, 0.98);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    body.dark-mode .nav-links a {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    body.dark-mode .nav-links a:hover {
        color: white !important;
        background: rgba(139, 92, 246, 0.1);
    }

    body.dark-mode .btn-nav-login {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    body.dark-mode .btn-nav-login:hover {
        color: white !important;
        background: rgba(139, 92, 246, 0.15);
    }

    body.dark-mode .mobile-menu-toggle {
        color: rgba(255, 255, 255, 0.9);
    }

    body.dark-mode .mobile-menu-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    /* Botón de tema en mobile */
    .theme-toggle-item {
        width: 100%;
        padding: 12px 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(79, 70, 229, 0.1);
    }

    .theme-toggle-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    body.dark-mode .theme-toggle-item {
        border-top-color: rgba(255, 255, 255, 0.1);
    }
}

/* ============================================
   SELECTOR DE MONEDA
   ============================================ */

.currency-selector-container {
    position: relative;
}

.currency-selector {
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid var(--primary-light);
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.currency-selector:hover,
.currency-selector:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* ============================================
   MENÚ HAMBURGUESA MOBILE - VERSIÓN CORREGIDA
   ============================================ */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1001; /* Asegurar que esté por encima */
    position: relative;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Icono hamburguesa animado */
.mobile-menu-toggle i {
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active i::before {
    content: '\f00d'; /* Código de Font Awesome para X */
}

/* OVERLAY PARA MENÚ MOBILE */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Prevenir scroll cuando el menú está abierto */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 1.5rem;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        animation: slideIn 0.3s ease forwards;
    }

    .nav-links.active li {
        animation: slideIn 0.3s ease forwards;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.35s; }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Modo oscuro para menú mobile */
    body.dark-mode .nav-links {
        background: rgba(15, 20, 25, 0.98);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    body.dark-mode .nav-links a {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    body.dark-mode .nav-links a:hover {
        color: white !important;
        background: rgba(139, 92, 246, 0.1);
    }

    body.dark-mode .btn-nav-login {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    body.dark-mode .btn-nav-login:hover {
        color: white !important;
        background: rgba(139, 92, 246, 0.15);
    }

    body.dark-mode .mobile-menu-toggle {
        color: rgba(255, 255, 255, 0.9);
    }

    body.dark-mode .mobile-menu-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    /* FIX SELECTOR DE MONEDA MOBILE */
    .pricing-currency-selector {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem;
        margin: 1.5rem 1rem 2rem;
    }
    
    .pricing-currency-selector label {
        font-size: 0.95rem;
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-currency-selector .currency-selector {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        font-size: 0.95rem;
        padding: 10px 15px;
    }
}



/* ============================================
   THEME TOGGLE (MODO OSCURO)
   ============================================ */

.theme-toggle-container {
    display: flex;
    align-items: center;
}

.theme-toggle {
    background: rgba(79, 70, 229, 0.1);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--primary);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

/* Variables para modo oscuro */
body.dark-mode {
    --dark: #f8fafc;
    --light: #1a1a2e;
    --secondary: #94a3b8;
    background: #0f1419;
    color: #f8fafc;
}

body.dark-mode .navbar {
    background: rgba(15, 20, 25, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .trust-card,
body.dark-mode .feature-card,
body.dark-mode .clarity-card,
body.dark-mode .value-card,
body.dark-mode .urgency-card,
body.dark-mode .function-item,
body.dark-mode .testimonial-card,
body.dark-mode .pricing-card,
body.dark-mode .faq-item {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .trust-card h3,
body.dark-mode .feature-card h3,
body.dark-mode .clarity-card h3,
body.dark-mode .value-card h3,
body.dark-mode .urgency-card h3,
body.dark-mode .function-item span,
body.dark-mode .testimonial-author,
body.dark-mode .faq-question {
    color: #f8fafc;
}

/* Estilos de pricing para modo oscuro */
body.dark-mode .pricing-name {
    color: #f8fafc;
}

body.dark-mode .pricing-subtitle {
    color: #94a3b8;
}

body.dark-mode .pricing-currency-selector label {
    color: #f8fafc;
}

body.dark-mode .btn-pricing-outline {
    color: var(--primary) !important;
    border-color: var(--primary);
    background: transparent;
}

body.dark-mode .btn-pricing-outline:hover {
    color: white !important;
    background: var(--primary);
}

body.dark-mode .btn-pricing-primary {
    color: white !important;
}

body.dark-mode .pricing-footer {
    background: rgba(79, 70, 229, 0.1);
}

body.dark-mode .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.dark-mode .urgency-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

body.dark-mode .roi-container {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        gap: 1.8rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 999;
        gap: 1.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .features-grid,
    .clarity-grid,
    .value-grid,
    .urgency-grid-two-cols {
        grid-template-columns: 1fr;
    }

    /* Modo oscuro responsive */
    body.dark-mode .nav-links {
        background: rgba(15, 20, 25, 0.98);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    body.dark-mode .nav-links a {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    body.dark-mode .nav-links a:hover {
        color: white !important;
        background: rgba(139, 92, 246, 0.1);
    }

    body.dark-mode .btn-nav-login {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    body.dark-mode .btn-nav-login:hover {
        color: white !important;
        background: rgba(139, 92, 246, 0.15);
    }

    body.dark-mode .mobile-menu-toggle {
        color: rgba(255, 255, 255, 0.9);
    }
}
.final-cta .btn-primary {
    display: inline-block;
    position: relative;
    z-index: 10 !important;
    background: white !important;
    color: #4f46e5 !important;
    font-size: 1.15rem !important;
    padding: 16px 36px !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto !important;
}

.final-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Botón en modo oscuro */
body.dark-mode .final-cta .btn-primary {
    background: white !important;
    color: #4f46e5 !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

body.dark-mode .final-cta .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}