/* --- Variables de Marca --- */
:root {
    --primary-blue: #007bff;
    --whatsapp-green: #25d366;
    --text-dark: #333;
    --text-muted: #555;
    --light-bg: #f8f9fa;
    --red-accent: #ff4d4d;
    --border-color: #e0e0e0;
}

/* --- Estilos Globales --- */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.container { 
    max-width: 1000px; 
    margin: auto; 
}

/* --- Header --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid var(--border-color);
}

.logo { font-weight: bold; font-size: 1.2rem; }
.logo span { color: #28a745; }

/* --- Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 2px 0;
}

.badge {
    background: #fff0f0;
    color: var(--red-accent);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
}

h1 { font-size: 2.5rem; margin: 10px 0; }
h1 span { color: var(--primary-blue); }

.pricing { 
    margin: 20px 0; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.old-price { text-decoration: line-through; color: #999; font-size: 1.2rem; }
.current-price { font-size: 2rem; font-weight: bold; }
.discount-tag { 
    background: var(--red-accent); 
    color: white; 
    padding: 2px 8px; 
    border-radius: 4px; 
}

/* --- Botones de Acción --- */
.cta-buttons { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    margin-top: 20px; 
}

.btn-whatsapp, .btn-buy {
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: opacity 0.2s;
}

.btn-whatsapp { background: var(--whatsapp-green); }
.btn-buy { background: var(--primary-blue); }
.btn-whatsapp:hover, .btn-buy:hover { opacity: 0.9; }

/* --- Sección del Contador (Timer) --- */
.timer-section {
    border-radius: 12px;
    padding: 5px;
    margin: 15px 0;
}

.timer-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.countdown-display {
    background: var(--red-accent);
    color: white;
    padding: 5px 5px;
    border-radius: 20px;
    text-align: center;
}

#timer { font-size: 2rem; font-weight: bold; display: block; }

.stock-bar-container {
    background: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    margin: 10px 0;
    width: 100%;
}

.stock-bar { background: var(--whatsapp-green); height: 100%; border-radius: 5px; }

/* --- Tarjetas de Beneficios (Trust Badges) --- */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badge-item {
    padding: 2px 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--border-color);
}

.badge-item:last-child { border-right: none; }

.badge-item i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: -5px;
}

.badge-item p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.badge-item strong {
    color: #000;
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
}

/* --- Responsividad --- */
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; }
    .cta-buttons { grid-template-columns: 1fr; }

    .trust-badges { grid-template-columns: repeat(2, 1fr); }
    .badge-item:nth-child(2) { border-right: none; }
    .badge-item:nth-child(1), .badge-item:nth-child(2) { 
        border-bottom: 1px solid var(--border-color); 
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap');

.pricing-pro {
    font-family: 'Inter', sans-serif;
    margin: 25px 0;
    padding: 10px 0;
}

/* Fila de Precios */
.price-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.price-old {
    color: #888;
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 400;
}

.price-current {
    color: #000;
    font-size: 2.8rem; /* Impacto visual máximo */
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.discount-sticker {
    background: #4488ef; /* Rojo vibrante de venta */
    color: #fff;
    padding: 0px 5px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
}

/* Banner de Envío */
.shipping-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f0fdf4; /* Verde muy sutil de confianza */
    border: 1px dashed #22c55e;
    padding: 10px 15px;
    border-radius: 8px;
    width: fit-content;
}

.icon-delivery {
    font-size: 1.2rem;
}

.shipping-promo p {
    margin: 0;
    color: #15803d; /* Verde bosque para legibilidad */
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.highlight-city {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Ajuste para móviles */
@media (max-width: 480px) {
    .price-current {
        font-size: 2.2rem;
    }
    .price-main {
        gap: 10px;
    }
}
/* Ocultamos el emoji original del HTML */
.icon-delivery {
    font-size: 0; 
    display: inline-block;
}

/* Inyectamos el icono pro de FontAwesome desde el CSS */
.icon-delivery::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f48b"; /* Código del icono de camión rápido */
    font-size: 1.4rem; /* Tamaño proporcional al texto */
    color: #15803d; /* Mismo verde profesional del texto para mantener armonía */
    margin-right: -2px;
}


/* Estilo del Reloj Elegante */

.timer-icon {
    width: 65px; /* Aumentado para mayor visibilidad */
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timer-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.2));
}


/* --- Galería de Miniaturas --- */
.galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.galeria img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Cuadradas perfectas */
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Efecto al pasar el mouse */
.galeria img:hover {
    transform: translateY(-3px);
    border-color: #007bff; /* El azul de tu marca */
    box-shadow: 0 5px 15px rgba(0,123,255,0.2);
}

/* --- Modal (Pop-up) Refinado --- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Fondo oscuro elegante */
    backdrop-filter: blur(5px); /* Efecto de desenfoque al fondo */
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    animation: zoomIn 0.3s ease forwards;
}

/* Botón de cerrar elegante */
.cerrar {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 200; /* Más delgado es más elegante */
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.cerrar:hover {
    color: #ff4d4d;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Ajuste para celulares */
@media (max-width: 480px) {
    .galeria { gap: 8px; }
    .cerrar { top: 15px; right: 25px; font-size: 40px; }
}

/* --- Tipografía y Ajustes Hero --- */
h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 15px; }
h1 span { color: #e8831a; }
.hero-subtitle { font-size: 1.1rem; color: #555; margin-bottom: 25px; }

/* Lista de beneficios con iconos verdes */
.features-list { list-style: none; padding: 0; margin-bottom: 30px; }
.features-list li { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 12px; 
    font-weight: 500;
}
.features-list li i { color: #22c55e; font-size: 1.2rem; }

/* --- Tarjeta de Compra Estilo Contendencia --- */
.purchase-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 550px;
}

.shipping-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px dashed #22c55e;
    padding: 8px 12px;
    border-radius: 8px;
    width: fit-content;
    margin-top: 10px;
}

.shipping-badge p { margin: 0; color: #15803d; font-weight: 700; font-size: 0.85rem; }

/* --- Galería y Modal --- */


.galeria img {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.galeria img:hover {
    border-color: #1a73e8;
    transform: translateY(-3px);
}

/* Responsividad Mejorada */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero { grid-template-columns: 1fr; }
    .purchase-card { margin: 0 auto; }
}

/* Contenedor principal estilo Tarjeta */
.purchase-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra suave para profundidad */
    max-width: 550px;
    margin-top: 20px;
}

/* Alineación de Precios */
.price-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.price-current {
    font-size: 3rem; /* Tamaño extra grande como en la referencia */
    font-weight: 800;
    color: #000;
    line-height: 1;
}

/* Badge de Envío */
.shipping-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f0fdf4;
    border: 1px dashed #22c55e;
    padding: 10px 15px;
    border-radius: 8px;
    width: fit-content;
    margin-bottom: 20px;
}

/* Botones en Grilla */
.cta-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-whatsapp { background: #22c55e; }
.btn-buy { background: #1a73e8; }

.btn-whatsapp, .btn-buy {
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 800;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-whatsapp:hover, .btn-buy:hover {
    transform: translateY(-2px);
}

/* Texto de confianza inferior */
.trust-text {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.shipping-promo.small-version {
    background-color: #f0fdf4; /* Verde muy sutil */
    border: 1px dashed #22c55e; /* Borde punteado profesional */
    padding: 2px 2px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: auto; /* Empuja el elemento a la derecha */
    width: fit-content;
}

.shipping-promo.small-version p {
    font-size: 0.35rem; /* Tamaño reducido y discreto */
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    color: #15803d;
    text-transform: uppercase;
}

/* Icono de camión profesional */
.small-version .icon-delivery::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f48b"; /* Icono de camión de FontAwesome */
    font-size: 1rem;
    color: #15803d;
}
/* --- Estilos Base y Tipografía (Inter o similar) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap');

.como-pedir {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #fcfcfc; /* Fondo gris casi blanco muy limpio */
    padding: 15px 20px;
    color: #333;
}

.como-pedir-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Encabezado --- */
.como-pedir-header {
    text-align: center;
    margin-bottom: -20px;
}

.como-pedir-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a; /* Negro muy oscuro profesional */
    margin: -20 0 3px 0;
}

.como-pedir-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* --- Wrapper de Pasos y Flechas --- */
.pasos-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px; /* Espacio mínimo para flechas */
}

/* --- Tarjeta de Paso Individual --- */
.paso-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    flex: 1; /* Las 3 tarjetas ocupan el mismo ancho */
    min-height: 380px; /* Asegura altura consistente */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Sombra suave */
}

/* Número Círculo Azul */
.paso-numero {
    background-color: #1a73e8; /* Azul corporativo Google/Facebook */
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Títulos y Párrafos */
.paso-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.paso-card h3 span {
    color: #22c55e; /* Verde WhatsApp */
}

.paso-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

/* --- Área de Iconos (Parte inferior) --- */
.paso-icon {
    margin-top: auto; /* Empuja el icono al fondo */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Icono Balanza y Repartidor (Vectorial Profesional) */
.paso-icon i {
    font-size: 80px; /* Iconos grandes */
    color: #f0f0f0; /* Gris muy claro para fondo de icono */
}

/* Ajustes específicos para los iconos */
.paso-icon .fa-scale-balanced { color: #fcc2d7; } /* Balanza Rosa suave */
.paso-icon.icon-repartidor i { color: #8ecae6; } /* Color azul suave repartidor */

/* Icono de WhatsApp (Paso 2) */
.ws-logo-wrapper {
    background-color: #f6fcf7; /* Fondo verde muy suave */
    border: 1px solid #d9f2e0;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-icon-puro {
    font-size: 60px !important;
    color: #22c55e !important;
}

/* --- Flechas Conectoras --- */
.flecha-conector {
    color: #1a73e8; /* Azul */
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

/* --- Adaptación para Celulares (Móvil) --- */
@media (max-width: 768px) {
    .como-pedir-header h2 { font-size: 1.8rem; }
    
    .pasos-wrapper {
        flex-direction: column; /* Apilar tarjetas verticalmente */
        gap: 30px;
    }

    .paso-card {
        width: 100%;
        min-height: auto;
        padding: 30px 20px;
    }

    .flecha-conector {
        transform: rotate(90deg); /* Flechas apuntando hacia abajo */
        margin: -10px 0;
        justify-content: center;
    }
}

/* Banner de Compra Segura */
.secure-purchase-banner {
    display: flex;
    align-items: center;
    background-color: #fdf2e8; /* Verde éxito ultra suave */
    border: 1px solid #ff730045;
    border-radius: 12px;
    padding: 20px 30px;
    max-width: 800px;
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
}

.secure-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 2;
}

.secure-icon-shield {
    color: #22c55e; /* Verde WhatsApp de tu marca */
    font-size: 45px;
    display: flex;
    align-items: center;
}

.secure-text h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a202c; /* Azul oscuro casi negro */
    letter-spacing: 0.5px;
}

.secure-text p {
    margin: 4px 0 0 0;
    font-size: 0.95rem;
    color: #4a5568;
}

/* Divisor Vertical */
.secure-divider {
    width: 1px;
    height: 50px;
    background-color: #e2e8f0;
    margin: 0 25px;
}

/* Estado de Verificación (Derecha) */
.secure-status {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.status-icon {
    font-size: 28px;
    color: #4a5568;
}

.secure-status p {
    margin: 0;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.3;
    font-weight: 500;
}

/* Responsividad para móviles */
@media (max-width: 600px) {
    .secure-purchase-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .secure-main {
        flex-direction: column;
        gap: 10px;
    }
    .secure-divider {
        width: 80%;
        height: 1px;
        margin: 5px auto;
    }
    .secure-status {
        justify-content: center;
    }
}

/* Banner de Compra Segura - Centrado Total */
.secure-purchase-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdf2e8; 
    border: 1px solid #ff730045;
    border-radius: 12px;
    padding: 20px 30px;
    max-width: 750px; /* Ajustado para parecerse más a la imagen */
    margin: 10px auto; /* Centra el bloque en la página */
    font-family: 'Inter', sans-serif;
}

.secure-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Estilo del Escudo Verde */
.secure-icon-shield i {
    color: #FF7300; /* Tu verde de marca */
    font-size: 40px;
    display: block;
}

.secure-text h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #FF7300;
    letter-spacing: 0.3px;
}

.secure-text p {
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    color: #4a5568;
}

/* Divisor Vertical */
.secure-divider {
    width: 1px;
    height: 45px;
    background-color: #d1d5db;
    margin: 0 30px;
}

/* Estilo del Candado Derecho */
.secure-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-icon i {
    font-size: 24px;
    color: #FF7300; /* Gris azulado para el candado */
}

.secure-status p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.2;
    max-width: 100px;
}

/* Ajuste para celulares */
@media (max-width: 600px) {
    .secure-purchase-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        width: 85%;
    }
    .secure-main {
        flex-direction: column;
        gap: 10px;
    }
    .secure-divider {
        width: 60%;
        height: 1px;
        margin: 15px auto;
    }
    .secure-status {
        justify-content: center;
    }
}

/* --- Variables de Marca --- */
:root {
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --star-gold: #f59e0b;
    --border-blue: #0B1D3A; /* El azul muy suave del borde */
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.seccion-confianza {
    display: flex;
    justify-content: center;
    padding: 5px 10px;
}

/* El truco del efecto sobresaliente: USAMOS UN PSEUDOELEMENTO */
.confianza-wrapper {
    position: relative; /* Clave para posicionar al hombre */
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); /* Sombra ultra suave */
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
}

/* CREAMOS EL BORDE COMO UN ELEMENTO SEPARADO POR DEBAJO DEL HOMBRE */
.confianza-wrapper::before {
    content: '';
    position: absolute;
    top: 10px; /* Separación del borde superior */
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--border-blue); /* El borde azul suave */
    border-radius: 18px; /* Radio ligeramente menor */
    z-index: 0; /* Se mantiene al fondo */
}

/* Contenedor del Hombre (Posicionamiento absoluto) */
.hombre-sobresale {
    position: absolute;
    bottom: 0; /* Se alinea con el fondo del wrapper blanco */
    left: 50px; /* Ajuste horizontal */
    width: 250px; /* Ancho que tendrá el hombre */
    z-index: 2; /* Se coloca por ENCIMA del borde blanco y azul */
}

.hombre-sobresale img {
    width: 80%;
    height: auto;
    display: block;
    /* Esto hace que sobresalga por arriba, no por abajo */
    margin-bottom: -10px; 
}

/* Contenido de Texto */
.confianza-content {
    flex: 1;
    margin-left: 230px; /* Creamos el espacio para el hombre absoluto */
    position: relative;
    z-index: 1; /* Texto por encima del borde, pero debajo del hombre si se tocan */
}

.confianza-content h3 {
    margin: 0 0 -2px 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    text-transform: uppercase; /* Forzamos mayúsculas como en la imagen */
}

.confianza-content p {
    margin: 0 0 25px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Fila de Prueba Social */
.social-proof-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.img-caras {
    height: 70px; /* Altura de las caras */
    width: auto;
}

/* Columna de Estrellas */
.puntuacion-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.estrellas {
    color: #FF7300;
    font-size: 1.5rem;
}

.resenas-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .confianza-wrapper {
        flex-direction: column;
        padding-top: 250px; /* Espacio para el hombre arriba */
        text-align: center;
    }
    
    .confianza-wrapper::before {
        border: none; /* Quitamos el borde en móvil */
    }

    .hombre-sobresale {
        position: static; /* Volvemos al flujo normal */
        width: 200px;
        margin-top: -300px; /* Lo subimos para que sobresalga en móvil */
        margin-bottom: 20px;
    }
    
    .confianza-content {
        margin-left: 0;
    }
    
    .social-proof-row {
        flex-direction: column;
    }
}

/* Contenedor General */
.social-proof-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    border-radius: 20px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.icon-green { color: #FF7300; }

/* --- GRILLA DE PEDIDOS --- */
.orders-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Permite scroll lateral en móvil */
    padding-bottom: 15px;
}

.order-card {
    background: white;
    border-radius: 12px;
    min-width: 200px;
    flex: 1;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.order-img {
    position: relative;
    height: 180px;
}

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

.location-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blue-badge i { color: #3182ce; }

.order-info { padding: 12px; }
.order-info h4 { margin: 0; font-size: 0.95rem; }
.order-info .status { 
    margin: 5px 0 0; font-size: 0.8rem; color: #22c55e; font-weight: 600; 
}

/* --- SECCIÓN DE TESTIMONIOS --- */
.feedback-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #edf2f7;
}

.stars { color: #FF7300; margin-bottom: 10px; }

.review-card p {
    font-size: 0.9rem; color: #4a5568; line-height: 1.5; font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.loc-tag {
    background: #0B1D3A; color: #ffffff;
    padding: 2px 8px; border-radius: 10px;
}

/* --- TARJETA DE RESUMEN (DERECHA) --- */
.rating-summary-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.rating-summary-card h3 { color: #FF7300; font-size: 1.1rem; margin-bottom: 20px; }

.avatar-group img {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.big-score { font-size: 2.2rem; font-weight: 800; display: block; margin-top: 15px; }
.stars-gold { color: #FF7300; font-size: 1.2rem; margin: 5px 0; }
.reviews-count { color: #718096; font-size: 0.85rem; }

.total-delivered {
    font-size: 0.9rem; font-weight: 700; color: #2d3748;
    margin-top: 15px;
}

/* Ajustes para móviles */
@media (max-width: 900px) {
    .feedback-grid { grid-template-columns: 1fr; }
    .testimonial-cards-wrapper { grid-template-columns: 1fr; }
}

.carousel-container {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 1100px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden; /* Ocultar el desbordamiento de las tarjetas */
}

h2 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: #16a34a;
}

.carousel-track-container {
    width: 100%;
}

.carousel-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px; /* Espaciado entre tarjetas */
    transition: transform 0.5s ease-in-out; /* Movimiento suave */
}

.carousel-card {
    flex: 0 0 calc(16.666% - 15px); /* Ajustar el ancho para 6 tarjetas visibles */
    max-width: 165px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.package-img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

.card-footer {
    padding: 10px 0 0;
}

.location-badge {
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.location-icon {
    width: 12px;
    height: 12px;
}

.customer-name,
.delivery-status {
    font-size: 0.5rem;
    margin-top: -3px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.customer-name {
    color: #0B1D3A;
    font-weight: bold;
}

.delivery-status {
    color: #FF7300;
}

.carousel-button {
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 10px;
    z-index: 10;
}

.carousel-button:hover {
    background-color: #f3f4f6;
}

.carousel-button--right {
    right: 15px;
}
/* Contenedor de la imagen para posicionar la ubicación */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Estilo exacto de la etiqueta de ubicación (Santa Cruz, La Paz, etc.) */
.location-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #0B1D3A; /* El azul que usas en tu marca */
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.location-tag i {
    font-size: 0.8rem;
}

.customer-name i, .delivery-status i {
    color: #0B1D3A; /* Verde para el check de entregado */
}

.confidence-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #ffffff;
            border-radius: 12px;
            border: 1px solid #e1e4e8; /* Borde sutil */
            padding: 20px 30px;
            max-width: 800px; /* Ancho máximo para el diseño */
            margin: 20px auto; /* Centrar en la página */
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Sombra muy sutil */
        }

        .confidence-icon-shield, .confidence-icon-seal {
            flex-shrink: 0; /* No encoger iconos */
            width: 70px; /* Tamaño del icono */
            height: 70px;
        }

        .confidence-text {
            flex: 1; /* Ocupar el espacio central */
            padding: 0 20px; /* Espaciado lateral */
            color: #4a5568; /* Gris oscuro para el párrafo */
            text-align: left;
        }

        .confidence-text h3 {
            color: #0056d6; /* Azul para el título */
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.1em;
            margin: 0 0 5px; /* Margen inferior sutil */
        }

        .confidence-text p {
            margin: 0;
            font-size: 0.9em;
            line-height: 1.4;
        }
        

        .purchase-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    max-width: 480px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}


@media (max-width: 400px){

    /* BOTÓN CARRUSEL */
    .carousel-button{
        padding:6px;
        right:8px;
    }

    .carousel-button svg{
        width:20px;
        height:20px;
    }

    /* IMAGEN */
    .image-wrapper{
        height:110px;
    }

    /* TAG UBICACIÓN */
    .location-tag{
        font-size:0.6rem;
        padding:3px 6px;
    }

    /* CARD COMPRA */
    .purchase-card{
        padding:12px;
        border-radius:10px;
    }

    .price-current{
        font-size:1.6rem;
    }

    /* BANNER CONFIANZA */
    .confidence-banner{
        flex-direction:column;
        text-align:center;
        padding:12px;
        gap:10px;
    }

    .confidence-icon-shield,
    .confidence-icon-seal{
        width:45px;
        height:45px;
    }

    .confidence-text{
        padding:0;
    }
}


@media (min-width: 401px) and (max-width: 600px){

    /* BOTÓN */
    .carousel-button{
        padding:8px;
        right:10px;
    }

    .carousel-button svg{
        width:24px;
        height:24px;
    }

    /* IMAGEN */
    .image-wrapper{
        height:130px;
    }

    /* TAG */
    .location-tag{
        font-size:0.65rem;
    }

    /* CARD */
    .purchase-card{
        padding:14px;
    }

    .price-current{
        font-size:1.9rem;
    }

    /* BANNER */
    .confidence-banner{
        padding:15px;
        gap:15px;
    }

    .confidence-icon-shield,
    .confidence-icon-seal{
        width:55px;
        height:55px;
    }
}



/* 🔥 FILA SUPERIOR */
.price-row {
    align-items: center;
}

/* IZQUIERDA */
.price-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-old {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
    text-align: left;
}

/* PRECIO + DESCUENTO EN UNA LÍNEA */
.price-current-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
}

/* DESCUENTO */
.discount-sticker {
    background: #FF7300;
    color: #fff;
    font-size: 0.65rem;
}

/* 🚚 ENVÍO GRATIS (más compacto) */
.shipping-promo {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px dashed #22c55e;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #15803d;
}

/* ICONO */
.icon-delivery::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f48b";
    font-size: 0.8rem;
}

/* BOTÓN */
.btn-whatsapp {
    width: 100%;
    margin-top: 12px;
    background: #0B1D3A;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 800;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
}

/* TEXTO */
.trust-text {
    margin-top: 8px;
    font-size: 0.75rem;
    text-align: center;
    color: #666;
}


.timer-section {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

/* 🔥 CONTENEDOR MÁS COMPACTO */
.timer-container {
    display: flex;
    align-items: center;
    gap: 12px; /* controla separación real */

    max-width: 600px; /* 🔥 reduce ancho */
    width: 100%;

    background: #fdf2e8;
    border: 1px solid #ff730045;
    border-radius: 12px;
    padding: 12px 14px;
}

/* ICONO */
.timer-icon svg {
    width: 40px;
    height: 40px;
}

/* INFO CENTRAL */
.timer-info {
    flex: 1; /* ocupa solo lo necesario */
}

.timer-info h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.timer-info p {
    margin: 2px 0;
    font-size: 0.8rem;
    color: #555;
}

/* BARRA */
.stock-bar-container {
    background: #d1d5db;
    height: 5px;
    border-radius: 5px;
    margin: 6px 0;
    width: 100%;
    max-width: 180px; /* 🔥 evita barra larga */
}

.stock-bar {
    background: #22c55e;
    height: 100%;
    border-radius: 5px;
}

/* TEXTO */
.stock-text {
    font-size: 0.75rem;
}

/* 🔥 CONTADOR MÁS PEGADO */
.countdown-display {
    background: #ff3b2f;
    color: white;
    padding: 10px 12px;
    border-radius: 10px;
    text-align: center;
    min-width: 65px;
}

#timer {
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
}

.countdown-display small {
    font-size: 0.65rem;
}


/* =========================================
   BOTÓN FLOTANTE FIJO PARA MÓVILES
========================================= */
@media (max-width: 768px) {
    .mobile-floating-buy {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 10px 15px;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        z-index: 9998;
        box-sizing: border-box;
    }

    /* Hacemos que el botón dentro ocupe todo el ancho con buen golpe visual */
    .mobile-floating-buy .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 16px;
        border-radius: 12px;
        text-transform: uppercase;
        font-weight: 800;
        background: #FF7300; /* O tu color de llamada a la acción */
        color: #fff;
        box-shadow: 0 4px 12px rgb(211 130 37 / 40%);
    }
    
    /* Añadimos un pequeño margen abajo del contenido principal para que 
       el botón flotante no tape las últimas letras o elementos de la página */
    body {
        padding-bottom: 70px; 
    }
}

/* En PC (computadoras), ocultamos esta barra flotante porque ya tienen el botón normal arriba */
@media (min-width: 769px) {
    .mobile-floating-buy {
        display: none;
    }
}


/* =========================================
   ANIMACIÓN DE TEMBLOR / LLAMADO A LA ACCIÓN
========================================= */

@keyframes latidoShopify {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 115, 0, 0.3); }
    50% { transform: scale(1.04); box-shadow: 0 0 15px 5px rgba(255, 115, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 115, 0, 0.3); }
}

.btn-temblor {
    animation: latidoShopify 2s infinite ease-in-out;
}