:root {
    /* Colores Base - Psicología de Marketing */
    --primary-color: #4F46E5;        /* Morado: Confianza, innovación */
    --secondary-color: #7C3AED;       /* Morado secundario */
    --dark-color: #1F2937;           /* Gris oscuro: Profesionalismo */
    --light-color: #F9FAFB;          /* Gris claro: Limpieza */
    
    /* Colores de Conversión - Psicología Optimizada */
    --success-color: #22C55E;        /* Verde vibrante: Acción positiva */
    --success-hover: #16A34A;        /* Verde oscuro: Confirmación */
    --warning-color: #F59E0B;        /* Amarillo: Atención */
    --danger-color: #EF4444;         /* Rojo: Urgencia */
    --urgency-color: #FF6B35;        /* Naranja: Urgencia alta */
    --trust-color: #3B82F6;           /* Azul: Confianza */
    
    /* Gradientes Optimizados */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --gradient-success: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    --gradient-urgency: linear-gradient(135deg, #FF6B35 0%, #EF4444 100%);
    --gradient-trust: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
    max-width: 100vw;
}

/* Prevenir overflow horizontal global */
* {
    box-sizing: border-box;
}

.container, .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    max-width: 100%;
    overflow-x: hidden;
}

/* Navbar Profesional */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0.1rem 0;
    padding-top: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9998;
    position: relative;
    left: 0;
    right: 0;
    min-height: 50px;
}

.navbar .container {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar.navbar-fixed-custom {
    position: fixed;
    top: 35px;
    z-index: 9998;
}

.navbar-brand {
    margin: 0 !important;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botones Principales - Psicología de Conversión */
.btn-gradient {
    background: var(--gradient-success);
    border: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gradient:hover {
    background: var(--gradient-success);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
    color: white;
    filter: brightness(1.1);
}

/* Botón de Urgencia - Naranja/Rojo */
.btn-urgency {
    background: var(--gradient-urgency);
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    animation: pulse-urgency 2s infinite;
    white-space: nowrap;
}

.btn-urgency:hover {
    background: var(--gradient-urgency);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
    color: white;
    filter: brightness(1.1);
}

@keyframes pulse-urgency {
    0% { box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 6px 20px rgba(255, 107, 53, 0.8); }
    100% { box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); }
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

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

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e5e7eb;
}

/* Hero Section Profesional */
.hero-section {
    background: white;
    color: #1f2937;
    padding: 70px 0 80px;
    position: relative;
    overflow: visible;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
}

.hero-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image-container img:hover {
    transform: translateY(-5px);
}

.hero-background {
    display: none;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
}

.badge-urgency {
    background: var(--gradient-urgency);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.badge-unique {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.title-main {
    display: block;
    color: #1f2937;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #fbbf24;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.guarantee-section {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.guarantee-card {
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    max-width: 500px;
}

/* .guarantee-icon - Removed duplicate definition */

.guarantee-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.guarantee-content p {
    font-size: 0.9rem;
    margin: 0;
    color: #6b7280;
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
    margin-top: 0;
    transform: translateY(0);
}

.hero-image:hover {
    transform: translateY(-10px);
}

/* Features Section Profesional */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card.professional {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.professional:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon i {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem !important;
    display: block !important;
}

/* Fallback para iconos de características */
.feature-icon i.fa-cash-register::before {
    content: "💰";
}

.feature-icon i.fa-chart-line::before {
    content: "📈";
}

.feature-icon i.fa-mobile-alt::before {
    content: "📱";
}

.feature-icon i.fa-warehouse::before {
    content: "📦";
}

.feature-icon i.fa-user-friends::before {
    content: "👥";
}

.feature-icon i.fa-file-invoice::before {
    content: "📄";
}

.feature-icon i.fa-shield-check::before {
    content: "🔒";
}

.feature-icon i.fa-sliders-h::before {
    content: "⚙️";
}

.feature-icon i.fa-headset::before {
    content: "🎧";
}

.feature-card.professional h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card.professional p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.step-icon i {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Advantages Section */
.advantages-section {
    background: white;
    padding: 80px 0;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.advantage-icon i {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-metric {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    pointer-events: none;
}

.pricing-card {
    padding: 0.7rem 0.1rem !important;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 !important;
}

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

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #ffffff, #f8faff);
}

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

.pricing-icon {
    margin-bottom: 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon i {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.9rem;
    font-weight: 500;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid #eef2ff;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 1.5rem 0;
}

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

.price-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.features-list {
    margin: 0.5rem 0 !important;
    padding: 0 !important;
}

.features-list li {
    margin: 0.2rem 0 !important;
    padding: 0.1rem 0 !important;
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.features-list li i {
    margin-right: 1rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    background: #eef2ff;
    padding: 0.5rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .btn {
    margin-top: auto;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-card .text-muted {
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.form-control {
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Animations */
[data-aos] {
    transition-duration: 800ms;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-section img {
        margin-top: 3rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

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

@media (max-width: 767.98px) {
    .feature-card,
    .testimonial-card,
    .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    background-color: #128C7E;
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Form Validation Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

.was-validated .form-control:valid {
    border-color: var(--success-color);
}

.was-validated .form-control:invalid {
    border-color: var(--danger-color);
}

/* Botones WhatsApp - Verde Optimizado */
.btn-success {
    background: var(--gradient-success);
    border: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-success:hover {
    background: var(--gradient-success);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
    color: white;
    filter: brightness(1.1);
}

/* Toast Notification Styles */
.toastify {
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

/* Currency Selector Styles */
.currency-selector-wrapper {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-bottom: 2rem;
}

.currency-selector {
    padding: 8px 16px;
    border: 2px solid #eef2ff;
    border-radius: 8px;
    background-color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

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

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

nav {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: white;
}

.accordion-body {
    padding: 1.25rem;
    background-color: white;
}

/* Contact Form Styles */
.contact-section {
    background-color: white;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 500;
    color: #495057;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Selector de planes para PayPal */
#planSelector {
    min-width: 180px;
    display: inline-block;
    margin-left: 8px;
}

/* Contenedor del botón de PayPal */
#paypal-button-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d-none {
    display: none !important;
}

.billing-toggle-wrapper {
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.billing-toggle .btn {
    min-width: 120px;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px 8px 8px 8px;
    margin: 0 2px;
}

@media (max-width: 767.98px) {
    .billing-toggle .btn {
        min-width: 90px;
        font-size: 0.95rem;
        padding: 0.4rem 0.5rem;
    }
    .billing-toggle-wrapper {
        margin-bottom: 0.5rem;
    }
}

/* Estadísticas del Hero */
.hero-stats {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(79, 70, 229, 0.2);
}

/* Hero Stats - Diseño Compacto */
.hero-stats {
    margin: 1.5rem 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
    flex: 1;
    max-width: 160px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-trust);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-icon i {
    color: white;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-card:hover .stat-icon {
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--trust-color);
    margin: 0 0 0.2rem 0;
    line-height: 1;
    background: var(--gradient-trust);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    display: inline-block;
    min-width: 2.5rem;
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsive para Hero Stats */
@media (max-width: 992px) {
    .stats-container {
        gap: 0.5rem;
        max-width: 800px;
    }
    
    .stat-card {
        min-width: 100px;
        max-width: 140px;
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
    }
    
    .stat-icon i {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
        min-width: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .stats-container {
        gap: 0.4rem;
        max-width: 100%;
    }
    
    .stat-card {
        min-width: 90px;
        max-width: 120px;
        padding: 0.6rem 0.4rem;
        gap: 0.4rem;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
    }
    
    .stat-icon i {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1rem;
        min-width: 2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    /* Banner de Urgencia Ultra Delgado para Móvil */
    .urgency-banner {
        padding: 0.25rem 0;
        padding-bottom: 0;
        margin: 0;
        border: none;
        min-height: auto;
    }
    
    .urgency-content {
        gap: 0.25rem;
        padding: 0 0.4rem;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .urgency-text {
        font-size: 0.5rem;
        line-height: 1;
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .urgency-icon {
        font-size: 0.6rem;
        flex-shrink: 0;
    }
    
    .urgency-button-container {
        flex-shrink: 0;
    }
    
    .btn-urgency {
        font-size: 0.55rem;
        padding: 0.15rem 0.35rem;
        white-space: nowrap;
    }
    
    .countdown-timer {
        display: none;
    }
    
    /* Ajustes de Espaciado Ultra Delgado */
    .urgency-banner {
        position: fixed;
        top: 0;
        z-index: 10000;
    }
    
    .navbar.navbar-fixed-custom {
        padding: 0.05rem 0;
        position: fixed;
        top: 40px;
        width: 100%;
        z-index: 9999;
        margin-top: 0;
        min-height: auto;
    }
    
    .navbar .container {
        padding: 0;
    }
    
    .navbar-brand {
        margin: 0 !important;
    }
    
    .hero-section {
        padding: 20px 0 30px;
        padding-top: 180px !important; /* Ajustado para banner unificado + navbar en móvil */
        margin-top: 0;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.6rem;
    }
    
    .badge-urgency,
    .badge-unique {
        display: block;
        text-align: center;
        width: auto;
        max-width: 95%;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 280px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
    }
    
    .stat-icon i {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
        min-width: 2.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Sección de Productos */
.products-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.product-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.9rem;
}

/* Product Highlight Cards */
.product-highlight-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.product-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    position: relative;
}

.product-highlight-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
    z-index: -1;
}

.product-highlight-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.product-highlight-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-highlight-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-highlight-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.9rem;
}

/* Sección de Contacto Mejorada */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin: 0;
    color: #6b7280;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

/* Banner de Urgencia Unificado */
.urgency-banner {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 0.2rem 0;
    padding-bottom: 0;
    margin: 0;
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: urgencyPulse 2s infinite;
    transform: translateZ(0);
    will-change: transform;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 35px;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    line-height: 1;
    flex-wrap: nowrap;
    max-width: 1200px;
    width: 100%;
}

.urgency-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.urgency-icon {
    font-size: 0.75rem;
    animation: bounce 1s infinite;
    flex-shrink: 0;
}

.urgency-text {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1;
}

.countdown-timer {
    color: #ffeb3b;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.urgency-btn {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 1.5s infinite;
}

/* Social Proof Masivo */
.social-proof-massive {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(79, 70, 229, 0.2);
}

.proof-stat {
    padding: 1rem;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.proof-label {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* Garantía de Riesgo Cero */
.risk-free-guarantee {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 10px;
    padding: 1rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

/* Oferta Primer Mes - $1 USD */
.first-month-offer {
    text-align: center;
    margin-bottom: 1rem;
}

.offer-price {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.offer-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.offer-price .currency-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.offer-price .price-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.offer-period {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.normal-price {
    color: #6B7280;
    font-size: 0.9rem;
}

.normal-price .currency-symbol {
    font-size: 1rem;
    font-weight: 600;
}

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

.price-period {
    font-size: 0.8rem;
    color: #9CA3AF;
}

/* Precios con Descuentos */
.price-original {
    position: relative;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.discount-badge {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animaciones */
@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

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

@keyframes glow {
    from { text-shadow: 0 0 5px rgba(251, 191, 36, 0.5); }
    to { text-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 30px rgba(245, 158, 11, 0.6); }
}

/* Ajustar hero section para banner unificado + navbar */
.hero-section {
    padding-top: 170px; /* Ajustar para banner + navbar */
}

/* Footer Mejorado */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border-top: 3px solid var(--primary-color);
}

.footer-brand img {
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.footer-link:hover {
    color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.footer-separator {
    color: #666;
    font-weight: bold;
    margin: 0 0.25rem;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d47a1);
    color: white;
}

.social-icon.facebook::before {
    background: linear-gradient(135deg, #42a5f5, #1976d2);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
    color: white;
}

.social-icon.instagram::before {
    background: linear-gradient(135deg, #f56040, #e1306c, #fd1d1d);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-icon.youtube::before {
    background: linear-gradient(135deg, #ff4444, #ff0000);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: white;
}

.social-icon.telegram::before {
    background: linear-gradient(135deg, #00aaff, #0088cc);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
    opacity: 0;
}

.social-icon i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.footer-divider {
    border-color: #333;
    margin: 1rem 0;
}

.footer-copyright {
    color: #b0b0b0;
    font-size: 0.85rem;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.powered-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

.powered-brand {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
}

.powered-brand:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(79, 70, 229, 0.3);
}

.powered-emoji {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

/* Responsive Design Mejorado */
@media (max-width: 768px) {
    .urgency-banner {
        padding: 2px 0;
        padding-bottom: 0;
        margin: 0;
        border: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        min-height: auto;
    }
    
    .urgency-content {
        flex-direction: row;
        gap: 0.3rem;
        padding: 0 0.5rem;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        flex-wrap: nowrap;
    }
    
    .urgency-button-container {
        flex-shrink: 0;
    }
    
    .urgency-banner .row {
        justify-content: center;
        text-align: center;
        align-items: center;
        margin: 0;
        width: 100%;
        flex-direction: column;
    }
    
    .urgency-banner .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 0.5rem;
        margin-bottom: 0.3rem;
    }
    
    .urgency-banner .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 0.5rem;
        display: block !important;
    }
    
    .urgency-text {
        font-size: 0.55rem;
        line-height: 1;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
    }
    
    .urgency-icon {
        font-size: 0.65rem;
    }
    
    .countdown-timer {
        display: none;
    }
    
    .btn-urgency {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        white-space: nowrap;
        margin: 0;
    }
    
    /* Forzar centrado del botón en móvil */
    .urgency-banner .col-md-4.text-end {
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .urgency-banner .btn {
        margin: 0 auto;
        display: block !important;
        width: auto;
        max-width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ajustes de Espaciado para Banner Unificado */
    .navbar.navbar-fixed-custom {
        padding: 0.05rem 0;
        position: fixed;
        top: 24px;
        width: 100%;
        min-height: auto;
    }
    
    .navbar .container {
        padding: 0;
    }
    
    .navbar-brand {
        margin: 0 !important;
    }
    
    .hero-section {
        padding: 30px 0 40px;
        padding-top: 50px !important; /* Ajustado para banner unificado + navbar en móvil */
        margin-top: 0;
    }
    
    .proof-number {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .navbar {
        top: 40px;
    }
    
    .hero-section {
        padding-top: 30px;
    }
    
    /* Footer responsive */
    .footer-links {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .powered-by {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 1rem;
    }
}

/* Responsive para Oferta Primer Mes */
@media (max-width: 768px) {
    .offer-price .price-value {
        font-size: 2.5rem;
    }
    
    .offer-price .currency-symbol {
        font-size: 1.2rem;
    }
    
    .normal-price .price-value {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .offer-price {
        padding: 0.8rem;
    }
    
    .offer-price .price-value {
        font-size: 2rem;
    }
    
    .offer-period {
        font-size: 0.8rem;
    }
}

/* Integrations Section */
.integrations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.integration-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.integration-icon i {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.integration-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.integration-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.integration-logo {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.integration-logo:hover {
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: white;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    animation: none;
}

.testimonial-card {
    min-width: 320px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Pricing Section Profesional */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23764ba2" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-grain)"/></svg>');
    opacity: 0.3;
}

/* Garantías */
.guarantee-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-trust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.guarantee-icon i {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
    display: block !important;
}

/* Fallback para iconos si FontAwesome no carga */
.guarantee-icon i::before {
    content: attr(data-fallback);
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* Iconos específicos con fallback */
.guarantee-icon i.fa-shield-alt::before {
    content: "🛡️";
}

.guarantee-icon i.fa-shield-check::before {
    content: "✅";
}

.guarantee-icon i.fa-check-circle::before {
    content: "✓";
}

.guarantee-icon i.fa-star::before {
    content: "⭐";
}

.guarantee-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.guarantee-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Pricing Cards Profesionales */
.pricing-card.professional {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.professional:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.pricing-card.professional.popular {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.pricing-card.professional.popular::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

/* Pricing Badges */
.pricing-badge {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.pricing-badge.offer {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.offer .badge-text,
.pricing-badge.premium .badge-text {
    color: white;
}

/* Pricing Header */
.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Pricing Price */
.pricing-price {
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 3rem;
    font-weight: 900;
    color: #667eea;
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.price-original {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 900;
    color: #10b981;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 900;
}

.period {
    font-size: 1rem;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 0.5rem;
}

/* Pricing Features */
.pricing-features {
    padding: 0 2rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.pricing-features i {
    color: #10b981;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Pricing Buttons */
.pricing-card .btn {
    margin: 0 2rem 2rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing-card .btn-gradient {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
}

.pricing-card .btn-gradient:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Billing Toggle */
.billing-toggle-wrapper {
    margin-bottom: 1rem;
}

.billing-toggle .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.billing-toggle .btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
}

.billing-toggle .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card.professional.popular {
        transform: none;
    }
    
    .pricing-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .pricing-features {
        padding: 0 1.5rem;
    }
    
    .pricing-card .btn {
        margin: 0 1.5rem 1.5rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
}

/* CTA Final Section */
.cta-final-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 50%, rgba(147, 51, 234, 0.1) 100%);
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cta-stats {
    margin: 3rem 0;
}

.cta-stat {
    text-align: center;
    padding: 1rem;
}

.cta-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-stat p {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-guarantee {
    margin-top: 2rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.guarantee-badge i {
    color: #fbbf24;
    font-size: 1.1rem;
}

/* Responsive Design Profesional */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .badge-urgency,
    .badge-unique {
        display: block;
        text-align: center;
        width: auto;
        max-width: 90%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-container {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
    
    .guarantee-card {
        max-width: 100%;
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card.professional {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .integration-card {
        padding: 1.5rem;
    }
    
    .integration-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stat h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

/* Ajustes adicionales para el hero */
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Cambiar color verde por azul suave */
.text-success {
    color: #667eea !important;
}

/* Estilos para precios simplificados */
.price-total {
    display: block;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.price-monthly {
    display: block;
    margin-bottom: 0.5rem;
}

.price-total .price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}

.price-total .currency-symbol {
    font-size: 1rem;
    color: #667eea;
}

.price-total .price-period {
    font-size: 0.9rem;
    color: #6b7280;
}

.price-monthly .price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
}

.price-monthly .currency-symbol {
    font-size: 0.9rem;
    color: #667eea;
}

.price-monthly .price-period {
    font-size: 0.9rem;
    color: #6b7280;
}

/* iOS app safe areas: keep the promotional bars away from the clock/dynamic island. */
@media (max-width: 768px) {
    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }

    .urgency-banner {
        top: auto !important;
        bottom: 0 !important;
        min-height: 30px;
        padding: 3px 0 env(safe-area-inset-bottom, 0px) !important;
        z-index: 10000;
    }

    .navbar.navbar-fixed-custom,
    .navbar {
        top: auto !important;
        bottom: calc(30px + env(safe-area-inset-bottom, 0px)) !important;
        width: 100%;
        z-index: 9999;
    }

    .hero-section {
        padding-top: calc(24px + env(safe-area-inset-top, 0px)) !important;
        padding-bottom: 48px !important;
    }

    .floating-whatsapp {
        bottom: calc(112px + env(safe-area-inset-bottom, 0px));
    }
}

/* ==========================================================================
   NT-SKILL SUPREME: HIGH-CRAFT VISUAL ELEVATION LAYER
   Preserves 100% of functional HTML structure while upgrading aesthetic taste,
   glassmorphism, spatial rhythm, gradient depth & micro-interactions.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --nt-font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nt-brand-glow: rgba(79, 70, 229, 0.35);
  --nt-accent-neon: #38bdf8;
  --nt-purple-glow: rgba(124, 58, 237, 0.4);
}

body {
  font-family: var(--nt-font-family) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism & High-Depth Navbar */
.navbar-fixed-custom,
.navbar {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.7) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
}

/* Hero Elevation & Gradient Typography */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, rgba(249, 250, 251, 1) 70%) !important;
}

.hero-title, 
h1, .display-4 {
  font-family: var(--nt-font-family) !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
}

/* Premium Card Depth & Micro-interactions */
.card, .feature-card, .pricing-card, .bento-item {
  border-radius: 18px !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card:hover, .feature-card:hover, .pricing-card:hover {
  transform: translateY(-5px) scale(1.01) !important;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12), 0 0 20px rgba(56, 189, 248, 0.1) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
}

/* Elevated Buttons with Glowing State */
.btn-gradient, .btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  letter-spacing: -0.01em !important;
}

.btn-gradient:hover, .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5) !important;
  filter: brightness(1.08) !important;
}

.btn-urgency {
  border-radius: 9999px !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
}

/* Badges & Pills Craft */
.badge, .badge-urgency {
  border-radius: 9999px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* Focus Visible Rings for Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #6366f1 !important;
  outline-offset: 2px !important;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

