/* ==========================================================================
   DISEÑO PREMIUM Y RESPONSIVO - LANDING BASADA EN IMÁGENES
   ========================================================================== */

/* Variables de Color Coherentes con Alluse Kitchen */
:root {
    --bg-dark-rich: #0C0806;
    /* Chocolate ultra oscuro */
    --gold-accent: #A87E43;
    /* Dorado Alluse */
    --gold-glow: rgba(168, 126, 67, 0.4);
    --bezel-color: #231812;
    /* Color del marco del celular en desktop */
}

/* Reset de Estilos */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark-rich);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
    color: #FFFFFF;
}

/* Fondo decorativo premium para escritorio (efecto ambient glow) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/1.png');
    background-size: cover;
    background-position: center;
    filter: blur(80px) brightness(0.2);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================================
   CONTENEDOR DE LA LANDING
   ========================================================================== */
.landing-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    width: 100%;
    padding: 0;
}

/* Contenedor del Dispositivo */
.device-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-dark-rich);
    box-shadow: none;
    margin: 0;
    overflow: hidden;
    padding-top: 28px;
}

/* Estructura para cada sector/imagen */
.image-slice-container {
    position: relative;
    width: 100%;
    display: block;
    line-height: 0;
    /* Evita espacios en blanco debajo de las imágenes */
}

/* Imagen de la Landing */
.landing-image {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
    /* Las interacciones se manejan mediante overlays */
}

/* ==========================================================================
   BOTÓN INTERACTIVO SUPERPUESTO (OVERLAY)
   ========================================================================== */
.cta-overlay-btn {
    position: absolute;
    /* Ubicación exacta basada en porcentaje (adaptable a cualquier escala) */
    bottom: 5.5%;
    left: 9%;
    width: 82%;
    height: 8.2%;

    border-radius: 40px;
    /* Bordes redondeados adaptados al diseño */
    cursor: pointer;
    z-index: 10;
    display: block;
    overflow: hidden;
    text-decoration: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0);
    /* Invisible por defecto */

    /* Transiciones suaves */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 0px rgba(168, 126, 67, 0);
    border: 2px solid rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    /* Quita el destello azul en móvil */
}

/* Estados Interactivos del Botón */
.cta-overlay-btn:hover {
    background-color: rgba(168, 126, 67, 0.15);
    /* Tinte dorado suave al pasar el cursor */
    box-shadow: 0 0 20px var(--gold-glow);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
    /* Pequeña micro-animación de crecimiento */
}

.cta-overlay-btn:active {
    transform: scale(0.98);
    /* Retroalimentación táctil al hacer click/tap */
    background-color: rgba(168, 126, 67, 0.3);
}

/* Destello metálico/reflejo elegante pasando por el botón */
.cta-overlay-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    animation: shineSweep 3.5s infinite ease-in-out;
}

@keyframes shineSweep {
    0% {
        left: -60%;
    }

    25% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

/* Efecto de pulso suave en los bordes para incentivar la acción */
.pulse-glow {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    box-shadow: 0 0 0 0 rgba(168, 126, 67, 0.6);
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 126, 67, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(168, 126, 67, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(168, 126, 67, 0);
    }
}

/* ==========================================================================
   ADAPTABILIDAD PARA PANTALLAS GRANDES (ESCRITORIO / TABLET)
   ========================================================================== */
@media (min-width: 576px) {
    .landing-wrapper {
        padding: 40px 20px;
    }

    /* En escritorio se presenta dentro de un marco de celular premium */
    .device-frame {
        max-width: 480px;
        border-radius: 40px;
        border: 12px solid var(--bezel-color);
        box-shadow:
            0 25px 50px -12px rgba(0, 0, 0, 0.8),
            0 0 0 1px rgba(255, 255, 255, 0.05);
        margin: 0 auto;
        padding-top: 0;
    }
}

/* ==========================================================================
   SECCIÓN DEL CAROUSEL DE RESULTADOS
   ========================================================================== */
.results-carousel-section {
    background-color: var(--bg-dark-rich);
    padding: 30px 0 45px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.carousel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    text-align: center;
    color: var(--gold-accent);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

/* Sombreado a los lados para dar profundidad y ocultar el borde del corte */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark-rich) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark-rich) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-scroll-infinite 22s linear infinite;
}

/* Animación del scroll del carrusel */
@keyframes marquee-scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Tarjeta del Video */
.video-card {
    min-width: 170px;
    width: 170px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(168, 126, 67, 0.2);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.video-card:hover {
    border-color: var(--gold-accent);
    transform: scale(1.02);
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay dentro del video con la reseña */
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12, 8, 6, 0.95) 0%, rgba(12, 8, 6, 0.4) 65%, transparent 100%);
    padding: 12px;
    color: #FFFFFF;
    text-align: left;
}

.video-comment {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    color: #FAF6F0;
}

.video-stars {
    font-size: 0.68rem;
    color: rgba(250, 246, 240, 0.7);
    font-weight: 500;
}

/* Título elegante con tipografía Serif y líneas decorativas estilo imagen */
.carousel-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin: 35px 24px 20px 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.carousel-section-title::before,
.carousel-section-title::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-accent) 50%, transparent);
    flex-grow: 1;
    opacity: 0.55;
}

.recipes-carousel-section {
    background-color: var(--bg-dark-rich);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

#marquee-recipes .marquee-content {
    gap: 6px;
    /* Sin casi espacio entre sí */
    animation-duration: 14s;
    /* Va más rápido (antes 22s) */
}

.recipe-card-img {
    min-width: 170px;
    /* Un poco más grandes */
    width: 170px;
    height: 170px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(168, 126, 67, 0.2);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.recipe-card-img:hover {
    border-color: var(--gold-accent);
    transform: scale(1.04);
}

/* ==========================================================================
   SECCIÓN DE WHATSAPP PURE HTML/CSS (SIN IMAGEN DE FONDO)
   ========================================================================== */
.whatsapp-promo-section {
    background-color: var(--bg-dark-rich);
    padding: 60px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-header {
    text-align: center;
    margin-bottom: 35px;
}

.promo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.highlight-whatsapp {
    color: var(--gold-accent);
}

.promo-subtitle {
    font-size: 0.95rem;
    color: rgba(250, 246, 240, 0.75);
    font-weight: 400;
}

/* --- iPhone Mockup en CSS Puro --- */
.iphone-mockup {
    width: 300px;
    /* Achicado a 300px de ancho */
    height: 521px;
    /* Altura perfecta para escala 3:4 del video con ancho de 300px */
    background-color: #0c0806;
    border: 3.5px solid #3a3a3c;
    /* Metal exterior (Titanio) */
    border-radius: 42px;
    box-shadow:
        0 0 0 1px #8e8e93,
        /* Línea de luz metálica fina */
        0 25px 60px -15px rgba(0, 0, 0, 0.85);
    position: relative;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    /* Bisel negro interior de la pantalla */
    background-color: #000000;
    /* Fondo del bisel */
}

.iphone-bezel {
    width: 100%;
    height: 100%;
    background-color: #0c0806;
    border-radius: 31px;
    /* Curva adaptada a la pantalla */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Isla Dinámica / Notch de iPhone Pro */
.iphone-dynamic-island {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background-color: #000000;
    border-radius: 12px;
    z-index: 10;
}

/* Reflejo de lente de cámara dentro de la Isla Dinámica */
.iphone-dynamic-island::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, #1a233a 10%, #050505 70%);
    border-radius: 50%;
    opacity: 0.6;
}

/* Simulación de navegador Safari superior */
.safari-header {
    height: 64px;
    background-color: #0c0806;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 7px;
    z-index: 8;
}

.safari-status {
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    font-size: 9px;
    color: #ffffff;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    letter-spacing: -0.1px;
}

.status-indicators {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icono de señal móvil CSS */
.safari-signal {
    display: inline-flex;
    align-items: flex-end;
    gap: 1.5px;
    height: 8px;
}

.safari-signal span {
    width: 1.5px;
    background-color: #ffffff;
    border-radius: 0.3px;
    display: block;
}

.safari-signal span:nth-child(1) {
    height: 2px;
}

.safari-signal span:nth-child(2) {
    height: 4px;
}

.safari-signal span:nth-child(3) {
    height: 6px;
}

.safari-signal span:nth-child(4) {
    height: 8px;
    opacity: 0.35;
}

/* Señal parcial */

/* Icono de batería CSS */
.safari-battery {
    width: 16px;
    height: 8.5px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 2.5px;
    padding: 0.8px;
    display: flex;
    position: relative;
}

.safari-battery::after {
    content: '';
    position: absolute;
    right: -2.2px;
    top: 2px;
    width: 1.2px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0 0.8px 0.8px 0;
}

.safari-battery-level {
    width: 75%;
    /* Carga del 75% */
    height: 100%;
    background-color: #ffffff;
    border-radius: 0.8px;
}

.safari-address-bar {
    width: 90%;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.safari-lock-svg {
    width: 8px;
    height: 8px;
    fill: rgba(255, 255, 255, 0.6);
}

.url-text {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.7);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-weight: 400;
}

/* Video de Receta (Tamaño exacto en el medio) */
.mockup-video {
    width: 100%;
    height: 370px;
    /* Proporción 3:4 perfecta para el ancho interno en un teléfono de 300px */
    object-fit: contain;
    display: block;
    background-color: #0c0806;
}

/* Simulación de barra inferior de Safari */
.safari-footer {
    height: 64px;
    background-color: #120c09;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 6px 0;
    z-index: 8;
}

.safari-nav {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.safari-icon-svg {
    width: 15px;
    height: 15px;
    color: var(--gold-accent);
    opacity: 0.95;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.safari-icon-svg:hover {
    opacity: 1;
}

.home-indicator {
    width: 32%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

/* --- Pasos del embudo --- */
.promo-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 0 10px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-icon-circle {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    margin-bottom: 12px;
    background-color: rgba(168, 126, 67, 0.04);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 18px;
    height: 18px;
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.step-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.25;
    opacity: 0.9;
}

.step-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(168, 126, 67, 0.25) 20%, rgba(168, 126, 67, 0.25) 80%, transparent);
    margin: 0 8px;
    flex-shrink: 0;
}

/* Adaptación para pantallas de escritorio (cuando está en el device-frame) */
@media (min-width: 576px) {
    .whatsapp-promo-section {
        padding: 50px 25px;
    }
}

/* ==========================================================================
   SECCIÓN DE CHECKOUT DENTRO DE CÓDIGO (PIXEL PERFECT)
   ========================================================================== */
.checkout-section {
    background-color: var(--bg-dark-rich);
    padding: 50px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mockup de iPhone al inicio de la sección de pago */
.checkout-hero-mockup {
    width: 100%;
    max-width: 440px;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.checkout-mockup-img {
    width: 50%;
    height: auto;
    max-width: 180px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.55));
}

.checkout-logo-container {
    margin: 10px 0 30px 0;
    text-align: center;
}

.checkout-logo {
    width: 210px;
    height: auto;
    display: block;
}

/* Banner de temporizador */
.checkout-timer-banner {
    border: 1px solid var(--gold-accent);
    background-color: rgba(168, 126, 67, 0.03);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 440px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.timer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stopwatch-icon-svg {
    width: 26px;
    height: 26px;
    color: var(--gold-accent);
    flex-shrink: 0;
    animation: timerPulse 2s infinite ease-in-out;
}

@keyframes timerPulse {

    0%,
    100% {
        opacity: 0.85;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.timer-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.timer-tagline {
    color: var(--gold-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

.timer-headline {
    color: var(--gold-accent);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
}

.timer-countdown-box {
    background-color: #E2B274;
    color: #0C0806;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Outfit', monospace;
    letter-spacing: 0.5px;
}

/* --- DISEÑO DE CHECKOUT OPTIMIZADO PARA TRÁFICO FRÍO --- */
.checkout-header-badge {
    background-color: rgba(56, 161, 105, 0.08);
    color: #38A169;
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    border: 1px solid rgba(56, 161, 105, 0.15);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.checkout-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

/* Tarjeta del Resumen del Pedido */
.checkout-order-summary {
    background-color: #120D0B; /* Fondo chocolate oscuro alternativo */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 22px;
    margin-bottom: 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.summary-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #E2B274; /* Dorado Alluse */
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.summary-product-row, 
.summary-discount-row, 
.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    font-family: 'Outfit', sans-serif;
}

.summary-product-row {
    color: rgba(250, 246, 240, 0.9);
}

.product-name {
    font-weight: 500;
}

.product-price {
    font-weight: 600;
}

.summary-discount-row {
    color: #38A169; /* Verde de descuento */
    font-size: 0.82rem;
}

.summary-total-row {
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    padding-top: 14px;
    margin-top: 4px;
    font-size: 1.15rem;
    color: #FFFFFF;
}

.total-label {
    font-weight: 700;
}

.total-value {
    font-weight: 900;
    color: #E2B274;
}

/* Bullets de confianza en el resumen */
.summary-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(250, 246, 240, 0.75);
    line-height: 1.35;
    font-family: 'Outfit', sans-serif;
}

.bullet-icon {
    font-size: 0.95rem;
    color: #E2B274;
    line-height: 1;
}

.old-price-val {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.35);
}

.limited-price-tag {
    font-size: 0.72rem;
    color: rgba(250, 246, 240, 0.45);
    font-weight: 500;
}

/* Estimación de Precio Local Disimulada */
.local-price-estimate {
    font-size: 0.72rem;
    color: rgba(250, 246, 240, 0.45);
    margin-top: 5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    display: none; /* Se muestra dinámicamente */
}

/* Sección de Aclaraciones en Checkout (Bullets, prueba social y advertencia de suscripción) */
.checkout-clarifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0 25px 0;
    width: 100%;
    max-width: 440px;
}

.clarification-box {
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    font-size: 0.86rem;
    line-height: 1.4;
}

/* Caja de detalles (Valoraciones) */
.details-box {
    background-color: #FAF6F0; /* Fondo crema idéntico */
    border: 1px solid #D6CEB2; /* Borde sutil cálido */
    color: #2D2722; /* Letra oscura */
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 10px;
}

.rating-stars .stars {
    color: #C89D66; /* Estrellas doradas */
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.rating-text {
    font-size: 0.82rem;
    color: #4E453E;
    font-family: 'Outfit', sans-serif;
}

.clarification-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.clarification-list li {
    position: relative;
    padding-left: 18px;
    font-family: 'Outfit', sans-serif;
    color: #2D2722;
    font-size: 0.84rem;
}

.clarification-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #2D2722;
    font-size: 1.1rem;
    line-height: 1;
}

/* Alerta de compras (Fondo rosa/salmón con pulso rojo) */
.purchase-alert {
    background-color: #FFF5F5;
    border: 1px solid #FAD1D1;
    color: #7A2828;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

/* Advertencia de suscripción (Fondo verde con pulso verde) */
.subscription-warning {
    background-color: #F4FBF7;
    border: 1px solid #CDEEDD;
    color: #1A5C37;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.alert-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.35;
}

.alert-text.uppercase-text {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

/* Indicador de pulso animado */
.pulse-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.red-pulse {
    background-color: #E53E3E;
}

.red-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #E53E3E;
    animation: pulse-ring-red 1.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    top: 0;
    left: 0;
}

.green-pulse {
    background-color: #38A169;
}

.green-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #38A169;
    animation: pulse-ring-green 1.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    top: 0;
    left: 0;
}

@keyframes pulse-ring-red {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

@keyframes pulse-ring-green {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}


/* Formulario Stripe */
.checkout-form-container {
    width: 100%;
    max-width: 440px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    text-align: left;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.lock-icon-svg {
    width: 15px;
    height: 15px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
}

.form-subtitle {
    font-size: 0.85rem;
    color: rgba(250, 246, 240, 0.6);
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-label {
    font-size: 0.82rem;
    color: rgba(250, 246, 240, 0.85);
    font-weight: 600;
    margin-bottom: 8px;
}

.checkout-input {
    background-color: #060403;
    border: 1px solid #1C1C1E;
    color: #FFFFFF;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.checkout-input:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 8px var(--gold-glow);
    outline: none;
}

/* Container de Tarjeta combinado */
.card-input-container {
    border: 1px solid #1C1C1E;
    border-radius: 8px;
    background-color: #060403;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.card-input-container:focus-within {
    border-color: var(--gold-accent);
    box-shadow: 0 0 8px var(--gold-glow);
}

.card-row {
    display: flex;
    align-items: center;
    padding: 0 14px;
    box-sizing: border-box;
}

.card-row-top {
    border-bottom: 1px solid #1C1C1E;
    height: 44px;
}

.card-row-bottom {
    height: 44px;
    padding: 0;
}

.card-sub-input {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 0.9rem;
    height: 100%;
    width: 100%;
    outline: none;
    font-family: inherit;
}

.card-sub-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.card-brands-row {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: 8px;
}

.card-logo {
    width: 28px;
    height: 18px;
    flex-shrink: 0;
}

.bottom-left {
    border-right: 1px solid #1C1C1E;
    width: 55%;
    padding: 0 14px;
}

.cvc-container {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 14px;
    box-sizing: border-box;
}

.cvc-icon-svg {
    width: 26px;
    height: 18px;
    flex-shrink: 0;
    margin-left: 4px;
}

/* Estilo para los Select de País */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-input {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-arrow svg {
    width: 100%;
    height: 100%;
}

/* Botón Comprar ahora */
.checkout-buy-btn {
    background: linear-gradient(135deg, #E2B274 0%, #A87E43 100%);
    color: #0C0806;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(168, 126, 67, 0.25);
    transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
    margin-top: 25px;
}

.checkout-buy-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 10px 28px rgba(168, 126, 67, 0.4);
}

.checkout-buy-btn:active {
    transform: translateY(1px);
}

.buy-lock-icon {
    width: 15px;
    height: 15px;
    fill: #0C0806;
}

/* Stripe Branding */
.stripe-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(250, 246, 240, 0.4);
    font-size: 0.72rem;
    margin-top: 18px;
    font-weight: 500;
}

.stripe-logo-svg {
    width: 38px;
    height: 15px;
    fill: rgba(250, 246, 240, 0.45);
    vertical-align: middle;
}

/* Divisor inferior */
.checkout-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    width: 100%;
    max-width: 440px;
    margin: 35px 0;
}

/* Trust Badges */
.checkout-trust-badges {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 440px;
    margin-bottom: 30px;
}

.trust-badge-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-badge-icon {
    color: var(--gold-accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-icon svg {
    width: 22px;
    height: 22px;
}

.trust-badge-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.trust-badge-desc {
    font-size: 0.65rem;
    color: rgba(250, 246, 240, 0.5);
    line-height: 1.25;
}

/* Texto de soporte */
.checkout-support-text {
    font-size: 0.72rem;
    color: rgba(250, 246, 240, 0.5);
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
    max-width: 440px;
}

.whatsapp-support-link {
    color: var(--gold-accent);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.whatsapp-support-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .checkout-section {
        padding: 40px 16px;
    }

    .checkout-timer-banner {
        padding: 10px 12px;
    }

    .timer-headline {
        font-size: 0.85rem;
    }

    .timer-countdown-box {
        font-size: 0.95rem;
        padding: 4px 8px;
    }

    .checkout-product-card {
        gap: 12px;
    }

    .product-pouch-container {
        flex: 0 0 80px;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .current-price {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   CHECKOUT V2 — OPTIMIZADO PARA TRÁFICO FRÍO
   ========================================================================== */
.checkout-v2 {
    background-color: #0A0705;
    padding: 55px 20px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid rgba(168, 126, 67, 0.15);
}

/* 1. Mockup */
.v2-mockup {
    margin-bottom: 20px;
}

.v2-mockup-img {
    width: 260px;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
}

/* 2. Título */
.v2-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 8px;
}

.v2-title-highlight {
    color: #E2B274;
}

.v2-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: rgba(250, 246, 240, 0.55);
    text-align: center;
    margin-bottom: 28px;
    font-weight: 400;
}

/* 3. Banner de Oferta */
.v2-offer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 440px;
    border: 1px solid var(--gold-accent);
    background: rgba(168, 126, 67, 0.04);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 22px;
    gap: 10px;
}

.v2-offer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.v2-clock-icon {
    width: 22px;
    height: 22px;
    color: #E2B274;
    flex-shrink: 0;
}

.v2-offer-text {
    display: flex;
    flex-direction: column;
}

.v2-offer-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.62rem;
    color: rgba(226, 178, 116, 0.8);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v2-offer-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.25;
}

.v2-timer-box {
    background-color: #E2B274;
    color: #0C0806;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Outfit', monospace;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* 4. Resumen del Pedido */
.v2-order-card {
    background-color: #120D0B;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    width: 100%;
    max-width: 440px;
    padding: 20px;
    margin-bottom: 22px;
}

.v2-order-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #E2B274;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    color: rgba(250, 246, 240, 0.85);
    padding: 6px 0;
}

.v2-old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.35);
}

.v2-discount-row {
    color: #38A169;
    font-size: 0.8rem;
}

.v2-total-row {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 14px;
    margin-top: 8px;
    font-size: 1.12rem;
    color: #FFFFFF;
    font-weight: 700;
}

.v2-total-price {
    font-weight: 900;
    color: #E2B274;
    font-size: 1.2rem;
}

.v2-total-price small {
    font-size: 0.72rem;
    font-weight: 700;
}

.v2-local-price {
    font-size: 0.7rem;
    color: rgba(250, 246, 240, 0.4);
    margin-top: 8px;
    font-family: 'Outfit', sans-serif;
    display: none;
}

/* 5. Bullets de Confianza */
.v2-trust-bullets {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.v2-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: rgba(250, 246, 240, 0.8);
    line-height: 1.4;
}

.v2-bullet-icon {
    font-size: 1rem;
    line-height: 1.2;
    flex-shrink: 0;
}

/* 6. Formulario de Pago */
.v2-form-container {
    width: 100%;
    max-width: 440px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    text-align: left;
}

.v2-form-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.v2-lock-icon {
    width: 16px;
    height: 16px;
    color: #E2B274;
}

.v2-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.v2-form-subtitle {
    font-size: 0.72rem;
    color: rgba(250, 246, 240, 0.45);
    margin-bottom: 22px;
    font-family: 'Outfit', sans-serif;
}

.v2-input-group {
    margin-bottom: 16px;
}

.v2-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(250, 246, 240, 0.8);
    margin-bottom: 6px;
}

.v2-input,
.v2-select {
    width: 100%;
    padding: 12px 14px;
    background-color: #1A1412;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #FAF6F0;
    font-size: 0.88rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.v2-input::placeholder {
    color: rgba(250, 246, 240, 0.3);
}

.v2-input:focus,
.v2-select:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.v2-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23A87E43' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px;
}

/* Tarjeta agrupada */
.v2-card-box {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.v2-card-row-top,
.v2-card-row-bottom {
    display: flex;
}

.v2-card-row-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-card-input {
    flex: 1;
    padding: 12px 14px;
    background-color: #1A1412;
    border: none;
    color: #FAF6F0;
    font-size: 0.88rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.v2-card-input::placeholder {
    color: rgba(250, 246, 240, 0.3);
}

.v2-card-input:focus {
    background-color: #1F1714;
}

.v2-half {
    width: 50%;
}

.v2-half + .v2-half {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-card-brands {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 10px;
    background-color: #1A1412;
}

.v2-brand {
    width: 28px;
    height: 18px;
}

/* Botón de pago */
.v2-buy-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #C89D66 0%, #A87E43 100%);
    color: #0C0806;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(168, 126, 67, 0.3);
    margin-top: 6px;
}

.v2-buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(168, 126, 67, 0.45);
}

.v2-buy-btn:active {
    transform: translateY(0);
}

.v2-btn-lock {
    width: 16px;
    height: 16px;
}

.v2-stripe-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.68rem;
    color: rgba(250, 246, 240, 0.35);
    font-family: 'Outfit', sans-serif;
}

.v2-stripe-logo {
    height: 14px;
    width: auto;
    opacity: 0.4;
}

/* 7. Trust Badges */
.v2-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 440px;
    margin-top: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.v2-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    min-width: 120px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: rgba(250, 246, 240, 0.7);
    line-height: 1.3;
}

.v2-badge-item strong {
    color: #FFFFFF;
    font-size: 0.74rem;
}

.v2-badge-item small {
    color: rgba(250, 246, 240, 0.45);
    font-size: 0.62rem;
}

.v2-badge-svg {
    width: 20px;
    height: 20px;
    color: #E2B274;
    flex-shrink: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 8. WhatsApp */
.v2-support {
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    color: rgba(250, 246, 240, 0.5);
    text-align: center;
    width: 100%;
    max-width: 440px;
}

.v2-wa-link {
    color: var(--gold-accent);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.v2-wa-link:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

/* Responsive V2 */
@media (max-width: 480px) {
    .checkout-v2 {
        padding: 40px 16px 30px;
    }

    .v2-title {
        font-size: 1.4rem;
    }

    .v2-offer-banner {
        padding: 10px 12px;
    }

    .v2-offer-headline {
        font-size: 0.82rem;
    }

    .v2-timer-box {
        font-size: 0.95rem;
        padding: 5px 10px;
    }

    .v2-badges {
        gap: 12px;
    }

    .v2-mockup-img {
        width: 220px;
    }
}

/* Announcement Ticker Bar */
.announcement-ticker-bar {
    background: linear-gradient(90deg, #D9A752 0%, #f7dc9b 50%, #D9A752 100%);
    color: #000000;
    overflow: hidden;
    width: 100%;
    height: 28px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

@media (min-width: 576px) {
    .announcement-ticker-bar {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        box-shadow: none;
        border-top-left-radius: 28px; /* Match internal bezel radius */
        border-top-right-radius: 28px;
    }
}

.ticker-wrap {
    display: flex;
    width: max-content;
    animation: ticker-scroll 14s linear infinite;
}

.ticker-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
}

.ticker-item span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}