/* 
   ========================================
   GLIMMA - Landing Diciembre en Paz
   VERSIÓN OPTIMIZADA PARA CONVERSIÓN
   ========================================
   
   Mejoras implementadas:
   - CTA Sticky flotante
   - Animaciones de conversión
   - Badges de urgencia y confianza
   - Social proof destacado
   - Pricing optimizado
   - Testimonios mejorados
   - Sección de objeciones
*/

/* ========================================
   VARIABLES EXTENDIDAS
   ======================================== */

:root {
    /* Colores de marca (heredados) */
    --color-primary: #5f7263;
    --color-secondary: #a08c7a;
    --color-accent: #bf6131;
    --color-accent-dark: #9d4d26;
    --color-tertiary: #f5f3ed;
    --color-white: #ffffff;
    
    /* Nuevos colores de conversión */
    --color-success: #4caf50;
    --color-warning: #ff9800;
    --color-urgent: #e74c3c;
    
    /* Sombras mejoradas */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Animaciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   HERO OPTIMIZADO - CONVERSIÓN MÁXIMA
   ======================================== */

.hero-landing {
    min-height: 100vh;
    padding-top: 180px;
    background: linear-gradient(135deg, #f5f3ed 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

/* Badge de urgencia en hero */
.hero-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-urgent) 0%, #c0392b 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231, 76, 60, 0.5);
        transform: scale(1.02);
    }
}

/* Social proof en hero */
.hero-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.social-proof-item i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.social-proof-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
}

/* Hero con imagen del producto arriba del fold */
.hero-product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 3rem auto;
}

.hero-product-image {
    position: relative;
}


/* Imagenes sin recuadro*/
.hero-product-image img,
.producto-image img {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}


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

/* Badge de descuento flotante sobre imagen */
.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--color-urgent);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    animation: rotate360 20s linear infinite;
}

.discount-badge .percentage {
    font-size: 1.8rem;
    line-height: 1;
}

.discount-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-product-copy {
    text-align: left;
}

.hero-product-copy .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-product-copy .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Precio destacado en hero */
.hero-pricing-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
    border: 2px solid var(--color-accent);
}

.hero-pricing-preview .old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.6;
    color: #666;
}

.hero-pricing-preview .new-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
}

.hero-pricing-preview .price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* ========================================
   CTA STICKY - BOTÓN FLOTANTE SIEMPRE VISIBLE
   ======================================== */

.cta-sticky {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: none; /* Se muestra con JS al hacer scroll */
    animation: slideUp 0.3s ease;
}

.cta-sticky.visible {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cta-sticky-content {
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 90vw;
}

.cta-sticky-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-sticky-title {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.cta-sticky-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.cta-sticky-button {
    background: var(--color-accent);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(191, 97, 49, 0.3);
}

.cta-sticky-button:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 97, 49, 0.4);
}

/* ========================================
   BADGES Y ELEMENTOS DE CONFIANZA
   ======================================== */

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.trust-badge i {
    color: var(--color-success);
    font-size: 1.2rem;
}

/* Badge de garantía destacado */
.guarantee-badge {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    margin: 1rem 0;
}

.guarantee-badge i {
    font-size: 1.5rem;
}

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

.pricing-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Decoración de fondo */
.pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.precio-original, .precio-oferta {
    text-align: center;
}

.precio-original .label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.precio-tachado {
    font-size: 3rem;
    text-decoration: line-through;
    opacity: 0.7;
    font-family: var(--font-accent);
    font-weight: 700;
    position: relative;
}

/* Efecto de tachado más visible */
.precio-tachado::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: var(--color-urgent);
    transform: rotate(-5deg);
}

.precio-grande {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: pulsePrice 2s infinite;
}

@keyframes pulsePrice {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.precio-oferta {
    position: relative;
}

/* Badge de ahorro */
.savings-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-urgent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

/* Argentina precio con más destaque */
.precio-argentina {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 600px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.argentina-titulo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.argentina-precio {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.argentina-metodo {
    font-size: 1.2rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ========================================
   SECCIÓN DE OBJECIONES (NUEVA)
   ======================================== */

.objections-section {
    padding: 5rem 0;
    background: #f9f7f3;
}

.objections-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.objection-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--color-accent);
}

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

.objection-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.objection-question i {
    color: var(--color-urgent);
    font-size: 1.3rem;
}

.objection-answer {
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.objection-answer i {
    color: var(--color-success);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ========================================
   TESTIMONIOS MEJORADOS
   ======================================== */

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffa500;
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Verificado badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.verified-badge i {
    font-size: 0.9rem;
}

/* ========================================
   COMPARACIÓN ANTES/DESPUÉS (NUEVA)
   ======================================== */

.comparison-section {
    padding: 5rem 0;
    background: white;
}

.comparison-table {
    max-width: 900px;
    margin: 3rem auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comparison-cell.without {
    background: #fef5f5;
}

.comparison-cell.with {
    background: #f0f9f4;
}

.comparison-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.comparison-text {
    font-size: 1.05rem;
    line-height: 1.4;
}

.comparison-cell.without .comparison-text {
    color: #666;
}

.comparison-cell.with .comparison-text {
    font-weight: 600;
    color: var(--color-primary);
}

/* ========================================
   CONTADOR DE URGENCIA (OPCIONAL)
   ======================================== */

.urgency-timer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.urgency-timer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    min-width: 70px;
    backdrop-filter: blur(10px);
}

.timer-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 0.5rem;
    display: block;
}

/* ========================================
   ANIMACIONES DE CONVERSIÓN
   ======================================== */

/* Shake para CTAs */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.btn-primary.shake-cta {
    animation: shake 0.5s ease;
}

/* Bounce para badges */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bounce-badge {
    animation: bounce 2s infinite;
}

/* Pulse para elementos importantes */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-element {
    animation: pulse 2s infinite;
}

/* ========================================
   BOTONES MEJORADOS
   ======================================== */

.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
    min-width: 280px;
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-with-icon i {
    font-size: 1.3rem;
}

/* ========================================
   ICONOS CÍRCULO MEJORADOS
   ======================================== */

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-white);
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(191, 97, 49, 0.3);
    transition: all var(--transition-normal);
}

.icon-circle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(191, 97, 49, 0.4);
}

/* ========================================
   PRODUCTO IMAGES MEJORADAS
   ======================================== */

.producto-image {
    margin: 1.5rem 0;
    position: relative;
}


.producto-image img:hover {
    transform: scale(1.05);
    box-shadow: none !important;
}

/* Badge sobre imagen de producto */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(191, 97, 49, 0.4);
}

/* ========================================
   SECCIÓN GARANTÍA MEJORADA
   ======================================== */

.garantia-satisfaccion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.garantia-icon {
    font-size: 4rem;
    color: var(--color-white);
    animation: pulse 2s infinite;
}

.garantia-texto h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.garantia-texto p {
    opacity: 0.95;
    margin: 0;
    font-size: 1.1rem;
}

/* ========================================
   STATS / MÉTRICAS
   ======================================== */

.stats-section {
    padding: 3rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f9f7f3;
    border-radius: 15px;
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* ========================================
   RESPONSIVE OPTIMIZADO
   ======================================== */

@media (max-width: 968px) {
    .hero-product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-product-copy {
        text-align: center;
    }
    
    .hero-product-copy .hero-title {
        font-size: 2.5rem;
    }
    
    .discount-badge {
        width: 70px;
        height: 70px;
        top: -10px;
        right: -10px;
    }
    
    .discount-badge .percentage {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero-landing {
        padding-top: 150px;
    }
    
    .hero-logo .logo-text {
        font-size: 2.5rem;
    }
    
    .typewriter {
        font-size: 2rem;
    }
    
    .cta-sticky-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cta-sticky-info {
        align-items: center;
    }
    
    .cta-sticky-button {
        width: 100%;
    }
    
    .pricing-comparison {
        gap: 2rem;
        flex-direction: column;
    }
    
    .precio-grande {
        font-size: 3.5rem;
    }
    
    .argentina-precio {
        font-size: 2.5rem;
    }
    
    .garantia-satisfaccion {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        padding: 1.5rem;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timer-display {
        gap: 0.5rem;
    }
    
    .timer-unit {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-product-copy .hero-title {
        font-size: 2rem;
    }
    
    .hero-pricing-preview .new-price {
        font-size: 2.5rem;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 15px 25px;
        min-width: auto;
        width: 100%;
    }
    
    .social-proof-item {
        font-size: 0.85rem;
    }
}

/* ========================================
   UTILIDADES DE CONVERSIÓN
   ======================================== */

.highlight-accent {
    color: var(--color-accent);
    font-weight: 700;
}

.highlight-success {
    color: var(--color-success);
    font-weight: 600;
}

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

.mb-large {
    margin-bottom: 3rem;
}

.mt-large {
    margin-top: 3rem;
}


/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .cta-sticky,
    .whatsapp-float,
    .scroll-top-btn,
    .promo-banner {
        display: none !important;
    }
}
/* =========================================
   CORRECCIÓN: HERO BACKGROUND Y ONDAS
   ========================================= */

/* SOLUCIÓN 1: Fondo claro para mejor contraste */
.hero-landing {
    background: linear-gradient(135deg, #f9f7f3 0%, #ffffff 50%, #fef8f4 100%) !important;
}

/* Texto oscuro para contrastar con fondo claro */
.hero-landing .hero-title,
.hero-landing .hero-subtitle,
.hero-landing .logo-text {
    color: #2d2d2d !important;
    text-shadow: none !important;
}

.hero-landing .logo-phonetic {
    color: #666 !important;
}

.hero-landing .typewriter {
    color: #bf6131 !important;
}

.hero-landing .social-proof-item {
    color: #333 !important;
}

/* SOLUCIÓN 2: Ondas con color de la siguiente sección */
.hero-landing .wave-path {
    fill: #f9f7f3 !important; /* Mismo color que la sección siguiente */
}

.hero-landing .wave-2 .wave-path {
    fill: #f5f3ed !important;
}

.hero-landing .wave-3 .wave-path {
    fill: #f0ece6 !important;
}

/* Posicionar ondas correctamente */
.hero-landing .wave-animation {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    height: 150px;
}

.hero-landing .wave {
    bottom: -1px !important; /* Eliminar línea de separación */
}

/* SOLUCIÓN 3: Siguiente sección sin espacio */
#problema.how-it-works {
    margin-top: 0 !important;
    padding-top: 80px;
    background: #f9f7f3; /* Mismo color que las ondas */
}

/* Espacio para las ondas */
.hero-landing .hero-container {
    padding-bottom: 100px;
}

#typewriter {
    color: var(--color-accent);
    font-weight: 700;
    border-right: 3px solid var(--color-accent);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: var(--color-accent); }
    100% { border-color: transparent; }
}


/* Beneficios Premium con Íconos Circulares */
.hero-benefits {
    margin-top: 2rem;
    margin-bottom: 2.5rem; /* separa del botón */
    display: grid;
    gap: 1.2rem;
}

.benefit-item-circle {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.4);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(191, 97, 49, 0.3);
}

.benefit-item-circle span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ===========================
   TRUST BADGES EN UNA SOLA FILA – VERSIÓN LIMPIA
   =========================== */

.hero-product-copy .trust-badges {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;        /* NO se van a la línea de abajo */
    justify-content: center !important;  /* Centrado perfecto */
    align-items: center !important;
    gap: 0.75rem !important;             /* Separación pareja */
    margin-top: 1.5rem !important;
}

.hero-product-copy .trust-badge {
    flex: 0 0 auto !important;           /* No se estiran ni se rompen */
    white-space: nowrap !important;      /* No permite saltos de línea */
    padding: 7px 16px !important;        /* Más compacto y elegante */
    font-size: 0.85rem !important;
    border-radius: 999px !important;     /* Forma tipo píldora */
    background: rgba(255,255,255,0.9) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
}

.hero-product-copy .trust-badge i {
    font-size: 1rem !important;
}

/* ===========================
   TRUST BADGES: 3 EN UNA SOLA FILA
   =========================== */

@media (min-width: 768px) {
    .trust-badges {
        text-align: center !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0 !important;
        white-space: nowrap !important; /* evita que el contenedor rompa línea */
    }

    .trust-badge {
        display: inline-block !important;  /* uno al lado del otro */
        margin: 0 0.6rem !important;       /* espacio entre ellos */
        padding: 7px 16px !important;
        font-size: 0.85rem !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
        white-space: nowrap !important;    /* el texto no se corta */
    }

    .trust-badge i {
        font-size: 1rem !important;
    }
}

