/* ============================================
   VSL DIETA KETO - STYLES
   Diseño moderno, profesional y responsive
   ============================================ */

/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    /* Colores principales */
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --primary-light: #58d68d;
    
    /* Colores secundarios */
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --warning-color: #f39c12;
    
    /* Colores de texto */
    --text-dark: #2c3e50;
    --text-medium: #34495e;
    --text-light: #7f8c8d;
    
    /* Colores de fondo */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-medium);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.badge-nuevo {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-md);
    animation: pulse 2s infinite;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: #ffd700;
}

.badge-nuevo span {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
    color: #ffd700;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--spacing-sm);
    color: #ffd700;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    color: white;
    opacity: 0.7;
}

/* ============================================
   PROBLEMA SECTION
   ============================================ */
.problema-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.problema-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problema-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.problema-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.problema-icon-red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.problema-icon-orange {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.problema-icon-yellow {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.problema-icon-purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.problema-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.problema-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.problema-highlight {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    margin-top: var(--spacing-lg);
}

.problema-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    text-align: center;
}

.problema-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================
   SOLUCIÓN SECTION
   ============================================ */
.solucion-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.solucion-header {
    margin-bottom: var(--spacing-xl);
}

.solucion-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.solucion-image {
    position: relative;
}

.solucion-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
}

.image-badge svg {
    width: 20px;
    height: 20px;
}

.solucion-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 25px;
    height: 25px;
    color: white;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================
   CONTENIDO SECTION
   ============================================ */
.contenido-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.contenido-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.contenido-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.contenido-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.contenido-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.contenido-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.contenido-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.contenido-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.contenido-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIOS SECTION
   ============================================ */
.testimonios-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonio-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonio-rating {
    display: flex;
    gap: 5px;
    margin-bottom: var(--spacing-md);
}

.testimonio-rating svg {
    width: 20px;
    height: 20px;
    color: #ffd700;
}

.testimonio-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonio-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: var(--spacing-sm);
}

.testimonio-author strong {
    color: var(--text-dark);
    font-weight: 700;
}

.testimonio-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonio-result {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ============================================
   URGENCIA SECTION
   ============================================ */
.urgencia-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.urgencia-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.urgencia-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.urgencia-icon svg {
    width: 40px;
    height: 40px;
    color: #ffd700;
}

.urgencia-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.urgencia-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.urgencia-reasons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

.urgencia-reason {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.urgencia-reason svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: #ffd700;
}

.urgencia-reason span {
    font-size: 1.1rem;
    text-align: left;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.precio-box {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--spacing-lg);
}

.precio-antes {
    margin-bottom: var(--spacing-sm);
}

.precio-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.precio-tachado {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.precio-ahora {
    margin-bottom: var(--spacing-md);
}

.precio-actual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    color: var(--primary-color);
}

.precio-simbolo {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.precio-numero {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.precio-centavos {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.precio-ahorro {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-weight: 700;
}

.precio-ahorro svg {
    width: 20px;
    height: 20px;
}

.bonos-incluidos {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.bonos-incluidos h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.bonos-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.bono-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: left;
}

.bono-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-xl);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    margin-bottom: var(--spacing-lg);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

.garantia-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
}

.garantia-box svg {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.garantia-text {
    text-align: left;
}

.garantia-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.garantia-text p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.seguridad-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-medium);
    font-size: 0.9rem;
}

.badge-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-normal);
}

.faq-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.disclaimer {
    font-size: 0.8rem !important;
    font-style: italic;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .solucion-content {
        grid-template-columns: 1fr;
    }
    
    .testimonios-grid,
    .contenido-grid,
    .problemas-grid,
    .faq-grid {
        grid-template-columns: 
 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .urgencia-reasons {
        gap: var(--spacing-sm);
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .garantia-box {
        flex-direction: column;
        text-align: center;
    }
    
    .garantia-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-section {
        padding: var(--spacing-lg) 0;
    }
    
    .precio-numero {
        font-size: 3rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .seguridad-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .scroll-top,
    .scroll-indicator,
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero-section {
        background: white;
        color: var(--text-dark);
    }
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible para accesibilidad */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ============================================
   UTILIDADES ADICIONALES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
/* Estilos adicionales para la sección de precio con gatillos mentales */
.precio-valor-real {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid var(--warning-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.valor-real-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.valor-real-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.valor-real-highlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 2px dashed rgba(0,0,0,0.1);
}

.precio-justificacion {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.precio-justificacion p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    color: var(--text-medium);
}

.precio-justificacion p:last-child {
    margin-bottom: 0;
}

.precio-urgencia {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
    padding: var(--spacing-sm);
    background: rgba(231, 76, 60, 0.1);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-sm) !important;
}

/* ============================================
   HOTMART BUTTON OVERRIDE
   Sobrescribir estilos de Hotmart para mantener diseño personalizado
   ============================================ */
.cta-button.hotmart-fb.hotmart__button-checkout {
    /* Mantener diseño original del botón */
    display: inline-flex !important;
    align-items: center !important;
    gap: var(--spacing-sm) !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: var(--spacing-md) var(--spacing-xl) !important;
    border-radius: var(--radius-xl) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-lg) !important;
    transition: var(--transition-normal) !important;
    margin-bottom: var(--spacing-lg) !important;
    border: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: var(--font-primary) !important;
    line-height: 1.5 !important;
    text-align: center !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    min-height: auto !important;
    max-width: none !important;
    max-height: none !important;
}

.cta-button.hotmart-fb.hotmart__button-checkout:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-xl) !important;
    color: white !important;
}

.cta-button.hotmart-fb.hotmart__button-checkout:active {
    transform: translateY(-1px) !important;
}

.cta-button.hotmart-fb.hotmart__button-checkout span {
    color: white !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    font-family: var(--font-primary) !important;
}

.cta-button.hotmart-fb.hotmart__button-checkout svg {
    width: 24px !important;
    height: 24px !important;
    color: white !important;
    fill: none !important;
    stroke: currentColor !important;
}

/* Asegurar que no haya imágenes de Hotmart sobrescribiendo el contenido */
.cta-button.hotmart-fb.hotmart__button-checkout img {
    display: none !important;
}

/* Responsive para el botón de Hotmart */
@media (max-width: 480px) {
    .cta-button.hotmart-fb.hotmart__button-checkout {
        width: 100% !important;
        justify-content: center !important;
        padding: var(--spacing-md) var(--spacing-md) !important;
    }
}
