@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --azul-corporativo: #184080;
    --color-tomate: #ff6b35;
    --texto-oscuro: #184080;
}

/* --- HEADER GROSOR OPTIMIZADO --- */
.header-glass {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    
    /* GROSOR: Ajustado a 72px para que se vea robusto como en tus fotos */
    height: 72px; 
    
    /* Glassmorphism Denso */
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    
    /* Borde y Redondeado */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 100px; 
    
    /* Sombra para dar profundidad */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

/* Ajuste del contenedor interno para centrar todo con el nuevo grosor */
.nav-contenedor {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px; /* Más espacio lateral */
}

/* Colores e Iconos (Se mantienen en Azul Corporativo) */
.nav-links a {
    text-decoration: none;
    color: var(--azul-corporativo);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.icon-link {
    color: var(--azul-corporativo);
    display: flex;
}

.icon-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
}

/* Logo - tamaño correcto */
.logo img, .logo svg {
    height: 42px;
    width: auto;
    display: block;
}

/* Nav links sin bullets */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}


/* Estado al bajar (Scroll) */
.header-glass.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 65px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: clip; } /* clip es más confiable que hidden en todos los browsers */
body { font-family: 'Inter', 'Segoe UI', sans-serif; overflow-x: clip; scroll-behavior: smooth; color: var(--texto-oscuro); background: #ffffff; }

/* SECCIÓN 1: REALIDAD Y HUMO */
.escena {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8%;
    background: var(--azul-corporativo);
    position: relative;
    overflow: hidden;
}

.escena .contenedor {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Glows de fondo */
.escena::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,188,212,0.10) 0%, transparent 65%);
    top: -200px; left: -150px;
    pointer-events: none;
}
.escena::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 65%);
    bottom: -150px; right: -100px;
    pointer-events: none;
}

/* Texto */
.escena h2 { color: #ffffff; font-size: clamp(2.8rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.05; }
.escena h2 span { color: var(--color-tomate); }
.escena .etiqueta { color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; display: block; }

h2 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.precio-alerta { font-size: 4.5rem; font-weight: 900; color: var(--color-tomate); margin: 15px 0; }
.etiqueta { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 700; }

/* Logos de apps en pastillas */
.logos-apps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px auto;
    max-width: 680px;
}
.logo-wrapper { position: relative; display: flex; flex-direction: column; align-items: center; }

.app-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    animation: desintegrarLogo 4s infinite ease-in-out;
}
.app-logo { height: 20px; opacity: 0.6; filter: brightness(10); animation: desintegrarLogo 4s infinite ease-in-out; }

/* EFECTO HUMO */
.humo {
    position: absolute;
    top: 0; width: 100%; height: 40px;
    background: linear-gradient(to top, transparent, var(--color-tomate), transparent);
    filter: blur(12px); opacity: 0;
    animation: rafagaHumo 4s infinite ease-in-out;
}

@keyframes desintegrarLogo {
    0%, 20% { opacity: 0.7; transform: scale(1); filter: blur(0); }
    40%, 75% { opacity: 0.15; transform: translateY(-8px); filter: blur(2px); }
    90%, 100% { opacity: 0.7; transform: scale(1); filter: blur(0); }
}

@keyframes rafagaHumo {
    0%, 25% { opacity: 0; transform: translateY(10px); }
    40%, 65% { opacity: 0.5; transform: translateY(-30px); }
    80%, 100% { opacity: 0; }
}

/* SECCIÓN 2: PERO Y SI — mismo azul, continúa la historia */
.propuesta-valor.azul-bg {
    background: var(--azul-corporativo);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px;
}
.propuesta-valor.azul-bg::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,188,212,0.10) 0%, transparent 60%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.propuesta-valor.azul-bg::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 65%);
    bottom: -80px; left: 10%;
    pointer-events: none;
}
.pregunta-tachada { font-size: 2rem; color: rgba(255,255,255,0.25); text-decoration: line-through; text-decoration-color: var(--color-tomate); font-weight: 800; margin-bottom: 15px; }
.frase-principal { font-size: 3.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 30px; color: #fff; }
.frase-principal span { color: var(--color-tomate); }
.flecha-bajar { animation: rebote 2s infinite; margin-top: 40px; }
@keyframes rebote { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* SECCIÓN 3: COOLER (FONDO BLANCO) */
.proceso-cooler { background-color: #ffffff; padding: 120px 8%; min-height: 100vh; display: flex; align-items: center; overflow-x: hidden; }
.contenedor-proceso { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; max-width: 1200px; margin: 0 auto; }
.tagline { color: var(--color-tomate); font-weight: 800; letter-spacing: 2px; font-size: 0.8rem; }
.texto-proceso h2 { font-size: 3.5rem; font-weight: 900; color: var(--azul-corporativo); line-height: 1.1; margin: 15px 0; }
.texto-proceso p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

/* BOTONES TOMATE */
.acciones-proceso { display: flex; align-items: center; gap: 30px; }
.btn-tomate { background-color: var(--color-tomate); color: white; padding: 18px 35px; border-radius: 10px; text-decoration: none; font-weight: 800; transition: transform 0.3s; }
.btn-tomate:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,107,53,0.3); }

.enlace-tienda { display: flex; align-items: center; gap: 8px; color: var(--azul-corporativo); text-decoration: none; font-weight: 700; transition: color 0.3s; }
.enlace-tienda:hover { color: var(--color-tomate); }

/* ANIMACIÓN COOLER VISUAL */
/* --- EFECTO DE LLENADO REALISTA --- */
.animacion-cooler {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px; /* Espacio suficiente para la caída */
}

.cooler-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.img-cooler {
    width: 100%;
    position: relative;
    z-index: 1; /* El cooler es la base */
}

.proteinas-caida {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Las proteínas se ven sobre el fondo blanco del cooler */
}

.item-proteina {
    position: absolute;
    width: 130px; /* Tamaño ajustado para que quepan varias */
    left: 50%;
    margin-left: -65px; /* Centrado base */
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}
/* Ajusta el contenedor para que tenga altura real */
.proteinas-caida {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Asegúrate de que sea el 100% del cooler-container */
    z-index: 2; 
    pointer-events: none;
}

/* Posiciones corregidas para que caigan al fondo blanco */
.p-1 { top: 34% !important; margin-left: -95px; transform: rotate(-15deg); }
.p-2 { top: 27% !important; margin-left: -110px; transform: rotate(8deg); }
.p-3 { top: 41% !important; margin-left: -40px; transform: rotate(15deg); }
.p-4 { top: 30% !important; margin-left: -80px; transform: rotate(-10deg); }
.p-5 { top: 30% !important; margin-left: 10px; transform: rotate(8deg); }

/* Ajuste móvil */
@media (max-width: 768px) {
    .item-proteina { width: 100px; margin-left: -50px; }
}

/* Estilos para los números debajo de los botones */
.stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 50px; /* Espacio debajo de los botones */
    text-align: left;
}

.stat-box span {
    font-size: 3.5rem; /* Tamaño grande para el número */
    font-weight: 900;
    color: var(--azul-corporativo);
    line-height: 1;
}

.stat-box .plus {
    color: var(--azul-corporativo);
    font-size: 2.5rem;
}

.stat-box p {
    font-size: 0.75rem;
    font-weight: 800;
    color: #888;
    letter-spacing: 1px;
    margin-top: 5px;
    text-transform: uppercase;
}
/* AJUSTE DE IMÁGENES PARA LA ANIMACIÓN */

.cooler-container {
    position: relative;
    width: 100%;
    max-width: 500px; /* Tamaño de la hielera */
    margin: 0 auto;
}

.img-cooler {
    width: 100%;
    display: block;
    z-index: 2;
    position: relative;
}

.item-proteina {
    position: absolute;
    width: 150px; /* Tamaño de las carnes */
    z-index: 1;   /* Esto hace que queden "atrás" del borde frontal del cooler */
    left: 50%;
    transform: translateX(-50%);
}

/* Posiciones iniciales antes de caer */
.p-1 { top: 10%; }
.p-2 { top: 15%; margin-left: -40px; transform: rotate(-15deg); }
.p-3 { top: 15%; margin-left: 40px; transform: rotate(15deg); }

/* --- SECCIÓN TRAZABILIDAD --- */
.trazabilidad {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
    overflow-x: hidden;
}

.trazabilidad h2 {
    color: #184080;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.trazabilidad h2 span {
    color: #184080; /* Azul/cian tecnológico */
    font-style: italic;
    text-transform: lowercase;
}

/* --- CARRUSEL MEJORADO --- */
.carrusel-infinito {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 30px 0;
    white-space: nowrap;
    position: relative;
}

/* El ancho debe ser la suma de (ancho logo + margen) x total de logos en un set */
.logos-deslizar {
    display: flex;
    width: calc(200px * 12); /* 200px por cada logo-item */
    animation: deslizarInfinito 20s linear infinite;
}

.logo-item {
    width: 120px; /* Ancho fijo para que se vean cuadrados */
    height: 120px; /* Alto fijo */
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Mantiene la proporción sin deformar */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Animación ajustada para 4 proveedores repetidos */
@keyframes deslizarInfinito {
    0% { transform: translateX(0); }
    /* Se desplaza exactamente el ancho de un set completo (4 logos x 160px de espacio total cada uno) */
    100% { transform: translateX(calc(-160px * 4)); } 
}

/* --- SECCIÓN SUSCRIPCIONES --- */

.suscripciones-seccion {
    position: relative;
    padding: 100px 0;
    background-color: #051937;
    overflow: hidden;
    color: white;
    width: 100%;
    margin: 0;
}

/* Escarcha estática */
.suscripciones-seccion::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(150,210,255,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(100,180,255,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(200,230,255,0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.suscripciones-seccion::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.008) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 20px 20px;
    pointer-events: none;
    z-index: 1;
}

.contenedor-club {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.club-tag { color: #ff6b35; font-weight: bold; letter-spacing: 2px; }
.contenedor-club h2 { font-size: 3rem; margin: 10px 0; text-transform: uppercase; }
.contenedor-club h2 span { color: #ff6b35; font-style: italic; }

/* Estilo Glassmorphism para las tarjetas */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.grid-planes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.plan-card.popular:hover {
    transform: translateY(-12px) scale(1.06);
    box-shadow: 0 24px 50px rgba(255, 107, 53, 0.3);
}
/* Resaltado del POWER BOX */
.plan-card.popular {
    border: 2px solid #ff6b35;;
    background: rgba(0, 188, 212, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
}
.plan-card.popular:hover {
    transform: translateY(-12px) scale(1.06);
    box-shadow: 0 24px 50px rgba(255, 107, 53, 0.3);
}

.badge-popular {
    position: absolute;
    top: -15px; right: 20px;
    background: #ff5722;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-img { width: 220px; border-radius: 16px; margin-bottom: 20px; }

.plan-precio .numero { font-size: 3rem; color: #ff6b35;; font-weight: 800; }
.plan-features { list-style: none; padding: 0; margin: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: left; }
.plan-features li { margin-bottom: 10px; font-size: 0.9rem; opacity: 0.8; position: relative; padding-left: 20px; text-align: left; }
.plan-features li::before { content: '—'; position: absolute; left: 0; color: #ff6b35; }
.plan-img { cursor: pointer; transition: transform 0.2s ease, opacity 0.2s ease; }
.plan-img:hover { transform: scale(1.04); opacity: 0.92; }

.btn-plan {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-plan.principal {
    background: #ff6b35;;
    border-color: #ff6b35;;
    color: #051937;
}

.btn-plan:hover { background: rgba(255,255,255,0.1); }
.btn-plan.principal:hover { background: #cc4a1a; }

/* ══════════════════════════════════════
   CLASES FALTANTES — CORRECCIÓN COMPLETA
   ══════════════════════════════════════ */

/* Precios individuales bajo cada logo */
.precio-individual {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
}

/* Contenedor sección propuesta de valor */
.contenedor-propuesta {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* "PERO Y SI..." encima del h2 */
.subtitulo {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

/* Párrafo descriptivo sección azul */
.propuesta-valor .descripcion {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 20px auto 0;
    max-width: 550px;
}

/* Span destacado dentro del h1 */
.frase-principal span {
    color: #ff6b35;
}

/* Filtros de días de entrega */
.filtros-suscripcion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.dias-grupo {
    display: flex;
    gap: 10px;
}

.dia-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(0,188,212,0.3);
    color: #ff6b35;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.45rem 1rem;
    border-radius: 999px;
}

.dia-item.activa {
    background: #00bcd426;
    border-color: #00bcd4;
}

.zonas-grupo { display: flex; gap: 10px; }

.zona-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
}

/* Footer de cada tarjeta de plan */
.plan-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

.plan-footer .desde {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.plan-footer .monto {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.plan-footer .monto span {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}

/* Subtítulo sección suscripciones */
.subline {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 10px 0 0;
}

/* Contenedor trazabilidad */
.contenedor-trazabilidad {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── ESPACIADO GENERAL CORREGIDO ── */
.escena .contenedor {
    max-width: 900px;
    margin: 0 auto;
}

/* Evita espacios blancos por márgenes colapsados entre secciones */
.propuesta-valor.azul-bg,
.proceso-cooler,
.trazabilidad,
.suscripciones-seccion {
    margin: 0;
    padding-top: 100px;
    padding-bottom: 100px;
}
/* --- CORRECCIÓN SECCIÓN PASOS --- */
.seccion-pasos-blanca {
    background-color: #ffffff;
    padding: 120px 0;
    margin-top: 50px;
    text-align: center;
    overflow-x: hidden;
}

.tagline-pasos {
    color: var(--color-tomate);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.titulo-pregunta {
    color: var(--azul-corporativo);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 80px;
}

.linea-proceso {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* LA BARRA: Ahora con z-index negativo respecto al círculo */
.barra-conectora {
    position: absolute;
    top: 50px; /* Mitad exacta del círculo de 100px */
    left: 100px;
    right: 100px;
    height: 2px;
    background: #ff6b35;
    z-index: 1; /* Detrás de los círculos */
}

.paso-item {
    position: relative;
    z-index: 2; /* Encima de la barra */
    flex: 1;
}

.circulo-tomate {
    width: 100px;
    height: 100px;
    background-color: var(--color-tomate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto 25px;
    position: relative;
    z-index: 3; /* Asegura estar sobre la barra */
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

/* Los círculos ahora color Tomate */
.circulo-tomate {
    width: 100px;
    height: 100px;
    background-color: var(--color-tomate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    border: 3px solid #ffffff; /* Crea el efecto de separación con la línea */
}

.paso-texto h4 {
    color: var(--azul-corporativo);
    font-size: 1.2rem;
    font-weight: 800;
}

.paso-texto p {
    color: #666;
    margin-top: 5px;
}

/* --- ANIMACIONES INTERACTIVAS PARA LOS PASOS --- */

.paso-item {
    position: relative;
    z-index: 2;
    flex: 1;
    /* Añadimos una transición suave a todo el bloque por si quieres mover el texto también */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circulo-tomate {
    width: 100px;
    height: 100px;
    background-color: var(--color-tomate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 25px;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    /* TRANSICIÓN CLAVE */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* EFECTO AL PASAR EL MOUSE (HOVER) */
.paso-item:hover .circulo-tomate {
    transform: scale(1.15); /* Crece un 15% */
    background-color: #ff855a; /* Un tono un poquito más claro del tomate */
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

/* Animación para el icono dentro del círculo */
.paso-item:hover .circulo-tomate svg {
    transform: rotate(-10deg) scale(1.1); /* Ligera rotación y crecimiento */
    transition: transform 0.3s ease;
}

/* El texto también puede reaccionar */
.paso-item:hover .paso-texto h4 {
    color: var(--color-tomate); /* El título del paso cambia a tomate */
    transition: color 0.3s ease;
}

/* Mantener el escudo blanco del círculo siempre centrado */
.circulo-tomate::before {
    content: '';
    position: absolute;
    width: 112px; /* Un poco más grande para asegurar que cubra la línea */
    height: 112px;
    background: #ff855a;
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.4s ease; /* Para que el escudo siga al círculo al crecer */
}

.paso-item:hover .circulo-tomate::before {
    transform: scale(1.1);
}

/* --- SECCIÓN TESTIMONIOS (CORRECCIÓN FILA INFINITA) --- */
.testimonios-seccion {
    position: relative;
    display: block;      /* Asegura que se comporte como un bloque independiente */
    width: 100%;
    padding: 120px 0;    /* Espacio interno arriba y abajo */
    margin-top: 100px;   /* SEPARACIÓN de la sección anterior (pasos tomate) */
    background: linear-gradient(160deg, #184080 0%, #1a4a9a 50%, #184080 100%);
    color: white;
    overflow: hidden;
    clear: both;
}

/* Ajuste del fondo para que no se escape de su contenedor */
.background-blend {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,107,53,0.12) 0%, rgba(24,64,128,0) 70%);
    z-index: 1;
    pointer-events: none; /* Para que no interfiera con los clics */
}

/* Contenedor principal de testimonios */
.contenedor-testimonios {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Carrusel full-bleed sin causar overflow horizontal */
.carrusel-testimonios {
    position: relative;
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
}

.testimonios-track {
    display: flex;
    gap: 0;             /* El gap lo controlamos con los márgenes de las tarjetas */
    width: calc(350px * 24); 
    animation: scrollTestimonios 120s linear infinite;
}

.testimonio-card {
    flex-shrink: 0; /* IMPORTANTE: Evita que las tarjetas se encojan */
    width: 320px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 0 15px;
    text-align: left;
    color: white;
}

.testimonio-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.usuario { font-weight: bold; color: #00bcd4; font-size: 0.9rem; }

.via-ws {
    font-size: 0.7rem;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.testimonio-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    word-wrap: break-word;
    white-space: normal; /* El texto dentro de la tarjeta sí debe bajar de línea */
}

.estrellas { color: var(--color-tomate); margin-top: 15px; font-size: 0.8rem; }

.tagline-testimonios {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}
.contenedor-testimonios h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
}
.texto-tomate { color: var(--color-tomate); }

/* ANIMACIÓN */
@keyframes scrollTestimonios {
    0% { transform: translateX(0); }
    100% { 
        /* Se mueve solo la mitad (las 12 originales) para que el bucle sea infinito */
        transform: translateX(calc(-350px * 12)); 
    }
}

/* --- FOOTER MODERNO --- */
.footer-moderno {
    width: 100%;
    background-color: var(--azul-corporativo);
    color: white;
    padding: 60px 0 30px 0;
    position: relative;
    overflow: visible;
}

.contenedor-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 40px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
    padding: 0;
    margin-bottom: 20px;
}


.logo-footer {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.logo-footer span {
    color: var(--color-tomate);
}

.info-marca p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-tomate);
    margin-bottom: 25px;
    font-weight: 800;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* Redes Sociales */
.redes-sociales { display: flex; gap: 15px; }
.red-link {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.red-link svg { width: 18px; height: 18px; }
.red-link:hover {
    background-color: var(--color-tomate);
    border-color: var(--color-tomate);
    transform: translateY(-3px);
}

/* Newsletter Tech */
.footer-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    flex: 1;
    outline: none;
}

.btn-flecha {
    background: var(--color-tomate);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-flecha svg { width: 18px; height: 18px; }

/* Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 30px 5% 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

.pagos-iconos {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}
/* --- ESTADOS DE NAVEGACIÓN (LÍNEA INFERIOR) --- */

.nav-links a {
    text-decoration: none;
    color: var(--azul-corporativo);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative; /* Necesario para posicionar la línea */
    padding: 10px 0;    /* Espacio para que la línea no pegue a las letras */
    transition: color 0.3s ease;
}

/* HOVER: Cambio de color suave al pasar el mouse */
.nav-links a:hover {
    color: var(--color-tomate);
}

/* La línea base (oculta por defecto para animación) */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Empieza sin ancho */
    height: 2px;
    background-color: var(--azul-corporativo);
    transition: width 0.3s ease;
}

/* HOVER: La línea crece al pasar el mouse */
.nav-links a:hover::after {
    width: 100%;
    background-color: var(--color-tomate);
}

/* PÁGINA ACTIVA: La línea se queda fija y visible */
.nav-links a.active {
    color: var(--azul-corporativo);
}

.nav-links a.active::after {
    width: 100%; /* Línea completa fija */
    height: 3px;  /* Un poquito más gruesa para resaltar */
}

/* Móvil */
@media (max-width: 768px) {
    .contenedor-footer { flex-direction: column; text-align: center; }
    .footer-col { width: 100%; }
    .redes-sociales { justify-content: center; }
    .footer-form { max-width: 300px; margin: 0 auto; }
    .footer-bottom { justify-content: center; text-align: center; }
}
/* Responsive fixes */
@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }
    .frase-principal { font-size: 2rem; }
    .frase-principal br { display: none; }
    .precio-alerta { font-size: 3.5rem; }
    .logos-apps { flex-wrap: wrap; gap: 20px; }
    .contenedor-proceso { grid-template-columns: 1fr; }
    .animacion-cooler { order: -1; }
    .stats-mini { gap: 20px; }
    .filtros-suscripcion { flex-direction: column; gap: 10px; }
    .dias-grupo { flex-wrap: wrap; justify-content: center; }
}
 

/* --- TOP BAR BENEFICIOS --- */
.top-bar-beneficios {
    background-color: #f4f4f4;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar-beneficios .contenedor-fluid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.beneficio-item img {
    width: 18px;
    height: auto;
}

/* --- HERO TIENDA --- */
.tienda-hero-principal {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
}

.contenedor-hero {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.hero-info {
    flex: 1;
    max-width: 550px;
}

.hero-info h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: #184080;
    margin-bottom: 20px;
}

.texto-naranja {
    color: var(--color-tomate); /* Tu naranja */
}

.hero-info p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
}

.hero-botones {
    display: flex;
    gap: 15px;
}

.btn-naranja-solido {
    background-color: var(--color-tomate);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-naranja-outline {
    border: 2px solid var(--color-tomate);
    color: var(--color-tomate);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-naranja-solido:hover { background-color: var(--azul-corporativo); }
.btn-naranja-outline:hover { background-color: var(--color-tomate); color: white; }

/* IMAGEN DEL BANNER */
.hero-imagen-box {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.img-banner-principal {
    max-width: 110%;
    height: auto;
    border-radius: 0 0 0 40px; /* Corte estético similar a la imagen */
}

/* Ajuste móvil */
@media (max-width: 992px) {
    .contenedor-hero { flex-direction: column; text-align: center; }
    .hero-imagen-box { margin-top: 40px; }
    .hero-botones { justify-content: center; }
    .top-bar-beneficios .beneficio-item { width: 50%; margin: 5px 0; justify-content: center; }
}

/* --- DISEÑO BANNER TIENDA (BASADO EN TU IMAGEN) --- */
.banner-tienda {
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(135deg, #fdfdfd 0%, #f4f7f6 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.contenedor-banner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide en dos: Texto e Imagen */
    align-items: center;
    padding: 0 20px;
}

.banner-contenido h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--azul-corporativo);
    margin: 20px 0;
}

.banner-contenido h1 span {
    color: var(--color-tomate); /* Tu naranja corporativo */
}

.etiqueta-naranja {
    background: var(--color-tomate);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.btn-naranja {
    display: inline-block;
    background: var(--color-tomate);
    color: white;
    padding: 15px 35px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 30px;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.btn-naranja:hover {
    transform: translateY(-5px);
    background: var(--azul-corporativo);
    box-shadow: 0 10px 20px rgba(24, 64, 128, 0.2);
}

.img-hero-tienda {
    width: 120%; /* Un poco más grande para que resalte */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .contenedor-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .banner-contenido h1 { font-size: 2.5rem; }
    .img-hero-tienda { width: 100%; margin-top: 40px; }
}
/* --- BARRA BENEFICIOS: GLASSMORFISMO AZUL --- */
.top-bar-beneficios-glass {
    margin-top: 110px; /* Evita que choque con el header */
    background: rgba(24, 64, 128, 0.034); /* Tinte azul corporativo */
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    border-bottom: 1px solid rgba(24, 64, 128, 0.1);
    padding: 12px 0;
    position: relative;
    z-index: 99;
}

.top-bar-beneficios-glass .contenedor-fluid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #184080; /* Tu azul principal */
}

.beneficio-item i {
    width: 18px;
    color: #ff6b35; /* Tu naranja */
}

/* --- HERO: AJUSTE DE IMAGEN --- */
.tienda-hero-principal {
    padding: 50px 0;
    background: #ffffff;
}

.contenedor-hero {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.hero-info { flex: 1; }

.hero-imagen-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-hero-ajustada {
    max-width:58%; /* Tamaño reducido como pediste */
    height: auto;
    border-radius: 20px;
    
}

.texto-naranja {
    color: #ff6b35;
}

/* --- CORRECCIONES DE TIENDA --- */

/* Barra de beneficios: Glass azul real */
.top-bar-beneficios-glass {
    margin-top: 110px;
    background: rgba(24, 64, 128, 0.08); /* Tinte azul */
    backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(24, 64, 128, 0.1);
}

/* Imagen Hero: Tamaño compacto */
.img-hero-ajustada {
    max-width: 70% !important; /* Forzamos el tamaño pequeño */
    height: auto;
    border-radius: 20px;

}

/* Grilla de productos */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* Estilo de filtros */
.filtros-tienda {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--azul-corporativo);
    color: white;
    border-color: var(--azul-corporativo);
}

.titulo-seccion {
    text-align: center;
    font-size: 2.5rem;
    color: var(--azul-corporativo);
    margin-bottom: 40px;
}

* ══════════════════════════════════
   TIENDA.CSS — Freeze Foods
   ══════════════════════════════════ */

/* ── HERO ── */
.tienda-hero-principal {
    min-height: 60vh;
    background: linear-gradient(135deg, #0d1b35 0%, #112240 100%);
    display: flex;
    align-items: center;
    padding: 120px 8% 60px;
    position: relative;
    overflow: hidden;
}
.tienda-hero-principal::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,188,212,0.08) 0%, transparent 65%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.contenedor-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-info h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #184080;;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.texto-naranja { color: #ff6b35; }
.hero-info p {
    color: rgba(62, 62, 62, 0.864);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 440px;
}
.hero-botones { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-naranja-solido {
    background: #ff6b35;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
}
.btn-naranja-solido:hover { background: #e05520; transform: translateY(-2px); }
.btn-naranja-outline {
    border: 2px solid #184080;
    color: #184080;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-naranja-outline:hover {
    background: #184080;
    color: #fff;
    transform: translateY(-2px);
}


/* ── SECCIÓN INDIVIDUALES ── */
.seccion-individuales {
    background: #f8f9fb;
    padding: 80px 0;
}
.contenedor-productos {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.individuales-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eaedf2;
}
.individuales-titulo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #184080;
    margin-bottom: 10px;
}
.individuales-sub {
    font-size: 1rem;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
/* ── BLOQUE POR CATEGORÍA ── */
.categoria-bloque {
    margin-bottom: 70px;
}
.categoria-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eaedf2;
}
.categoria-icono { font-size: 2.2rem; }
.categoria-titulo {
    font-size: 1.6rem;
    font-weight: 900;
    color: #184080;
    margin: 0;
}
.categoria-sub {
    font-size: 0.85rem;
    color: #888;
    margin: 4px 0 0;
}

/* ── GRID PRODUCTOS ── */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ── TARJETA PRODUCTO ── */
.prod-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eaedf2;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}
.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(24,64,128,0.12);
}
.prod-card-proximamente {
    opacity: 0.5;
    border-style: dashed;
}

/* Imagen */
.prod-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f4ff, #e8eef8);
    position: relative;
    overflow: hidden;
}
.prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-img-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #c0cce0;
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f4ff, #e8eef8);
}

/* Info */
.prod-info { padding: 14px; }
.prod-nombre {
    font-size: 0.88rem;
    font-weight: 700;
    color: #184080;
    line-height: 1.3;
    margin-bottom: 4px;
}
.prod-peso {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 12px;
}
.prod-footer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.prod-precio {
    font-size: 1.15rem;
    font-weight: 900;
    color: #184080;
}
.btn-agregar {
    background: #184080;
    color: #fff;
    border: none;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.btn-agregar:hover { background: #ff6b35; transform: scale(1.05); }
.btn-agregar.agregado { background: #22c55e; }

/* ── TOAST ── */
.toast-carrito {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #184080;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 9999;
    transition: transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(24,64,128,0.3);
}
.toast-carrito.show { transform: translateX(-50%) translateY(0); }

/* ── TOP BAR BENEFICIOS ── */
.top-bar-beneficios-glass {
    background: rgba(24,64,128,0.05);
    border-bottom: 1px solid rgba(24,64,128,0.08);
    padding: 12px 5%;
}
.contenedor-fluid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.beneficio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #184080;
}
.beneficio-item svg {
    width: 16px;
    height: 16px;
    stroke: #ff6b35;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .productos-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .contenedor-hero { grid-template-columns: 1fr; text-align: center; }
    .hero-imagen-box { display: none; }
    .productos-grid { grid-template-columns: repeat(3, 1fr); }
    .contenedor-productos { padding: 0 20px; }
}
@media (max-width: 600px) {
    .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-botones { justify-content: center; }
    .categoria-bloque { padding: 16px !important; }
    .contenedor-productos { padding: 0 12px; }
    .prod-info { padding: 10px; }
    .prod-nombre { font-size: 0.8rem; }
    .prod-precio { font-size: 1rem; }
    .btn-agregar { padding: 6px 10px; font-size: 0.7rem; }
    body { overflow-x: hidden; }
}


/* ── CONTADOR + BOTÓN CARRITO ── */
.prod-footer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.cantidad-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f4ff;
    border-radius: 8px;
    padding: 4px 8px;
}
.btn-cantidad {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 900;
    color: #184080;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.15s;
    line-height: 1;
}
.btn-cantidad:hover { background: #184080; color: #fff; }
.cantidad-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: #184080;
    min-width: 16px;
    text-align: center;
}
.btn-agregar-full {
    width: 100%;
    background: #184080;
    color: #fff;
    border: none;
    padding: 9px 0;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.03em;
}
.btn-agregar-full:hover { background: #ff6b35; transform: translateY(-1px); }
.btn-agregar-full.agregado { background: #22c55e; }
/* ── FONDOS POR CATEGORÍA ── */
.categoria-bloque { position: relative; }

.categoria-bloque.pollo {
    background-image: url('assets/Fondos proteinas/Sin-titulo-1-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 30px;
}

.categoria-bloque.res {
    background-image: url('assets/Fondos proteinas/res-fondo-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 30px;
}

.categoria-bloque.cerdo {
    background-image: url('assets/Fondos proteinas/cerdo-fondo.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 30px;
}

.categoria-bloque.mariscos {
    background-image: url('assets/Fondos proteinas/Mariscos-fondo.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 30px;
}

.categoria-bloque.complementarios {
    background-image: url('assets/fondos/fondo-complementarios.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 30px;
}

/* Overlay para que el texto se lea bien sobre la imagen */
.categoria-bloque::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 16px;
    pointer-events: none;
    z-index: 0;
}

.categoria-bloque > * { position: relative; z-index: 1; }

/* ══════════════════════════════════
   CARRITO.CSS — Freeze Foods
   ══════════════════════════════════ */

/* ── SIDEBAR LATERAL ── */
.carrito-overlay {
    position: fixed;
    top: 72px;        /* ← mismo valor */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.carrito-overlay.activo {
    opacity: 1;
    pointer-events: auto;
}

.carrito-sidebar {
    position: fixed;
    top: 72px;
    right: 0;
    width: 420px;
    max-width: 95vw;
    height: calc(100vh - 72px);
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.35s;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.carrito-sidebar.abierto {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
}

.carrito-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eaedf2;
    background: #184080;
    color: #fff;
}
.carrito-sidebar-titulo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}
.carrito-sidebar-count {
    background: #ff6b35;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}
.carrito-cerrar {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.carrito-cerrar:hover { background: rgba(255,255,255,0.3); }

/* Body scrollable */
.carrito-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
}

/* Item en sidebar */
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fb;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #eaedf2;
}
.sidebar-item-emoji {
    font-size: 2rem;
    width: 52px; height: 52px;
    background: #f0f4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #eaedf2;
    overflow: hidden;
}
.sidebar-item-emoji img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.sidebar-item-info { flex: 1; min-width: 0; }
.sidebar-item-nombre {
    font-size: 0.85rem;
    font-weight: 700;
    color: #184080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-item-precio { font-size: 0.8rem; color: #aaa; margin-top: 2px; }
.sidebar-item-ctrl {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.sidebar-item-ctrl button {
    width: 26px; height: 26px;
    border-radius: 6px;
    border: 1.5px solid #dde1ea;
    background: #fff;
    color: #184080;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.sidebar-item-ctrl button:hover { background: #184080; color: #fff; border-color: #184080; }
.sidebar-item-ctrl span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #184080;
    min-width: 16px;
    text-align: center;
}
.sidebar-item-subtotal {
    font-size: 0.9rem;
    font-weight: 800;
    color: #184080;
    white-space: nowrap;
    flex-shrink: 0;
}
.sidebar-item-eliminar {
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}
.sidebar-item-eliminar:hover { color: #ff6b35; }

/* Vacío sidebar */
.sidebar-vacio {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    color: #aaa;
    padding: 40px 20px;
}
.sidebar-vacio-emoji { font-size: 3.5rem; }
.sidebar-vacio h4 { font-size: 1rem; color: #184080; font-weight: 700; }
.sidebar-vacio p { font-size: 0.85rem; }
.sidebar-vacio a {
    background: #184080;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 8px;
    transition: background 0.2s;
}
.sidebar-vacio a:hover { background: #ff6b35; }

/* Footer sidebar */
.carrito-sidebar-footer {
    border-top: 1px solid #eaedf2;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
}
.carrito-entrega {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 8px 12px;
    border-radius: 8px;
}
.carrito-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}
.carrito-total-valor {
    font-size: 1.3rem;
    font-weight: 900;
    color: #184080;
}
.carrito-btn-checkout {
    display: block;
    background: #ff6b35;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.carrito-btn-checkout:hover { background: #e05520; transform: translateY(-1px); }
.carrito-btn-ver {
    display: block;
    text-align: center;
    color: #184080;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #dde1ea;
    padding: 10px;
    border-radius: 8px;
    transition: border-color 0.2s, color 0.2s;
}
.carrito-btn-ver:hover { border-color: #184080; }

/* ══ PÁGINA CARRITO.HTML ══ */
.carrito-main {
    padding-top: 180px;
    background: #f8f9fb;
    min-height: 100vh;
}
.carrito-contenedor {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* Header */
.carrito-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.carrito-page-header h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #184080;
}
.btn-vaciar {
    background: none;
    border: 1.5px solid #dde1ea;
    color: #aaa;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-vaciar:hover { border-color: #ff6b35; color: #ff6b35; }

/* Items lista */
.carrito-items-lista { display: flex; flex-direction: column; gap: 16px; }
.carrito-item {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #eaedf2;
    transition: box-shadow 0.2s;
}
.carrito-item:hover { box-shadow: 0 4px 20px rgba(24,64,128,0.08); }
.item-img-placeholder {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, #f0f4ff, #e8eef8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    border: 1px solid #eaedf2;
    overflow: hidden;
}
.item-img-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.item-info { flex: 1; }
.item-nombre { font-size: 1rem; font-weight: 700; color: #184080; margin-bottom: 4px; }
.item-peso { font-size: 0.8rem; color: #aaa; margin-bottom: 4px; }
.item-precio-unit { font-size: 0.82rem; color: #888; }
.item-controles {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.item-cantidad-ctrl {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f4ff;
    border-radius: 10px;
    padding: 6px 12px;
}
.item-cantidad-ctrl button {
    width: 28px; height: 28px;
    border-radius: 6px;
    border: none;
    background: #fff;
    color: #184080;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.item-cantidad-ctrl button:hover { background: #184080; color: #fff; }
.item-cantidad-ctrl span { font-size: 0.95rem; font-weight: 800; color: #184080; min-width: 20px; text-align: center; }
.item-subtotal { font-size: 1.1rem; font-weight: 900; color: #184080; min-width: 60px; text-align: right; }
.item-eliminar {
    background: none;
    border: 1.5px solid #eaedf2;
    color: #ccc;
    width: 32px; height: 32px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.item-eliminar:hover { background: #fff0ed; border-color: #ff6b35; color: #ff6b35; }

/* Vacío página */
.carrito-vacio {
    background: #fff;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid #eaedf2;
}
.vacio-icono { font-size: 4rem; }
.carrito-vacio h3 { font-size: 1.4rem; font-weight: 800; color: #184080; }
.carrito-vacio p { color: #aaa; font-size: 0.9rem; }
.btn-ir-tienda {
    display: inline-block;
    background: #184080;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 8px;
    transition: background 0.2s;
}
.btn-ir-tienda:hover { background: #ff6b35; }

/* Beneficios */
.carrito-beneficios {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.beneficio-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

/* Resumen */
.resumen-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #eaedf2;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.resumen-titulo { font-size: 1.1rem; font-weight: 800; color: #184080; padding-bottom: 16px; border-bottom: 1px solid #eaedf2; }
.resumen-linea { display: flex; justify-content: space-between; font-size: 0.9rem; color: #555; }
.gratis-tag { color: #22c55e; font-weight: 700; font-size: 0.85rem; }
.resumen-total { font-size: 1.1rem; font-weight: 900; color: #184080; padding-top: 16px; border-top: 2px solid #eaedf2; }
.resumen-entrega {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #888;
    background: #f8f9fb;
    padding: 10px 14px;
    border-radius: 8px;
}
.btn-checkout-grande {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff6b35;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.btn-checkout-grande:hover { background: #e05520; transform: translateY(-2px); }
.btn-seguir-comprando {
    display: block;
    text-align: center;
    color: #184080;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.btn-seguir-comprando:hover { color: #ff6b35; }
.resumen-pagos {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #eaedf2;
    font-size: 0.75rem;
    color: #aaa;
}
.nota-minimo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 0.8rem;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .carrito-contenedor { grid-template-columns: 1fr; }
    .resumen-card { position: static; }
    .carrito-sidebar { width: 100vw; }
}
@media (max-width: 600px) {
    .item-controles { flex-wrap: wrap; gap: 12px; }
    .carrito-item { flex-wrap: wrap; }
}
/* ── CARRITO FLOTANTE ── */
.carrito-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #184080;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    box-shadow: 0 8px 24px rgba(24,64,128,0.35);
    transition: background 0.2s, transform 0.2s;
    border: none;
}
.carrito-flotante:hover {
    background: #ff6b35;
    transform: scale(1.08);
}
.carrito-flotante-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff6b35;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #fff;
}
.msg-envio-gratis {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #ff6b35;
    font-weight: 600;
    background: #fff7ed;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #fed7aa;
}
/* ══════════════════════════════════
   CHECKOUT.CSS — Freeze Foods
   ══════════════════════════════════ */

.checkout-main {
    background: #f8f9fb;
    min-height: 100vh;
    padding: 140px 5% 80px;
}

.checkout-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* ── BREADCRUMB ── */
.checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #aaa;
    margin-bottom: 24px;
}
.checkout-breadcrumb a { color: #184080; text-decoration: none; font-weight: 600; }
.checkout-breadcrumb strong { color: #184080; }
.bc-inactivo { color: #ccc; }

/* ── SECCIONES ── */
.checkout-seccion {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #eaedf2;
    margin-bottom: 20px;
}
.checkout-seccion-titulo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 800;
    color: #184080;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eaedf2;
}
.seccion-num {
    width: 28px; height: 28px;
    background: #184080;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ── FORMULARIO ── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 1.5px solid #dde1ea;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #184080;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #184080;
    box-shadow: 0 0 0 3px rgba(24,64,128,0.08);
}
.form-group input.campo-error { border-color: #ff6b35; box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
.form-group input::placeholder { color: #bbb; }

.nota-entrega {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
    background: #f0f4ff;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 16px;
}

/* ── UPSELL ADOBADO ── */
@keyframes upsellGlow {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,107,53,0.15), 0 4px 16px rgba(255,107,53,0.10); }
    50%       { box-shadow: 0 0 0 5px rgba(255,107,53,0.25), 0 4px 24px rgba(255,107,53,0.18); }
}
@keyframes upsellShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.upsell-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    border: 2px solid #eaedf2;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Estado activo — borde naranja que respira suavemente */
.upsell-card:has(input:checked) {
    border-color: #ff6b35;
    background: #fff;
    animation: upsellGlow 2.4s ease-in-out infinite;
}

/* Línea shimmer superior */
.upsell-card:has(input:checked)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        #ff6b35 0%, #ffb347 40%, #fff 60%, #ffb347 80%, #ff6b35 100%);
    background-size: 250% auto;
    animation: upsellShimmer 2s linear infinite;
    border-radius: 16px 16px 0 0;
}

.upsell-card:not(:has(input:checked))::before { display: none; }

.upsell-header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.upsell-icon { font-size: 2rem; flex-shrink: 0; }
.upsell-titulo { font-size: 0.95rem; font-weight: 800; color: #184080; }
.upsell-sub { font-size: 0.78rem; color: #aaa; margin-top: 2px; }

/* Toggle switch */
.upsell-toggle { margin-left: auto; flex-shrink: 0; position: relative; display: inline-block; width: 48px; height: 26px; }
.upsell-toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; inset: 0;
    background: #dde1ea;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #fff;
    top: 3px; left: 3px;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.upsell-toggle input:checked + .toggle-slider { background: #ff6b35; }
.upsell-toggle input:checked + .toggle-slider::before { transform: translateX(22px); }

.upsell-precio-info { margin-top: 14px; padding-top: 14px; border-top: 1px solid #eaedf2; }
.adobado-opcion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    background: #f8f9fb;
}
.adobado-opcion.activa { background: #fff7ed; }
.adobado-rango { font-size: 0.85rem; color: #555; font-weight: 600; }
.adobado-precio { font-size: 1rem; font-weight: 900; color: #ff6b35; }

/* ── UPSELL OFERTA ── */
.upsell-oferta { position: relative; padding-top: 36px; }
.upsell-badge-top {
    position: absolute;
    top: -1px; left: 20px;
    background: linear-gradient(135deg, #ff6b35, #e05520);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 0 0 8px 8px;
}
.upsell-oferta-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.oferta-emoji { font-size: 2.5rem; flex-shrink: 0; }
.oferta-info { flex: 1; }
.oferta-nombre { font-size: 0.95rem; font-weight: 800; color: #184080; }
.oferta-desc { font-size: 0.75rem; color: #aaa; margin: 3px 0 8px; }
.oferta-precios { display: flex; align-items: center; gap: 10px; }
.precio-tachado { font-size: 0.9rem; color: #bbb; text-decoration: line-through; }
.precio-oferta { font-size: 1.2rem; font-weight: 900; color: #ff6b35; }
.oferta-ahorro {
    font-size: 0.72rem;
    font-weight: 700;
    color: #22c55e;
    background: #f0fdf4;
    padding: 2px 8px;
    border-radius: 999px;
}

/* ── MÉTODOS DE PAGO ── */
.metodos-pago { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.metodo-card {
    border: 1.5px solid #dde1ea;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.metodo-card input { display: none; }
.metodo-card.seleccionado { border-color: #184080; background: #f0f4ff; }
.metodo-inner { display: flex; align-items: center; gap: 14px; }
.metodo-icono { font-size: 1.5rem; flex-shrink: 0; }
.metodo-info { flex: 1; }
.metodo-nombre { font-size: 0.9rem; font-weight: 700; color: #184080; }
.metodo-desc { font-size: 0.75rem; color: #aaa; margin-top: 2px; }
.metodo-check {
    width: 24px; height: 24px;
    background: #184080;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transition: opacity 0.2s;
}
.metodo-card.seleccionado .metodo-check { opacity: 1; }
.metodo-iconos-tarjeta { display: flex; gap: 6px; align-items: center; }
.metodo-badge-quito {
    font-size: 0.7rem;
    font-weight: 700;
    background: #f0f4ff;
    color: #184080;
    padding: 3px 10px;
    border-radius: 999px;
}

.info-pago { margin-top: 12px; }
.transferencia-datos {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 16px 20px;
    border: 1px solid #eaedf2;
}
.trans-titulo { font-size: 0.8rem; font-weight: 800; color: #184080; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.trans-fila {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid #eaedf2;
    color: #555;
}
.trans-fila:last-of-type { border-bottom: none; }
.trans-fila strong { color: #184080; }
.trans-nota {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 600;
    background: #fff7ed;
    padding: 8px 12px;
    border-radius: 8px;
}
.tarjeta-nota {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    background: #f0f4ff;
    padding: 12px 16px;
    border-radius: 10px;
}

/* ── CUPÓN ── */
.cupon-wrap { display: flex; gap: 10px; }
.cupon-input {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid #dde1ea;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.cupon-input:focus { outline: none; border-color: #184080; }
.cupon-btn {
    background: #184080;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cupon-btn:hover { background: #ff6b35; }
.cupon-msg { margin-top: 10px; font-size: 0.82rem; font-weight: 600; }
.cupon-msg.exito { color: #22c55e; }
.cupon-msg.error { color: #ff6b35; }

/* ── SEGURIDAD ── */
.seguridad-strip {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eaedf2;
    margin-bottom: 20px;
}
.seg-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
}

/* ── RESUMEN DERECHA ── */
.resumen-checkout {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #eaedf2;
    position: sticky;
    top: 100px;
}
.resumen-titulo {
    font-size: 1rem;
    font-weight: 800;
    color: #184080;
    padding-bottom: 16px;
    border-bottom: 1px solid #eaedf2;
    margin-bottom: 16px;
}
.resumen-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.resumen-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}
.resumen-item-emoji {
    font-size: 1.2rem;
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border: 1px solid #e8efff;
}
.resumen-item-emoji img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.resumen-item-nombre { flex: 1; color: #184080; font-weight: 600; }
.resumen-item-cant { color: #aaa; font-size: 0.78rem; }
.resumen-item-precio { font-weight: 700; color: #184080; white-space: nowrap; }

.resumen-lineas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.resumen-linea {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #555;
}
.resumen-total-final {
    font-size: 1.1rem;
    font-weight: 900;
    color: #184080;
    padding-top: 12px;
    border-top: 2px solid #eaedf2;
}
.precio-extra { color: #ff6b35; font-weight: 700; }
.precio-descuento { color: #22c55e; font-weight: 700; }
.gratis-tag { color: #22c55e; font-weight: 700; }

.btn-confirmar {
    width: 100%;
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 16px;
}
.btn-confirmar:hover { background: #e05520; transform: translateY(-2px); }

.checkout-garantias {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #eaedf2;
}
.garantia-item { display: flex; gap: 6px; align-items: center; }
.ssl-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #22c55e;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .checkout-wrapper { grid-template-columns: 1fr; }
    .checkout-derecha { order: -1; }
    .resumen-checkout { position: static; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
}

/* ══════════════════════════════════
   FOOTER REDISEÑADO — Freeze Foods
   ══════════════════════════════════ */
.footer-moderno {
    background: linear-gradient(160deg, #0a1628 0%, #0f2044 60%, #0d1c3a 100%) !important;
    padding: 64px 0 0 !important;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.6fr;
    gap: 36px;
    align-items: start;
}
.footer-col-item { display: flex; flex-direction: column; }
.footer-col-item h4 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff6b35;
    text-transform: uppercase;
    margin: 0 0 18px 0;
    padding: 0;
}
.footer-col-item ul { list-style: none; padding: 0; margin: 0 0 20px 0; }
.footer-col-item ul li { margin-bottom: 11px; }
.footer-col-item ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.footer-col-item ul li a:hover { color: white; padding-left: 4px; }
.footer-brand-logo img  { height: 52px; margin-bottom: 14px; display: block; }
.footer-brand-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.84rem;
    line-height: 1.65;
    margin-bottom: 18px;
}
.footer-dias {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.25);
    color: #ff6b35;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    width: fit-content;
}
.footer-redes { display: flex; gap: 10px; }
.footer-red {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none;
    transition: all 0.2s; flex-shrink: 0;
}
.footer-red svg { width: 16px; height: 16px; }
.footer-red:hover { background: #ff6b35; border-color: #ff6b35; transform: translateY(-2px); }
.footer-newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
}
.footer-newsletter-form input {
    background: transparent; border: none;
    padding: 10px 14px; color: white; flex: 1;
    outline: none; font-size: 0.85rem; font-family: inherit; min-width: 0;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-btn {
    background: #ff6b35; border: none;
    width: 38px; height: 38px; border-radius: 7px;
    color: white; cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.footer-newsletter-btn:hover { background: #e05a28; }
.footer-newsletter-btn svg { width: 16px; height: 16px; }
.footer-club-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.83rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.footer-club-nota {
    color: rgba(255,255,255,0.28);
    font-size: 0.72rem;
    line-height: 1.5;
    margin-top: 8px;
}
.footer-contacto-item {
    display: flex; align-items: flex-start;
    gap: 10px; margin-bottom: 12px;
    font-size: 0.83rem; color: rgba(255,255,255,0.6);
}
.footer-contacto-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; line-height: 1.4; }
.footer-contacto-item a:hover { color: white; }
.footer-contacto-icono {
    width: 30px; height: 30px; min-width: 30px;
    background: rgba(255,255,255,0.07);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
}
.footer-contacto-icono svg { width: 14px; height: 14px; }
.footer-bottom-bar {
    max-width: 1200px;
    margin: 56px auto 0;
    padding: 24px 48px 40px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-bar p { font-size: 0.77rem; color: rgba(255,255,255,0.3); }
.footer-pagos-bar { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-pagos-bar img { opacity: 0.65; border-radius: 3px; }
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 24px; }
    .footer-bottom-bar { flex-direction: column; text-align: center; padding: 20px; }
}

/* ══════════════════════════════════════
   RESPONSIVE MOBILE GLOBAL — Freeze Foods
   ══════════════════════════════════════ */

/* ── Sección "¿Cómo funciona?" — pasos verticales en móvil ── */
@media (max-width: 767px) {
    .seccion-pasos-blanca { padding: 36px 16px 32px !important; margin-top: 0 !important; }
    .titulo-pregunta { font-size: 1.6rem !important; margin-bottom: 24px !important; }

    .linea-proceso {
        flex-direction: column !important;
        align-items: stretch !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        gap: 12px !important;
    }
    .barra-conectora { display: none !important; }

    .paso-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 14px !important;
        text-align: left !important;
        flex: none !important;
        background: #f8f9fb;
        border-radius: 14px;
        padding: 14px 16px !important;
    }

    .circulo-tomate {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        box-shadow: 0 4px 10px rgba(255,107,53,0.25) !important;
    }
    .circulo-tomate * { width: 20px !important; height: 20px !important; }

    .paso-texto { flex: 1 !important; min-width: 0 !important; }
    .paso-texto h4 { font-size: 0.92rem !important; font-weight: 800 !important; margin-bottom: 2px !important; }
    .paso-texto p  { font-size: 0.8rem !important; margin: 0 !important; line-height: 1.4 !important; color: #666 !important; }

    .acciones-proceso { flex-direction: row !important; gap: 12px !important; align-items: center !important; margin-top: 4px !important; flex-wrap: wrap !important; justify-content: flex-start !important; }
    .acciones-proceso .btn-tomate { padding: 13px 22px !important; font-size: 0.88rem !important; }
    .acciones-proceso .enlace-tienda { font-size: 0.88rem !important; }
}

/* ── Footer responsive ── */
@media (max-width: 767px) {
    .ff-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 20px !important;
        padding: 0 20px !important;
    }
    .ff-footer-bar {
        padding: 16px 20px 24px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
}
@media (max-width: 480px) {
    .ff-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 16px !important;
    }
    .ff-footer-bar {
        padding: 14px 16px 20px !important;
        font-size: 0.72rem !important;
    }
    .ff-footer-bar div { flex-wrap: wrap; gap: 6px; }
}

/* ── Sección "La Realidad" (streaming) ── */
@media (max-width: 767px) {
    .escena { height: auto; min-height: 100svh; padding: 60px 20px 48px; }
    .escena .contenedor { padding: 0 4px; text-align: center; }
    .escena h2 { font-size: clamp(1.7rem, 7.5vw, 2.6rem); line-height: 1.15; margin-bottom: 1rem; }
    .precio-alerta { font-size: clamp(2.4rem, 12vw, 4rem); margin: 10px 0; }
    .logos-apps { gap: 6px; margin: 16px auto; max-width: 100%; }
    .logo-wrapper { gap: 1px; }
    .app-logo { height: 14px; }
    .precio-individual { font-size: 0.58rem; }
    .app-logo-pill { padding: 6px 12px; font-size: 0.75rem; gap: 5px; }
    .app-logo-pill img, .app-logo-pill svg { height: 16px; }
}

/* ── Planes de suscripción — centrado en móvil ── */
@media (max-width: 767px) {
    .grid-planes {
        grid-template-columns: minmax(0, 440px) !important;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        gap: 14px;
    }
    .plan-card { width: 100%; max-width: 440px; margin: 0 auto; }
    .plan-card.popular { transform: scale(1) !important; border-width: 2px; }
    .plan-card.popular:hover { transform: translateY(-4px) !important; }
}

/* Header oculto en móvil y tablet (la nav móvil inferior lo reemplaza) */
@media (max-width: 1024px) {
    .header-glass { display: none !important; }
    /* Quitar el padding-top que reservaba espacio para el header */
    .prod-main        { padding-top: 16px !important; }
    .legal-main       { padding-top: 16px !important; }
    .tienda-main      { padding-top: 0 !important; }
    .cuenta-main      { padding-top: 24px !important; }
    .checkout-main    { padding-top: 16px !important; }
    .carrito-main     { padding-top: 16px !important; }
    .top-bar-beneficios-glass { margin-top: 0 !important; }
}

/* Carrito flotante: subir por encima de la nav móvil */
@media (max-width: 767px) {
    .carrito-flotante { bottom: 86px !important; right: 16px; width: 50px; height: 50px; }
    .carrito-flotante svg { width: 20px; height: 20px; }
    .carrito-sidebar { width: 100vw; max-width: 100vw; }
}

/* Index hero */
@media (max-width: 768px) {
    .seccion-hero-principal { padding: 60px 20px 40px; min-height: auto; }
    .hero-titulo { font-size: clamp(2rem, 8vw, 3.2rem) !important; }
}
@media (max-width: 480px) {
    .seccion-hero-principal { padding: 36px 16px 28px; }
    .hero-subtitulo { font-size: 0.92rem; }
    .hero-botones { flex-direction: column; gap: 12px; }
    .hero-botones a { width: 100%; text-align: center; }
}

/* Botones VER PLANES + Ver tienda — juntos en móvil */
@media (max-width: 767px) {
    .acciones-proceso {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    .btn-tomate { padding: 13px 22px !important; font-size: 0.88rem !important; white-space: nowrap; }
    .enlace-tienda { font-size: 0.88rem !important; }
}

/* Stats (342+, 3x, 0%) más pequeños en móvil */
@media (max-width: 767px) {
    .stats-mini { gap: 20px !important; margin-top: 20px !important; }
    .stat-box span, .stat-box .counter { font-size: 2rem !important; }
    .stat-box .plus { font-size: 1.5rem !important; }
    .stat-box p { font-size: 0.58rem !important; letter-spacing: 0.5px !important; margin-top: 2px !important; }
}

/* Sección de planes / suscripciones */
@media (max-width: 640px) {
    .suscripciones-seccion { padding: 40px 16px 48px; }
    .contenedor-club { padding: 0 4px; }
    .contenedor-club h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .filtros-suscripcion { flex-direction: column; align-items: center; gap: 10px; }
    .grid-planes { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .plan-card.popular { transform: scale(1); }
    .plan-card.popular:hover { transform: translateY(-4px); }
    .plan-header { padding: 20px 16px 12px; }
    .plan-features { padding: 0 16px; }
    .plan-footer { padding: 12px 16px 20px; }
    .btn-plan { padding: 12px 20px; font-size: 0.9rem; }
}

/* Pasos / proceso */
@media (max-width: 768px) {
    .seccion-pasos-blanca { padding: 40px 16px; }
    .contenedor-pasos { gap: 20px; }
}
@media (max-width: 480px) {
    .paso-item { flex-direction: column; text-align: center; }
    .paso-numero { margin: 0 auto 10px; }
}

/* Checkout */
@media (max-width: 600px) {
    .checkout-main { padding: 16px 12px; }
    .checkout-seccion { padding: 16px; border-radius: 12px; }
    .checkout-seccion-titulo { font-size: 1rem; }
    .form-grid { grid-template-columns: 1fr !important; gap: 10px; }
    .form-group.half { grid-column: 1 !important; }
    .metodos-pago { flex-direction: column; gap: 8px; }
    .metodo-card { padding: 12px 14px; }
    .checkout-breadcrumb { font-size: 0.78rem; }
    .btn-confirmar { padding: 16px; font-size: 1rem; }

    /* Upsell cards compactas */
    .upsell-card { padding: 12px 14px; border-radius: 12px; margin-bottom: 12px; }
    .upsell-header { gap: 10px; }
    .upsell-icon { font-size: 1.3rem; }
    .upsell-titulo { font-size: 0.84rem; }
    .upsell-sub { font-size: 0.72rem; }
    .upsell-precio-info { margin-top: 10px; padding-top: 10px; }
    .adobado-opcion { padding: 7px 10px; }
    .adobado-rango { font-size: 0.78rem; }
    .adobado-precio { font-size: 0.9rem; }

    /* Receta natural — reducir */
    .upsell-card > div[style*="rgba(255,107,53"] {
        padding: 8px 10px !important;
        margin-top: 8px !important;
    }
    .upsell-card > div[style*="rgba(255,107,53"] > div:first-child {
        font-size: 0.64rem !important;
        margin-bottom: 2px !important;
    }
    .upsell-card > div[style*="rgba(255,107,53"] > div:last-child {
        font-size: 0.72rem !important;
        line-height: 1.4 !important;
    }

    /* Upsell camarón */
    .upsell-oferta { padding-top: 28px; }
    .upsell-badge-top { font-size: 0.62rem; padding: 4px 10px; left: 14px; }
    .upsell-oferta-inner { gap: 10px; }
    .oferta-emoji { font-size: 0 !important; }
    .oferta-emoji img { width: 52px !important; height: 52px !important; border-radius: 10px !important; }
    .oferta-nombre { font-size: 0.84rem; }
    .oferta-desc { font-size: 0.7rem; margin: 2px 0 6px; }
    .precio-tachado { font-size: 0.8rem; }
    .precio-oferta { font-size: 1rem; }
    .oferta-ahorro { font-size: 0.7rem; }
}

/* Carrito page */
@media (max-width: 600px) {
    .carrito-main { padding-top: 16px; }
    .carrito-contenedor { padding: 0 12px; gap: 16px; }
    .carrito-page-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .carrito-page-header h1 { font-size: 1.4rem; }
    .carrito-item { gap: 10px; padding: 12px; }
    .item-img-placeholder { width: 56px; height: 56px; min-width: 56px; }
    .item-nombre { font-size: 0.88rem; }
    .item-peso, .item-precio-unit { font-size: 0.75rem; }
    .resumen-card { padding: 18px; }
    .btn-checkout-grande { padding: 14px; font-size: 0.92rem; }
}

/* Testimonios */
@media (max-width: 640px) {
    .testimonios-seccion { padding: 40px 16px; }
    .contenedor-testimonios h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
    .testimonios-grid, .grid-testimonios { grid-template-columns: 1fr !important; gap: 14px; }
}

/* Social proof no tapar nav móvil */
@media (max-width: 767px) {
    .sp-notif { bottom: 86px !important; } 
}

/* Carrito flotante sube sobre la barra sticky de box personalizada */
body.personalizada-activa .carrito-flotante { bottom: 100px !important; }
@media (max-width: 767px) {
    body.personalizada-activa .carrito-flotante { bottom: 280px !important; }
}

/* ══════════════════════════════════════
   PORCIONADOS EN GRAMOS — Fitness
   ══════════════════════════════════════ */
.seccion-porcionados {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 40%, #f8faff 100%);
    padding: 64px 0 80px;
}
.porcionados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0 24px;
}
.porc-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #d1fae5;
    box-shadow: 0 3px 16px rgba(16,163,74,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}
.porc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(16,163,74,0.18); }
.porc-card.agotado { opacity: 0.55; pointer-events: none; }
.porc-img { width: 100%; height: 148px; overflow: hidden; background: #f0fdf4; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.porc-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.porc-img-placeholder { font-size: 3.5rem; }
.porc-body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.porc-badge { display: inline-block; background: linear-gradient(135deg,#22c55e,#16a34a); color: #fff; font-size: 0.58rem; font-weight: 800; padding: 2px 8px; border-radius: 20px; letter-spacing: 0.5px; margin-bottom: 7px; align-self: flex-start; }
.porc-nombre { font-size: 0.88rem; font-weight: 800; color: #184080; margin-bottom: 9px; line-height: 1.3; }
.porc-opciones { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; flex: 1; align-content: flex-start; }
.porc-gram { background: #f1f5f9; border: 1.5px solid #e2e8f0; border-radius: 6px; padding: 3px 7px; font-size: 0.65rem; font-weight: 700; color: #64748b; cursor: pointer; transition: all 0.12s; font-family: inherit; }
.porc-gram:hover { border-color: #16a34a; color: #16a34a; background: #f0fdf4; }
.porc-gram.activo { background: #16a34a; border-color: #16a34a; color: #fff; }
.porc-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid #f0fdf4; padding-top: 10px; }
.porc-qty-ctrl { display: flex; align-items: center; gap: 0; background: #f1f5f9; border-radius: 8px; overflow: hidden; border: 1.5px solid #e2e8f0; flex-shrink: 0; }
.porc-qty-btn { background: none; border: none; width: 26px; height: 26px; font-size: 1rem; font-weight: 700; color: #184080; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.1s; }
.porc-qty-btn:hover { background: #e2e8f0; }
.porc-qty-num { font-size: 0.82rem; font-weight: 800; color: #184080; min-width: 20px; text-align: center; }
.porc-precio { font-size: 1.15rem; font-weight: 900; color: #16a34a; flex: 1; text-align: center; }
.porc-btn { background: linear-gradient(135deg,#16a34a,#22c55e); color: #fff; border: none; border-radius: 8px; padding: 7px 12px; font-size: 0.75rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: transform 0.15s, box-shadow 0.15s; white-space: nowrap; flex-shrink: 0; }
.porc-btn:hover { transform: scale(1.04); box-shadow: 0 4px 12px rgba(22,163,74,0.35); }
.porc-btn:active { transform: scale(0.97); }
.porc-btn.agregado { background: linear-gradient(135deg,#0ea5e9,#0284c7); }

@media (max-width: 640px) {
    .porcionados-grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 12px; }
    .porc-img { height: 118px; }
    .porc-body { padding: 9px 10px 11px; }
    .porc-nombre { font-size: 0.78rem; }
    .porc-precio { font-size: 1rem; }
    .seccion-porcionados { padding: 40px 0 52px; }
}
@media (max-width: 380px) {
    .porcionados-grid { grid-template-columns: 1fr; }
}
