/* --- Estilos Globales y Mobile First --- */
:root {
    --color-primary: #00BFA5; /* Verde azulado moderno */
    --color-secondary: #FF9800; /* Naranja para acentos de urgencia */
    --color-background: #FFFFFF;
    --color-soft-gray: #F4F7F6;
    --color-trust-text: #001f3f; /* Azul Marino */
    --color-text: #333333;
    --font-main: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevenir scroll horizontal por animaciones */
}

.container {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

img, video, gif {
    max-width: 100%;
    height: auto;
}

/* --- 1. Header Fijo --- */
.top-bar {
    background-color: var(--color-trust-text);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9em;
    font-weight: bold;
    position: relative; /* CAMBIO: Ya no es fija, se queda arriba */
    width: 100%;
    z-index: 1000;
}

#dynamic-announcement {
    transition: opacity 0.5s ease-in-out;
    display: inline-block;
}

/* --- Barra de Anuncios Dinámica (Scarcity) --- */
.announcement-bar-container {
    background-color: #000;
    color: #fff;
    overflow: hidden;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.announcement-message {
    position: absolute;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slide-up-fade 9s infinite;
    opacity: 0;
}
.announcement-message:nth-child(1) { animation-delay: 0s; }
.announcement-message:nth-child(2) { animation-delay: 3s; }
.announcement-message:nth-child(3) { animation-delay: 6s; }

@keyframes slide-up-fade {
    0% { transform: translateY(20px); opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    30% { transform: translateY(0); opacity: 1; }
    40% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(-20px); opacity: 0; }
}

/* --- 2. Hero Section --- */
.hero {
    text-align: center;
    padding: 20px 0;
}

.hero h1 {
    font-size: 2.2em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero .product-name {
    font-size: 1.4em;
    color: var(--color-primary);
    margin: 5px 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- NUEVO: Estrellas de Alta Autoridad --- */
.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    gap: 5px;
}
.rating-container .stars {
    color: #FFC107;
    font-size: 1.6em; /* Más grandes */
    letter-spacing: 3px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.15);
    line-height: 1;
}
.rating-container .rating-text {
    font-size: 0.95em;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.rating-score {
    font-weight: 900;
    color: var(--color-trust-text);
    background: #e3f2fd;
    padding: 2px 6px;
    border-radius: 4px;
}
.verified-badge { font-size: 1.1em; }

/* --- NUEVO: Precio de Alta Conversión --- */
.hero-price-wrapper {
    margin: 15px 0 25px 0;
    text-align: center;
    font-family: var(--font-main);
}
.price-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: -8px; /* Acerca el precio anterior al precio nuevo */
}
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5em;
    font-weight: 500;
}
.offer-badge-dynamic {
    background: #FF3D00; /* Rojo/Naranja Vibrante */
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 61, 0, 0.4);
    animation: pulse-badge 1.5s infinite;
    position: relative;
    top: -2px;
}
.main-price {
    color: var(--color-primary); /* Verde Teal de la marca */
    font-size: 4.2em; /* GIGANTE */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.05);
}

@keyframes pulse-badge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(255, 61, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
}

/* Beneficios Hero */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.hero-benefits li {
    background: #E0F2F1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    color: #00695C;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Barra Características */
.features-bar {
    background: var(--color-trust-text);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 20px auto;
    display: inline-flex;
    gap: 15px;
    font-weight: bold;
    font-size: 0.85em;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,31,63,0.2);
}
.features-bar .separator {
    color: var(--color-primary);
    font-size: 1.2em;
}

.cta-button {
    background: linear-gradient(to bottom, var(--color-secondary), #F57C00);
    color: white;
    border: none;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.cta-container {
    text-align: center;
    margin: 50px 0;
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine-effect 3s infinite;
}

.payment-logos-hero {
    margin-top: 15px;
    opacity: 0.9;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.payment-logos-hero img {
    max-height: 25px;
}

.payment-logos-checkout {
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
}

.payment-logos-checkout img {
    max-height: 20px;
    opacity: 0.7;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 152, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); }
}

@keyframes shine-effect {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* --- Social Proof (UGC) --- */
.ugc-gallery {
    text-align: center;
    margin: 60px -20px 40px -20px;
    padding: 40px 20px;
    background-color: var(--color-soft-gray);
}
.ugc-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    margin-bottom: 30px;
}
.ugc-item:last-child {
    margin-bottom: 0;
}
.ugc-item img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}
.ugc-item h3 {
    font-size: 1.3em;
    color: var(--color-trust-text);
    margin-bottom: 5px;
}
.ugc-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* --- 3. Problema vs Solución --- */
.problem-solution {
    margin: 60px -20px;
    padding: 50px 20px;
    background-color: var(--color-soft-gray);
}
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px; /* Espacio entre filas */
}
/* Contenedor responsivo para la tabla */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
    border: none;
    vertical-align: middle;
}
.comparison-table th {
    color: #777;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8em;
    padding-bottom: 15px;
}
.comparison-table thead .our-product {
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
}
.comparison-table tbody tr {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    border-radius: 15px;
    overflow: hidden; /* Clave para que el border-radius funcione en las celdas */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.comparison-table tbody tr.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.comparison-table tbody td:first-child {
    font-weight: bold;
    color: var(--color-trust-text);
    text-align: left;
}
.comparison-table .our-product {
    background-color: #E0F2F1;
    font-weight: bold;
    color: #00695C;
}

/* --- Sección #1 en Colombia (Comparativa Visual) --- */
.number-one-section {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 40px -20px;
}
.number-one-title {
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFC107; /* Dorado */
}
.comparison-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}
.comp-card {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.comp-card.winner {
    border: 4px solid #2ECC71;
    transform: scale(1.05);
    position: relative;
}
.comp-card.winner::after {
    content: '🏆 GANADOR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ECC71;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}
.comp-card h3 { margin-top: 0; font-weight: 900; }
.comp-card ul { list-style: none; padding: 0; text-align: left; }
.comp-card li { margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.comp-card li:last-child { border-bottom: none; }

/* --- Sección Cronograma 60 Días --- */
.timeline-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin: 40px auto 0 auto;
}
@media (min-width: 768px) {
    .timeline-container { flex-direction: row; }
}
.timeline-step {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border-top: 5px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.timeline-step:hover { transform: translateY(-5px); }
.step-week {
    background: var(--color-trust-text);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9em;
}
.step-title { font-weight: 900; font-size: 1.1em; margin-bottom: 10px; display: block; color: var(--color-primary); }

/* --- 5. Sección de Ofertas --- */
#ofertas {
    padding-top: 60px; /* Ancla */
    margin-top: -60px;
}
.offers-section {
    background-color: var(--color-soft-gray);
    padding: 30px 20px;
    margin: 40px -20px 0 -20px; /* Extender al borde */
}
.countdown-timer {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: var(--color-secondary);
    color: white;
    padding: 10px;
    border-radius: 5px;
}
.offers-section h2 { text-align: center; }
.offer-card {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .offer-card:not(.selected):hover {
        transform: scale(1.02);
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
}

.offer-card.selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.offer-radio {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.offer-card.selected .offer-radio {
    border-color: var(--color-primary);
}

.offer-card.selected .offer-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.2s ease;
}

.offer-card .offer-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.offer-image {
    flex-shrink: 0;
    width: 80px;
}

.offer-details {
    flex-grow: 1;
}

.offer-card .tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}
.offer-card.selected .tag {
    background-color: var(--color-primary);
}
.offer-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
}
.offer-card p {
    margin: 0;
}
.offer-card .offer-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 8px;
}
.offer-card .price { font-size: 1.5em; font-weight: 900; color: #333; display: inline-block; }
.offer-card .old-price { text-decoration: line-through; color: #999; font-size: 0.95em; margin-right: 8px; font-weight: normal; display: inline-block; }
.offer-card .save { color: var(--color-primary); font-weight: bold; margin-top: 5px; font-size: 0.9em; }
.offers-social-proof {
    text-align: center;
    margin-top: 25px;
    font-weight: bold;
    color: var(--color-trust-text);
}

/* --- NUEVO: Contador de Stock --- */
.stock-display {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
    border: 1px dashed #ef5350;
    font-size: 1.1em;
    transition: all 0.3s ease;
}
.pulsing-number {
    font-size: 1.3em;
    animation: pulse-text 1s infinite;
}
@keyframes pulse-text {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- 6. Formulario de Pedido --- */
.checkout-form {
    margin-top: 50px;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.checkout-order-summary {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease-in-out;
}
.summary-image {
    width: 60px;
    flex-shrink: 0;
}
.summary-details h4 {
    margin: 0 0 5px 0;
    color: var(--color-trust-text);
}
.summary-details p {
    margin: 0;
    font-weight: bold;
    color: var(--color-primary);
}
.checkout-header {
    background: #f9f9f9;
    padding: 15px;
    margin: -30px -20px 25px -20px;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.form-field {
    margin-bottom: 15px;
}
.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.autocomplete-container {
    position: relative;
}
.autocomplete-suggestions {
    position: absolute;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    max-height: 150px;
    overflow-y: auto;
}
.suggestion-item {
    padding: 10px;
    cursor: pointer;
}
.suggestion-item:hover, .suggestion-item.active {
    background-color: #f1f1f1;
}
.form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #fcfcfc;
    transition: all 0.3s;
}
.form-field select {
    width: 100%;
    padding: 12px;
    padding-right: 40px; /* Espacio para la flecha */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #fcfcfc;
    transition: all 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23888%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: .65em auto;
}
.form-field select:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.7;
}
.form-field input:focus, .form-field select:focus {
    border-color: var(--color-primary);
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}
.form-field input.error, .form-field select.error {
    border-color: #c62828;
    background-color: #ffebee;
}
.form-error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
    border: 1px solid #ef5350;
}
.whatsapp-instruction {
    background-color: #e3f2fd;
    border-left: 5px solid #2196F3;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
}
.whatsapp-instruction p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.5;
    color: #333;
}
.whatsapp-instruction p strong {
    color: #1e88e5;
}
.submit-button.shake {
    animation: shake-horizontal 0.8s cubic-bezier(.455,.03,.515,.955) both;
}
.submit-button {
    background-color: var(--color-primary);
    color: white;
    width: 100%;
    padding: 18px;
    font-size: 1.3em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    animation: attention-shake 3s ease-in-out infinite 1s;
}

@keyframes shake-horizontal {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70% { transform: translateX(-8px); }
  20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.payment-options {
    margin-bottom: 20px;
    text-align: left;
}
.payment-option {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* --- Prueba Social --- */
.social-proof { margin: 40px 0; }
.social-proof h2 { text-align: center; }
.testimonial-chat {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    max-width: 80%;
}
.testimonial-chat.user {
    background: #e3f2fd; /* Azul claro para respuestas */
    margin-left: auto;
}

/* --- 7. FAQ --- */
.faq { margin-top: 50px; }
.faq h2 { text-align: center; }
.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.faq-item[open] {
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    border-color: var(--color-primary);
}
.faq-item summary {
    padding: 18px;
    font-weight: 700;
    cursor: pointer;
    list-style: none; /* Ocultar flecha por defecto */
    position: relative;
    text-align: center; /* CENTRADO CORRECTO */
    background-color: #f8f9fa;
    color: var(--color-trust-text);
    font-size: 1.05em;
}
.faq-item summary::-webkit-details-marker { display: none; } /* Chrome */
.faq-item p {
    padding: 20px;
    margin: 0;
    text-align: center; /* CENTRADO CORRECTO */
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* --- Footer y Garantía --- */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    margin-top: 40px;
}
.footer .guarantee-seal {
    max-width: 150px;
    margin-bottom: 15px;
}

/* --- Botón Flotante de WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.urgency-banner {
    background-color: #FFF3E0;
    color: #E65100;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin: 10px auto;
    display: inline-block;
    font-size: 0.9em;
}

/* Barra Estratégica (Stock/Seguridad) */
.strategic-bar {
    background: #E3F2FD;
    color: #1565C0;
    text-align: center;
    padding: 8px;
    font-size: 0.85em;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #BBDEFB;
}

/* --- Order Bump (Aumento de Ticket) --- */
.order-bump {
    background-color: #FFF8E1; /* Fondo amarillo/naranja suave */
    border: 2px dashed var(--color-secondary);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    animation: bump-pulse 2s infinite; /* ANIMACIÓN DE ALTA CONVERSIÓN */
}
@keyframes bump-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4); border-color: var(--color-secondary); }
    70% { box-shadow: 0 0 0 10px rgba(255, 152, 0, 0); border-color: #ffb74d; }
    100% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); border-color: var(--color-secondary); }
}
.bump-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.bump-header input {
    width: auto;
    margin-right: 10px;
    transform: scale(1.5); /* Checkbox más grande */
    cursor: pointer;
}
.bump-label {
    font-weight: 900;
    color: #E65100;
    font-size: 1.05em;
    cursor: pointer;
}
.bump-text {
    font-size: 0.9em;
    margin: 0;
    color: #333;
    padding-left: 28px; /* Alinear con el texto del header */
}

/* --- Notificación de Prueba Social (Toast) --- */
.notification-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    z-index: 999;
    transform: translateY(150%); /* Oculto inicialmente */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
    border-left: 4px solid var(--color-primary);
}
.notification-toast.show {
    transform: translateY(0);
}
.toast-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 12px;
}
.toast-text {
    font-size: 0.85em;
    line-height: 1.3;
}
.toast-name { font-weight: bold; color: var(--color-trust-text); }
.toast-action { color: var(--color-primary); font-weight: bold; }

/* --- ESTRATEGIA #2: VSL Video Styles --- */
.hero-video-wrapper {
    width: 100%;
    max-width: 500px; /* Un poco más ancho para video */
    margin: 0 auto 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    border: 1px solid rgba(0,0,0,0.05);
    background: white;
}

.hero-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Mini FAQ Checkout --- */
.checkout-faq-mini {
    /* Estilos base, ajustes específicos inline en HTML para la versión Hero */
    text-align: left;
}
/* Ajuste específico para el FAQ dentro del Hero */
.hero .checkout-faq-mini {
    margin-top: 20px;
    border-top: none;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.checkout-faq-mini details {
    background: #fcfcfc;
    margin-bottom: 8px;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.checkout-faq-mini details[open] {
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.checkout-faq-mini summary {
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Ocultar flecha nativa */
    color: var(--color-trust-text);
    outline: none;
}
.checkout-faq-mini summary::-webkit-details-marker { display: none; }
.checkout-faq-mini p {
    font-size: 0.85em;
    margin: 8px 0 0 0;
    color: #555;
    line-height: 1.4;
    padding-left: 5px;
}

.faq-main-title {
    font-size: 0.9em;
    margin: 10px 0;
    text-align: center;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-title-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.2em;
    animation: shield-pulse 2.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes shield-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* --- ESTRATEGIA #3: UGC Photo Reviews --- */
.ugc-photo-reviews {
    margin: 40px 0;
    padding: 40px 0;
    background-color: #e3f2fd; /* Fondo azul claro para confianza */
}
.ugc-photo-reviews h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-trust-text);
}
.reviews-grid {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
}
.review-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 0 0 85%;
    scroll-snap-align: start;
    max-width: 350px;
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.reviews-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar {
    display: none;
}
.carousel-btn {
    display: none;
}
@media (min-width: 768px) {
    .carousel-btn {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid #ddd;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        line-height: 45px;
        text-align: center;
        color: #555;
    }
    .carousel-btn.prev { left: -20px; }
    .carousel-btn.next { right: -20px; }
}
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.review-name { display: block; font-weight: bold; color: #333; }
.review-stars { font-size: 0.9em; margin-top: 4px; }
.review-text { font-size: 0.95em; color: #555; margin-bottom: 15px; font-style: italic; }
.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.review-verified {
    font-size: 0.8em;
    color: var(--color-primary);
    font-weight: bold;
    display: block;
    order: -1;
    background: #E0F2F1;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 5px;
}
.review-photo-proof {
    width: 100%;
    border-radius: 10px;
    max-height: 350px; /* Límite de altura */
    object-fit: cover; /* Rellena el espacio de forma atractiva */
    background-color: #f8f9fa;
    margin-top: 15px;
}

/* --- NUEVO: Barra de Anuncios de Alta Conversión --- */
.high-conversion-bar {
    background-color: #FFEB3B; /* Amarillo Alerta */
    color: #000;
    text-align: center;
    padding: 12px 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.95em;
    border-top: 2px solid #FBC02D;
    border-bottom: 2px solid #FBC02D;
    margin: 0 0 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
    border-radius: 8px;
}
.high-conversion-bar.animate-flash {
    animation: flash-attention 0.7s 3; /* Animación que se ejecuta 3 veces */
}

@keyframes flash-attention {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        background-color: #fff;
    }
}

/* --- NUEVO: Sticky TOP CTA (Barra Superior Flotante) --- */
.sticky-top-cta {
    position: fixed;
    top: 0; /* FIJADO ARRIBA */
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px 20px;
    box-sizing: border-box;
    z-index: 10000; /* Z-index muy alto para estar sobre todo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-100%); /* Oculto arriba */
    transition: transform 0.3s ease-in-out;
    border-bottom: 3px solid var(--color-primary);
}
.sticky-top-cta.visible {
    transform: translateY(0); /* Mostrar */
}
.cta-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.cta-offer-text {
    color: var(--color-trust-text);
    font-weight: 900;
    font-size: 0.9em;
}
.cta-timer-text {
    color: #e74c3c;
    font-size: 1.1em;
    font-weight: bold;
}
.cta-btn-pulse {
    background: var(--color-secondary);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95em;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.4);
    white-space: nowrap;
    animation: btn-shake 3s infinite; /* EFECTO DE SACUDIDA */
}
@keyframes btn-shake {
    0%, 90%, 100% { transform: translateX(0); }
    91%, 93%, 95%, 97% { transform: translateX(-3px) rotate(-2deg); }
    92%, 94%, 96%, 98% { transform: translateX(3px) rotate(2deg); }
}

/* --- NUEVO: Estimación de Entrega (Hero) --- */
.delivery-estimate {
    background: #E0F2F1;
    color: #00695C;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    margin: 10px auto;
    display: inline-block;
    font-size: 0.95em;
    border: 1px solid #B2DFDB;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.pulse-green {
    color: var(--color-primary);
    animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* --- NUEVO: Sección de Confianza y Logística --- */
.trust-logistics {
    margin: 40px auto;
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.logistics-partners h3, .trust-badges h3 {
    color: var(--color-trust-text);
    font-size: 1.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.partners-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.tracking-note {
    font-size: 0.85em;
    color: #555;
    max-width: 500px;
    margin: -10px auto 20px auto;
}
.partner-logo {
    background: #f4f4f4;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    color: #555;
    font-size: 0.9em;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: all 0.2s ease;
}
.partner-logo:hover {
    background: #e9e9e9;
    border-color: #ccc;
    transform: translateY(-2px);
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.badge-item { display: flex; align-items: center; justify-content: center; }
.badge-img {
    max-height: 50px;
    width: auto;
    opacity: 1;
}

/* --- ESTILOS PARA EXIT INTENT POPUP (Movido desde JS) --- */
.exit-intent-hidden { display: none !important; }
#exit-intent-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 20000; /* Z-index SUPERIOR para tapar sticky bar y whatsapp */
    display: flex; justify-content: center; align-items: center;
    animation: fadeIn 0.3s ease-out;
}
#exit-intent-popup {
    background: white; padding: 30px; border-radius: 10px; text-align: center;
    max-width: 500px; width: 90%; position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease-out;
}
#exit-intent-popup h2 { font-size: 2em; color: #333; margin-bottom: 15px; }
#exit-intent-popup p { font-size: 1.1em; color: #555; margin-bottom: 25px; }
#exit-intent-close {
    position: absolute; top: 10px; right: 15px; background: none; border: none;
    font-size: 2em; cursor: pointer; color: #888;
}
#exit-intent-cta { display: inline-block; text-decoration: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- Sección de Garantía y Confianza --- */
.guarantee-section {
    background-color: #F4F7F6;
    padding: 40px 20px;
    margin-top: 40px;
}
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.guarantee-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.guarantee-icon { font-size: 2.5em; margin-bottom: 15px; display: block; }
.guarantee-item h3 { color: var(--color-trust-text); margin: 0 0 10px 0; }
.guarantee-item p { font-size: 0.9em; color: #666; margin: 0; }

/* --- Sobre Nosotros --- */
.about-us-section {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    padding: 0 20px;
}
.invima-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    border: 1px solid #c8e6c9;
}

/* --- NUEVO: Sección de Resultados de la Comunidad (Estadísticas) --- */
.wellfresh-results {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.results-container {
    max-width: 600px;
    margin: 0 auto;
}
.results-title {
    font-size: 2em;
    color: var(--color-trust-text);
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.results-title .highlight {
    color: var(--color-primary); /* Verde del tema */
}
.results-subtitle {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 40px;
}
.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    text-align: left;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
/* Círculos de Progreso */
.circle-chart {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eee; /* Fondo base antes de animar */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
}
.circle-chart::after {
    content: "";
    position: absolute;
    width: 66px;
    height: 66px;
    background: white; /* Centro blanco para crear el anillo */
    border-radius: 50%;
}
.percent-text {
    position: relative;
    z-index: 1;
    font-weight: 900;
    color: var(--color-primary);
    font-size: 1.4em;
}
.stat-description {
    font-size: 1em;
    color: #444;
    line-height: 1.4;
    margin: 0;
}
.stat-description strong {
    color: var(--color-trust-text);
}
.results-footer {
    font-size: 0.85em;
    color: #999;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-style: italic;
}