* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
:root { --bg-color: #f8f9fa; --texto: #333; --cyan: #00e5ff; --verde: #1b4d3e; --blanco: #ffffff; }
body { background-color: var(--bg-color); color: var(--texto); }

/* BOTONES GLOBALES */
.btn-cyan { background-color: var(--cyan); color: var(--blanco); border: none; padding: 12px 25px; border-radius: 25px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-cyan:hover { background-color: #00c4db; }
.btn-verde { background-color: var(--verde); color: var(--blanco); border: none; padding: 15px 30px; border-radius: 25px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-verde:hover { background-color: #12352a; }
.btn-pequeno { padding: 8px 15px; font-size: 0.9rem; }

/* HEADER BLINDADO */
.header { display: flex; justify-content: space-between; align-items: center; padding: 0 5%; background-color: var(--blanco); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); height: 80px; }
.logo { height: 100%; display: flex; align-items: center; }
#logo-principal { 
    width: 125px; /* Aquí fuerzas el tamaño a lo ancho. Súbelo a 250px si lo quieres aún más grande */
    max-height: 75px; /* Le damos permiso de crecer casi hasta el borde de la barra */
    object-fit: contain; 
}
.nav-links a { text-decoration: none; color: var(--texto); margin: 0 15px; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--verde); }

/* HERO SLIDER (INDEX) */
.hero-slider { position: relative; height: 75vh; display: flex; align-items: center; overflow: hidden; }
.hero-fondo { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center 25%; transition: background-image 0.5s ease-in-out; z-index: 1; }
.hero-caja-texto { position: relative; z-index: 2; background: var(--blanco); padding: 50px; border-radius: 15px; max-width: 500px; margin-left: 55%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.hero-caja-texto h1 { font-size: 2.5rem; color: var(--texto); margin-bottom: 15px; line-height: 1.2; }
.hero-caja-texto p { margin-bottom: 25px; font-size: 1.1rem; color: #555; }

/* SECCIONES BASE Y GRIDS */
.seccion-base { padding: 60px 10%; background-color: var(--blanco); }
.titulo-seccion { font-size: 1.8rem; margin-bottom: 30px; color: var(--texto); }
.grid-tres-columnas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* TARJETAS BENEFICIOS Y BLOG */
.tarjeta-blanca { background: var(--blanco); padding: 30px; border-radius: 15px; text-align: center; border: 1px solid #eee; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.tarjeta-blanca .icono { font-size: 2.5rem; margin-bottom: 15px; }
.tarjeta-blog { text-decoration: none; color: var(--texto); background: var(--blanco); border-radius: 15px; overflow: hidden; border: 1px solid #eee; transition: 0.3s; display: block; }
.tarjeta-blog:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.tarjeta-blog img { width: 100%; height: 180px; object-fit: cover; }
.tarjeta-blog h4 { padding: 15px; text-align: center; }

/* LAYOUT PRODUCTO ESTRELLA (INDEX) */
.producto-layout { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.prod-img-principal img { width: 100%; max-width: 400px; border-radius: 15px; }
.prod-info-central { flex: 1; }
.prod-info-central h2 { font-size: 2rem; color: var(--texto); line-height: 1.2; }
.precio { font-size: 2rem; font-weight: 700; margin: 15px 0; }
.precio span { font-size: 1rem; font-weight: normal; color: #777; }
.controles-compra { display: flex; gap: 20px; align-items: center; }
.contador { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 25px; padding: 5px 15px; gap: 15px; font-weight: bold; }
.contador button { background: none; border: none; font-size: 1.2rem; cursor: pointer; }
.prod-bundle { background: var(--bg-color); padding: 20px; border-radius: 15px; text-align: center; max-width: 250px; border: 1px solid #ddd; }
.prod-bundle img { width: 100%; border-radius: 10px; margin-bottom: 15px; }
.prod-bundle label { display: block; font-size: 0.9rem; margin-bottom: 15px; font-weight: 600; }

/* FOOTER */
.footer { display: flex; justify-content: space-between; padding: 40px 10%; background: #fdfdfd; border-top: 1px solid #eee; font-size: 0.9rem; color: #666; }
.footer p { margin-bottom: 8px; }
.redes-links { display: flex; gap: 15px; }
.redes-links a { font-weight: bold; color: var(--cyan); text-decoration: none; }

/* FLECHAS DE CAMBIO DE PÁGINA (INDEX) */
.contenedor-cambio-pagina { display: flex; justify-content: center; align-items: center; gap: 30px; padding: 20px 0; background-color: var(--blanco); }
.flecha-negra { background: none; border: none; font-size: 3rem; color: var(--texto); cursor: pointer; transition: transform 0.2s; font-weight: bold; }
.flecha-negra:hover { transform: scale(1.2); color: var(--cyan); }
.texto-cambio { font-size: 1.1rem; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ========================================= */
/* NUEVOS ESTILOS PARA LA PÁGINA DE DETALLE  */
/* ========================================= */
#enlace-img-prod:hover img { transform: scale(1.02); }
#enlace-tit-prod:hover h2 { color: var(--cyan); }

.detalle-layout { display: flex; align-items: flex-start; gap: 50px; flex-wrap: wrap; }

/* EL SLIDER */
.galeria-slider { flex: 1; min-width: 300px; max-width: 500px; position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); background: var(--blanco); }
.galeria-visor { width: 100%; height: 450px; display: flex; align-items: center; justify-content: center; }
.imagen-slider { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }

/* BOTONES DEL SLIDER */
.btn-galeria { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.9); border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; color: var(--texto); cursor: pointer; z-index: 10; box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: 0.2s; }
.btn-galeria:hover { background: var(--cyan); color: var(--blanco); }
#gal-izq { left: 15px; }
#gal-der { right: 15px; }

/* PUNTITOS INDICADORES */
.indicadores-galeria { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.punto { width: 12px; height: 12px; background: rgba(255, 255, 255, 0.6); border-radius: 50%; cursor: pointer; border: 2px solid rgba(0,0,0,0.1); transition: 0.3s; }
.punto.activo { background: var(--cyan); border-color: var(--cyan); transform: scale(1.2); }

/* INFORMACIÓN DERECHA */
.info-detalle { flex: 1; min-width: 300px; }
.info-detalle h1 { font-size: 2.5rem; color: var(--verde); line-height: 1.2; margin-bottom: 10px;}
.subtitulo-detalle { font-size: 1.2rem; color: #777; margin-bottom: 20px; }
.precio-detalle { font-size: 2.5rem; font-weight: bold; margin-bottom: 25px; color: var(--texto); }
.desc-texto { font-size: 1.1rem; line-height: 1.7; color: #555; }

/* ... (Todo tu código anterior de style.css) ... */

/* ========================================= */
/* NUEVOS ESTILOS TÉCNICOS DE PRODUCTO       */
/* ========================================= */

.seccion-detalles-tecnicos {
    background-color: var(--blanco); /* Mantenemos fondo blanco */
    border-top: 1px solid #eee; /* Separación sutil */
}

.detalles-adicionales-contenedor {
    max-width: 1000px; /* Centramos el contenido técnico */
    margin: 0 auto;
}

.titulo-detalle-tecnico {
    font-size: 1.8rem;
    color: var(--verde);
    margin-bottom: 25px;
    text-align: center;
}

.desc-profesional {
    text-align: justify; /* Texto justificado para mayor profesionalismo */
    columns: 2; /* Dividimos en dos columnas para facilitar la lectura técnica */
    column-gap: 40px;
}

.grid-ingredientes {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas de ingredientes */
    gap: 30px;
}

.tarjeta-ingrediente {
    background: #fdfdfd; /* Un blanco muy sutil */
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.tarjeta-ingrediente:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-color: #e0e0e0;
}

.icono-ingrediente {
    font-size: 2.2rem;
    color: var(--verde); /* O usa var(--cyan) si prefieres ese acento */
    margin-top: 5px;
}

.info-ingrediente h3 {
    color: var(--texto);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-ingrediente p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* OTROS PRODUCTOS (Ajuste por si acaso) */
.grid-otros-productos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Para móvil */
}
/* ========================================= */
/* ESTILOS PARA LA PÁGINA DE BENEFICIOS      */
/* ========================================= */

/* NUEVO LAYOUT DE CABECERA (SPLIT SCREEN) */
.cabecera-beneficios-split {
    padding: 60px 5%;
    background-color: var(--blanco);
    display: flex;
    align-items: center;
    gap: 60px; /* Espacio entre la foto y el texto */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Para que se adapte si la pantalla es pequeña */
}

.cabecera-img {
    flex: 1;
    min-width: 300px;
}

.cabecera-img img {
    width: 100%;
    border-radius: 20px; /* Bordes suaves y amigables */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); /* Sombra elegante de revista */
    object-fit: cover;
}

.cabecera-texto {
    flex: 1;
    min-width: 300px;
    text-align: left; /* Texto alineado a la izquierda junto a la foto */
}

.cabecera-texto .titulo-principal {
    font-size: 3.5rem; /* Título grande e impactante */
    color: var(--verde);
    margin-bottom: 25px;
    line-height: 1.15;
}

.cabecera-texto .subtitulo-principal {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
}


.titulo-principal {
    font-size: 3rem;
    color: var(--verde);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitulo-principal {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Tarjetas de Datos Curiosos */
.tarjeta-fact {
    text-align: left; /* Alineamos a la izquierda para facilitar la lectura */
    padding: 40px 30px;
}

.numero-destacado {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 229, 255, 0.2); /* Un cyan transparente muy moderno */
    margin-bottom: -15px; /* Acerca el número al título */
    line-height: 1;
}

.tarjeta-fact h3 {
    color: var(--texto);
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.tarjeta-fact p {
    color: #666;
    line-height: 1.6;
}

/* Layout de Filas (Beneficios Profundos) */
.layout-beneficios-lista {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fila-beneficio {
    background: #fdfdfd;
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.fila-beneficio:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateX(5px); /* Pequeño movimiento a la derecha al pasar el mouse */
}

.ben-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ben-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.llamado-accion-final {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.llamado-accion-final h3 {
    color: var(--texto);
    font-size: 1.8rem;
}
/* ========================================= */
/* ESTILOS DEL PANEL EMERGENTE (MODAL BLOG)  */
/* ========================================= */

.modal-oculto {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); /* Fondo oscuro semitransparente */
    backdrop-filter: blur(5px); /* Efecto borroso moderno */
}

.modal-contenido {
    background-color: var(--blanco);
    margin: 5% auto; /* Centrado con margen arriba */
    width: 90%;
    max-width: 800px; /* Ancho máximo para lectura cómoda */
    border-radius: 20px;
    position: relative;
    animation: deslizarArriba 0.4s ease-out;
    max-height: 85vh; /* Evita que se salga de la pantalla */
    overflow-y: auto; /* Permite hacer scroll interno si el texto es largo */
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

@keyframes deslizarArriba {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cerrar-modal {
    color: #999;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cerrar-modal:hover { color: var(--verde); }

#modal-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.modal-texto-area { padding: 40px; }

/* Formato de lectura para que no sea un bloque aburrido */
.cuerpo-lectura p { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 20px; }
.cuerpo-lectura ul { margin-left: 20px; margin-bottom: 25px; }
.cuerpo-lectura li { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 10px; }
.cuerpo-lectura strong { color: var(--verde); }

/* ========================================= */
/* 📱 RESPONSIVE DESIGN (MÓVILES Y TABLETS)  */
/* ========================================= */
@media (max-width: 768px) {
    /* Convertir grids a una sola columna */
    .grid-tres-columnas { 
        grid-template-columns: 1fr; 
    }
    
    /* Apilar layouts de productos y beneficios */
    .producto-layout, .detalle-layout, .cabecera-beneficios-split { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 30px;
    }
    
    /* Ajustar Header para que no se desborde */
    .header { 
        flex-direction: column; 
        height: auto; 
        padding: 15px; 
        gap: 15px; 
    }
    .nav-links { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 10px;
    }
    
    /* Ajustar el Hero (Imagen principal) */
    .hero-caja-texto { 
        margin-left: 0; 
        max-width: 90%; 
        text-align: center; 
        padding: 30px; 
    }
    
    /* Ajustar textos técnicos */
    .desc-profesional { 
        columns: 1; 
        text-align: left; 
    }
    .grid-ingredientes { 
        grid-template-columns: 1fr; 
    }
    .cabecera-texto { 
        text-align: center; 
    }
    
    /* Ajustar Footer */
    .footer { 
        flex-direction: column; 
        text-align: center; 
        gap: 20px; 
        align-items: center; 
    }
}
/* ========================================= */
/* BOTÓN FLOTANTE DE WHATSAPP                */
/* ========================================= */
.whatsapp-flotante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-flotante:hover {
    transform: scale(1.15);
    color: white;
}
/* ========================================= */
/* CARRITO DE COMPRAS LATERAL                */
/* ========================================= */
#overlay-carrito {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 2000; backdrop-filter: blur(3px);
    transition: opacity 0.3s;
}

#panel-carrito {
    position: fixed; top: 0; right: 0; width: 100%; max-width: 400px;
    height: 100vh; background: white; z-index: 2001;
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
}

#panel-carrito.abierto { transform: translateX(0); }

.carrito-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #eee; }
.carrito-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 15px; }

/* Tarjetas de producto en el carrito */
.carrito-item { display: flex; gap: 15px; border-bottom: 1px solid #f5f5f5; padding-bottom: 15px; }
.carrito-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; border: 1px solid #eee; }
.carrito-item-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.carrito-item-info h4 { font-size: 0.95rem; color: var(--texto); margin-bottom: 5px; line-height: 1.2; }
.carrito-item-info p { font-size: 0.9rem; font-weight: bold; color: var(--cyan); }

.carrito-controles { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.btn-cant { background: #f0f0f0; border: none; width: 25px; height: 25px; border-radius: 5px; cursor: pointer; font-weight: bold; }
.btn-cant:hover { background: #e0e0e0; }
.btn-eliminar { color: #ff4d4d; font-size: 0.8rem; cursor: pointer; background: none; border: none; text-decoration: underline; margin-left: auto; }

.carrito-footer { padding: 25px 20px; border-top: 1px solid #eee; background: #fbfbfb; }
.carrito-total { display: flex; justify-content: space-between; font-size: 1.2rem; margin-bottom: 10px; }

/* ========================================= */
/* ELEMENTOS DE CONVERSIÓN Y CONFIANZA       */
/* ========================================= */

/* 1. SECCIÓN CONFIANZA (BADGES) */
.trust-badges { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 40px 10%; background: #fdfdfd; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.badge-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--texto); font-size: 1.1rem; }
.badge-item span { color: var(--verde); font-size: 1.5rem; }

/* 2. TABLA COMPARATIVA */
.tabla-comparativa { width: 100%; max-width: 800px; margin: 0 auto; border-collapse: collapse; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.tabla-comparativa th, .tabla-comparativa td { padding: 15px 20px; text-align: left; border-bottom: 1px solid #eee; }
.tabla-comparativa th { background: #f9f9f9; font-weight: 700; color: var(--texto); }
.tabla-comparativa th.highlight { background: var(--verde); color: white; }
.tabla-comparativa td.highlight { background: #f2fcf5; color: var(--verde); font-weight: 600; }
.tabla-comparativa tr:last-child td { border-bottom: none; }

/* 3. FAQ ACORDEÓN (Nativo HTML) */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
details.faq-item { background: white; border: 1px solid #eee; border-radius: 10px; padding: 15px 20px; cursor: pointer; transition: 0.3s; }
details.faq-item:hover { border-color: var(--verde); }
summary.faq-pregunta { font-weight: 600; font-size: 1.1rem; color: var(--texto); outline: none; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary.faq-pregunta::-webkit-details-marker { display: none; } /* Oculta flecha por defecto */
summary.faq-pregunta::after { content: '+'; color: var(--verde); font-size: 1.5rem; font-weight: normal; }
details[open] summary.faq-pregunta::after { content: '-'; }
.faq-respuesta { padding-top: 15px; color: #555; line-height: 1.6; border-top: 1px solid #eee; margin-top: 15px; cursor: text; }

/* 4. POPUP DE CAPTURA DE EMAIL */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 3000; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(5px); opacity: 0; pointer-events: none; transition: 0.3s; }
.popup-overlay.activo { opacity: 1; pointer-events: auto; }
.popup-caja { background: white; border-radius: 20px; padding: 40px; max-width: 400px; width: 90%; text-align: center; position: relative; transform: translateY(20px); transition: 0.3s; box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.popup-overlay.activo .popup-caja { transform: translateY(0); }
.btn-cerrar-popup { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 2rem; cursor: pointer; color: #999; line-height: 1; }
.popup-caja h2 { color: var(--verde); margin-bottom: 10px; font-size: 1.8rem; }
.popup-caja p { color: #555; margin-bottom: 20px; }
.popup-input { width: 100%; padding: 12px 15px; border: 2px solid #eee; border-radius: 10px; margin-bottom: 15px; outline: none; font-family: inherit; font-size: 1rem; }
.popup-input:focus { border-color: var(--verde); }

/* 5. NOTIFICACIÓN DE URGENCIA (Stock) */
.urgency-badge { display: inline-block; background: #fff4e5; color: #e65100; padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; border: 1px solid #ffe0b2; animation: latido 2s infinite; }
@keyframes latido { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }
/* ========================================= */
/* ESTILOS DE COLUMNA NEGATIVA (TABLA)       */
/* ========================================= */
.tabla-comparativa th.negativo { 
    background: #e53935; /* Rojo elegante y no muy chillón */
    color: white; 
}
.tabla-comparativa td.negativo { 
    background: #fff5f5; /* Fondo rojizo súper tenue */
    color: #c62828; /* Texto rojo oscuro */
    font-weight: 600; 
}

/* ========================================= */
/* FOOTER (Diseño de 3 Columnas Perfectas)   */
/* ========================================= */
.footer { 
    display: grid; 
    grid-template-columns: 1fr auto 1fr; /* Crea 3 espacios: Izquierda, Centro, Derecha */
    align-items: center; 
    padding: 40px 10%; 
    background: #fdfdfd; 
    border-top: 1px solid #eee; 
    font-size: 0.9rem; 
    color: #666; 
}

.footer-info { 
    justify-self: start; /* Empuja el texto de contacto a la izquierda */
}

.footer-social { 
    justify-self: center; /* Centra las redes sociales de forma absoluta */
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.footer-logo { 
    justify-self: end; /* Empuja el logo a la derecha */
}

.footer p { margin-bottom: 8px; }

/* ... (Tus estilos de .redes-links y .social-icon svg se quedan igual) ... */
.redes-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--verde); /* Toman el color verde de tu marca */
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    fill: var(--cyan); /* Se iluminan en celeste al pasar el mouse */
    transform: scale(1.15) translateY(-3px); /* Pequeño saltito elegante */
}

/* =========================================
   AÑADIR AL FINAL DE style.css
   Correcciones móvil — juraftcommercial.com
   ========================================= */

/* HAMBURGER — oculto en desktop */
.hamburger-btn { display: none !important; }
.menu-movil    { display: none !important; }
/* Carrito icon */
.btn-carrito-icon {
    background: none; border: none; font-size: 1.4rem;
    cursor: pointer; position: relative; padding: 4px 8px;
}
.badge-carrito {
    position: absolute; top: -4px; right: -6px;
    background: var(--verde); color: white;
    border-radius: 50%; padding: 1px 5px;
    font-size: 0.68rem; font-weight: 700;
}

/* Flecha corregida — usa entidades HTML, no caracteres especiales */
.flecha-negra {
    background: none; border: 2px solid #eee; border-radius: 50%;
    width: 48px; height: 48px; font-size: 1.4rem;
    color: var(--texto); cursor: pointer;
    transition: all 0.2s; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
}
.flecha-negra:hover { background: var(--verde); color: white; border-color: var(--verde); }


/* =========================================
   TABLET (max 1024px)
   ========================================= */
@media (max-width: 1024px) {
    .hero-caja-texto { margin-left: 35%; padding: 35px; }
    .grid-tres-columnas { grid-template-columns: repeat(2, 1fr); }
    .producto-layout { flex-wrap: wrap; }
    .prod-bundle { max-width: 100%; }
}


/* =========================================
   MÓVIL (max 768px)
   ========================================= */
@media (max-width: 768px) {

    /* ── HEADER ───────────────────────────── */
    .header {
        padding: 0 4%;
        height: 65px;
        flex-wrap: nowrap;
    }

    #logo-principal { width: 95px; }

    /* Ocultar nav desktop en móvil */
    #nav-desktop { display: none; }

    /* Mostrar hamburguesa */
    .hamburger-btn {
        display: flex ;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    .hamburger-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--verde);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    .hamburger-btn.abierto span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger-btn.abierto span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger-btn.abierto span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Nav actions en móvil — solo carrito + hamburguesa */
    .nav-actions {
        gap: 6px !important;
    }

    /* Ocultar "Comprar Ahora" en header móvil para no saturar */
    #btn-comprar-header { display: none; }

    /* ── MENÚ MÓVIL ───────────────────────── */
    .menu-movil {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px;
        left: 0; right: 0;
        background: white;
        z-index: 99;
        padding: 10px 0 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid #f0f0f0;
    }
    .menu-movil.visible { transform: translateY(0); }
    .menu-movil a {
        text-decoration: none;
        color: var(--texto);
        font-weight: 600;
        font-size: 1rem;
        padding: 14px 6%;
        border-bottom: 1px solid #f5f5f5;
        transition: color 0.2s, background 0.2s;
        display: block;
    }
    .menu-movil a:hover { color: var(--verde); background: #f9f9f9; }
    .menu-movil a:last-child { border-bottom: none; }

    /* ── HERO ─────────────────────────────── */
    .hero-slider {
        height: 100svh; /* Usa la altura real del viewport en móvil */
        align-items: flex-end;
        padding-bottom: 5vh;
    }
    .hero-caja-texto {
        margin-left: 0;
        margin: 0 4% 0 4%;
        padding: 24px 22px;
        width: 92%;
        max-width: 100%;
        border-radius: 16px;
    }
    .hero-caja-texto h1 { font-size: 1.7rem; margin-bottom: 10px; }
    .hero-caja-texto p  { font-size: 0.95rem; margin-bottom: 18px; }
    .btn-verde          { padding: 12px 24px; font-size: 0.95rem; }

    /* ── SECCIONES ────────────────────────── */
    .seccion-base  { padding: 40px 5%; }
    .titulo-seccion { font-size: 1.4rem; margin-bottom: 20px; }
    .grid-tres-columnas { grid-template-columns: 1fr; gap: 16px; }

    /* ── PRODUCTO ESTRELLA ────────────────── */
    .producto-layout {
        flex-direction: column;
        gap: 20px;
    }
    .prod-img-principal img { max-width: 100%; border-radius: 12px; }
    .prod-info-central h2  { font-size: 1.5rem; }
    .precio                { font-size: 1.7rem; }
    .controles-compra      { flex-wrap: wrap; gap: 12px; }
    .btn-cyan              { padding: 12px 20px; font-size: 0.9rem; }
    .prod-bundle           { max-width: 100%; width: 100%; }
    .urgency-badge         { font-size: 0.8rem; }

    /* ── FLECHAS CAMBIO LÍNEA ─────────────── */
    .contenedor-cambio-pagina { gap: 16px; padding: 16px 5%; }
    .flecha-negra  { width: 42px; height: 42px; font-size: 1.2rem; }
    .texto-cambio  { font-size: 0.8rem; }

    /* ── BADGES ───────────────────────────── */
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 30px 5%;
    }
    .badge-item { font-size: 0.95rem; }

    /* ── TABLA COMPARATIVA ────────────────── */
    .tabla-comparativa th,
    .tabla-comparativa td { padding: 10px 12px; font-size: 0.82rem; }

    /* ── FAQ ──────────────────────────────── */
    summary.faq-pregunta { font-size: 0.95rem; }

    /* ── FOOTER ───────────────────────────── */
    .footer {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        padding: 35px 5%;
    }
    .footer-info    { justify-self: center; }
    .footer-social  { justify-self: center; }
    .footer-logo    { justify-self: center; }
    .redes-links    { justify-content: center; }

    /* ── WHATSAPP ─────────────────────────── */
    .whatsapp-flotante {
        bottom: 16px;
        right: 14px;
        padding: 11px 14px;
        font-size: 0.82rem;
        gap: 7px;
    }
    .whatsapp-flotante svg { width: 20px; height: 20px; }

    /* ── CARRITO DRAWER ───────────────────── */
    #panel-carrito { width: 100vw !important; }

    /* ── AUTH PANEL ───────────────────────── */
    .panel-auth-caja { padding: 32px 20px 26px; }
    #btn-auth-label  { display: none; }
    .btn-login-header { padding: 8px 10px; }

    /* ── MODAL BLOG ───────────────────────── */
    .modal-contenido {
        margin: 0 !important;
        border-radius: 20px 20px 0 0 !important;
        position: fixed !important;
        bottom: 0; left: 0; right: 0;
        max-height: 88vh;
    }
}


/* =========================================
   MÓVIL MUY PEQUEÑO (max 390px)
   ========================================= */
@media (max-width: 390px) {
    .hero-caja-texto h1 { font-size: 1.45rem; }
    .tabla-comparativa th,
    .tabla-comparativa td { padding: 8px; font-size: 0.75rem; }
    .whatsapp-texto { display: none; } /* Solo ícono en teléfonos muy pequeños */
}