/* ==========================================================================
   STYLES.CSS — GABRIELO'S PIZZERIA
   Paleta: Negro / Dorado (#d59945)
   Fuentes: Oswald (títulos) + Roboto (cuerpo)
   
   ÍNDICE:
   1. Variables y Reset
   2. Tipografía base
   3. Utilidades
   4. Botones
   5. Barra de anuncios (Marquee)
   6. Navegación (Navbar + Hamburguesa)
   7. Hero Section (Inicio)
   8. Headers internos (Páginas secundarias)
   9. Secciones de contenido (Grid, About, Historia)
   10. Stats (Estadísticas)
   11. CTA (Call to Action)
   12. Menú y Filtros
   13. Promociones
   14. Contacto y Formulario
   15. Reseñas / Opinión (CTA Google)
   16. Experiencias — Hero Card destacada
   17. Experiencias — Masonry Grid + Tarjetas sociales
   18. Galería Reel (Auto-scroll)
   19. Wings & Salsas (Tabla)
   20. Footer
   21. Animaciones (Scroll reveal)
   22. Responsive — Tablet (max-width: 900px)
   23. Responsive — Móvil (max-width: 768px)
   24. Responsive — Móvil pequeño (max-width: 600px)
   ========================================================================== */


/* ==========================================================================
   1. VARIABLES Y RESET
   ========================================================================== */

:root {
    --bg-color: #000000;
    --bg-light: #121212;
    --text-color: #b4b4b4;
    --accent-color: #d59945;      /* Dorado principal */
    --accent-hover: #b88235;      /* Dorado oscuro (hover) */
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Previene scroll horizontal en móviles reales */
html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}


/* ==========================================================================
   2. TIPOGRAFÍA BASE
   ========================================================================== */

h1, h2, h3 {
    font-family: var(--font-head);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { width: 100%; display: block; }


/* ==========================================================================
   3. UTILIDADES
   ========================================================================== */

.container       { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gold       { color: var(--accent-color); }
.bg-black        { background-color: var(--bg-color); }
.bg-dark-grey    { background-color: var(--bg-light); }
.section-padding { padding: 80px 0; }
.text-center     { text-align: center; }

/* Espaciadores verticales (usados en tarjetas de experiencias) */
.spacer-s { margin-bottom: 10px; }
.spacer-m { margin-bottom: 30px; }
.spacer-l { margin-bottom: 50px; }


/* ==========================================================================
   4. BOTONES
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary       { background-color: var(--accent-color); color: var(--bg-color); }
.btn-primary:hover { background-color: var(--accent-hover); }

.btn-outline       { border-color: var(--white); color: var(--white); margin-left: 10px; }
.btn-outline:hover { background-color: var(--white); color: var(--bg-color); }

.btn-block { width: 100%; text-align: center; }

/* Botón tipo link (usado en tarjetas de promociones) */
.btn-link       { color: var(--accent-color); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); margin-top: auto; }
.btn-link:hover { color: var(--accent-hover); padding-left: 5px; }


/* ==========================================================================
   5. BARRA DE ANUNCIOS (MARQUEE)
   - Fija en la parte superior del viewport (z-index: 2000)
   - Altura: 35px — la navbar se posiciona justo debajo (top: 35px)
   ========================================================================== */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: var(--accent-color);
    color: #000;
    z-index: 2000;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #b88235;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 25s linear infinite;
    width: max-content;
}

/* Pausa el marquee al pasar el mouse */
.announcement-bar:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-content span {
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marquee-content .divider {
    color: #000;
    opacity: 0.5;
    font-size: 1.2rem;
    padding: 0;
}

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ==========================================================================
   6. NAVEGACIÓN (NAVBAR + HAMBURGUESA)
   - Fija debajo de la barra de anuncios (top: 35px, z-index: 1000)
   - En móvil: el menú hamburguesa despliega .nav-links a pantalla completa
   ========================================================================== */

.navbar {
    position: fixed;
    top: 35px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

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

/* Logo */
.logo a    { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); font-weight: 700; }
.logo span { color: var(--accent-color); }

/* Links de navegación (desktop) */
.nav-links   { display: flex; gap: 30px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; transition: var(--transition); }
.nav-links a:hover,
.nav-links a.active { color: var(--accent-color); }

/* Ícono hamburguesa — oculto en desktop, visible en móvil */
.hamburger { display: none; font-size: 1.5rem; color: var(--white); cursor: pointer; }


/* ==========================================================================
   7. HERO SECTION (PÁGINA DE INICIO)
   - Ocupa 80vh con imagen de fondo y overlay oscuro
   - Contenido centrado vertical y horizontalmente
   ========================================================================== */

.hero {
    height: 80vh;
    background: url('imgmain/img\ hero.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark-overlay);
}

.hero-content    { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.hero-content h1 { font-size: 4rem; margin-bottom: 20px; }
.hero-content p  { font-size: 1.2rem; margin-bottom: 30px; color: #ddd; }


/* ==========================================================================
   8. HEADERS INTERNOS (MENÚ, CONTACTO, EXPERIENCIAS)
   - margin-top: 130px compensa los elementos fijos:
     barra de anuncios (35px) + navbar (~60px) + espacio extra
   - Se ajusta a 105px en móvil (ver sección responsive)
   ========================================================================== */

.page-header {
    height: 50vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 130px;
}

.header-content    { position: relative; z-index: 1; }
.header-content h1 { font-size: 3.5rem; }


/* ==========================================================================
   9. SECCIONES DE CONTENIDO (GRID, ABOUT, HISTORIA)
   ========================================================================== */

/* Grid de 2 columnas (usado en About, Eventos, Promos del index) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

/* Títulos de sección */
.section-title        { font-size: 2.5rem; margin-bottom: 20px; border-left: 4px solid var(--accent-color); padding-left: 15px; }
.section-title-center { font-size: 2.5rem; margin-bottom: 30px; display: inline-block; border-bottom: 3px solid var(--accent-color); padding-bottom: 10px; }

/* Lista de características (About) */
.feature-list    { margin-top: 20px; }
.feature-list li { margin-bottom: 10px; font-size: 1.1rem; }
.feature-list i  { color: var(--accent-color); margin-right: 10px; width: 25px; }

/* Columna de imagen con efecto grayscale */
.image-column img       { border-radius: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); filter: grayscale(20%); transition: var(--transition); }
.image-column img:hover { filter: grayscale(0%); }

/* Banner de historia */
.history-banner-container { margin: 30px auto; max-width: 1000px; }
.history-banner           { width: 100%; height: auto; max-height: 400px; object-fit: cover; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.history-section p        { max-width: 800px; margin: 0 auto 20px auto; font-size: 1.1rem; color: #ccc; }


/* ==========================================================================
   10. STATS (ESTADÍSTICAS)
   ========================================================================== */

.stats-heading { text-align: center; font-size: 1.8rem; margin-bottom: 50px; color: var(--text-color); }
.stats-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; justify-content: center; }

.stat-box       { background-color: var(--accent-color); padding: 40px 20px; text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-box:hover { transform: translateY(-10px); background-color: var(--accent-hover); }
.stat-box i     { font-size: 3rem; color: #000; margin-bottom: 20px; }
.stat-number    { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: #000; line-height: 1; margin-bottom: 10px; }
.stat-label     { font-size: 1.1rem; font-weight: 700; color: #000; text-transform: uppercase; }


/* ==========================================================================
   11. CTA (CALL TO ACTION)
   - NOTA: background-attachment: fixed no funciona en iOS/Android.
     En móvil el efecto parallax simplemente no se aplica.
   ========================================================================== */

.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('https://images.unsplash.com/photo-1571997478779-2ad5117cfcdd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 100px 0;
    text-align: center;
    background-attachment: fixed;
}

.cta-content h2 { margin-bottom: 15px; font-size: 3rem; }
.cta-content p  { margin-bottom: 30px; font-size: 1.2rem; }


/* ==========================================================================
   12. MENÚ Y FILTROS
   ========================================================================== */

/* Botones de filtro de categorías */
.menu-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 50px; margin-top: 20px; }

.filter-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    font-family: var(--font-head);
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background-color: var(--accent-color); color: var(--bg-color); }

/* Grid de platillos */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

/* Tarjeta de platillo */
.menu-item       { background-color: var(--bg-light); border-radius: 8px; overflow: hidden; transition: var(--transition); box-shadow: 0 5px 15px rgba(0,0,0,0.2); animation: fadeIn 0.5s ease; }
.menu-item:hover  { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
.menu-item.hide   { display: none; }

/* Imagen del platillo */
.menu-img                    { position: relative; height: 250px; overflow: hidden; }
.menu-img img                { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-item:hover .menu-img img { transform: scale(1.1); }

/* Etiqueta de precio */
.price { position: absolute; bottom: 15px; right: 15px; background-color: var(--accent-color); color: #000; padding: 5px 15px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; border-radius: 4px; }

/* Info del platillo */
.menu-info    { padding: 25px; text-align: center; }
.menu-info h3 { color: var(--accent-color); margin-bottom: 10px; font-size: 1.4rem; }
.menu-info p  { font-size: 0.95rem; color: #999; }

/* Etiqueta tipo de vino */
.vino-tipo {
    display: inline-block;
    background: linear-gradient(135deg, rgba(213, 153, 69, 0.2), rgba(213, 153, 69, 0.08));
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(213, 153, 69, 0.3);
    margin-bottom: 8px;
}

/* ======= Cerveza Card (sin imagen) ======= */
.cerveza-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.cerveza-header {
    background: linear-gradient(135deg, #1a1403 0%, #2a1f06 50%, #1a1403 100%);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 2px solid var(--accent-color);
}

.cerveza-header i {
    color: var(--accent-color);
    font-size: 1.6rem;
    opacity: 0.85;
}

.cerveza-header h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 1.5px;
    font-family: var(--font-head);
}

.cerveza-list {
    padding: 0;
    flex: 1;
}

.cerveza-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background-color 0.25s ease;
}

.cerveza-row:last-child {
    border-bottom: none;
}

.cerveza-row:hover {
    background-color: rgba(213, 153, 69, 0.06);
}

.cerveza-name {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cerveza-price {
    color: var(--accent-color);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    background: rgba(213, 153, 69, 0.1);
    padding: 4px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Indicador de mililitros en header */
.cerveza-ml {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

/* ======= Mix de Sabores Card ======= */
.mix-header {
    background: linear-gradient(135deg, #1a0a03 0%, #2d1408 50%, #1a0a03 100%) !important;
    border-bottom-color: #c0703a !important;
}

.mix-header i {
    color: #e8944a !important;
}

.mix-header h3 {
    color: #e8944a !important;
}

.mix-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background-color 0.25s ease;
}

.mix-row:last-child {
    border-bottom: none;
}

.mix-row:hover {
    background-color: rgba(232, 148, 74, 0.06);
}

.mix-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mix-desc {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    letter-spacing: 0.2px;
}


/* ==========================================================================
   13. PROMOCIONES
   ========================================================================== */

/* Header de la página de promos */
.promo-header { background-image: url('https://images.unsplash.com/photo-1571407970349-bc16e327c1c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); }

/* Promo destacada (banner grande con timer) */
.featured-promo {
    background: linear-gradient(135deg, #222 0%, #111 100%);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}
.featured-promo::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(213, 153, 69, 0.1) 0%, transparent 70%); pointer-events: none; }

.promo-text    { flex: 1; min-width: 300px; z-index: 2; }
.promo-text h2 { font-size: 2.5rem; margin-bottom: 10px; }

.badge { background-color: var(--accent-color); color: #000; padding: 5px 10px; font-weight: bold; font-size: 0.8rem; border-radius: 4px; display: inline-block; margin-bottom: 15px; }

/* Precio viejo/nuevo */
.price-tag { margin: 20px 0; font-family: var(--font-head); }
.old-price { text-decoration: line-through; color: #777; font-size: 1.5rem; margin-right: 15px; }
.new-price { color: var(--white); font-size: 2.5rem; font-weight: bold; }

/* Timer de cuenta regresiva */
.promo-timer   { text-align: center; background: rgba(0,0,0,0.5); padding: 20px; border-radius: 8px; border: 1px solid #333; z-index: 2; }
.promo-timer p { text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; color: var(--accent-color); }

.countdown-container { display: flex; gap: 15px; }
.time-box      { background-color: #333; width: 70px; height: 70px; border-radius: 5px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0.8rem; color: #aaa; }
.time-box span { font-size: 1.8rem; font-weight: bold; color: var(--white); font-family: var(--font-head); }

/* Grid de tarjetas de promoción */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-bottom: 40px; }

/* Tarjeta de promoción individual */
.promo-card       { background-color: #1a1a1a; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.3); transition: var(--transition); display: flex; flex-direction: column; }
.promo-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(213, 153, 69, 0.15); }

.card-img                       { position: relative; height: 220px; width: 100%; }
.card-img img                   { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.promo-card:hover .card-img img { transform: scale(1.05); }
.card-date { position: absolute; top: 15px; right: 15px; background-color: var(--accent-color); color: #000; padding: 5px 12px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; font-family: var(--font-head); border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }

.card-body    { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card-body h3 { margin-bottom: 15px; font-size: 1.5rem; color: var(--white); border-bottom: 2px solid #333; padding-bottom: 10px; }
.card-body p  { font-size: 1rem; color: #ccc; margin-bottom: 25px; line-height: 1.5; }


/* ==========================================================================
   14. CONTACTO Y FORMULARIO
   ========================================================================== */

.contact-header { background-image: url('imgmain/cont.jpeg'); }

/* Grid de cajas de contacto (teléfono, email, dirección) */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; text-align: center; }

.contact-box       { background-color: var(--bg-light); padding: 40px 20px; border-radius: 8px; border: 1px solid #222; transition: var(--transition); }
.contact-box:hover { border-color: var(--accent-color); transform: translateY(-5px); }
.contact-box h3    { margin-bottom: 15px; font-size: 1.3rem; color: var(--white); }
.contact-box p     { color: #ccc; margin-bottom: 5px; }

/* Ícono circular dentro de las cajas */
.icon-circle                      { width: 70px; height: 70px; border: 2px solid var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent-color); font-size: 1.5rem; transition: var(--transition); }
.contact-box:hover .icon-circle   { background-color: var(--accent-color); color: var(--bg-color); }

/* Mapa embebido */
.map-section       { width: 100%; line-height: 0; filter: grayscale(80%); transition: var(--transition); }
.map-section:hover { filter: grayscale(0%); }

/* Formulario */
.form-container { max-width: 700px; margin: 0 auto; }
.form-header    { text-align: center; margin-bottom: 40px; }
.contact-form   { display: flex; flex-direction: column; gap: 20px; }

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-color);
    border: 1px solid #333;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus { border-color: var(--accent-color); }


/* ==========================================================================
   15. RESEÑAS / OPINIÓN (CTA PARA DEJAR RESEÑA EN GOOGLE)
   ========================================================================== */

.review-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(213, 153, 69, 0.15);
    transition: var(--transition);
}

.review-container:hover {
    box-shadow: 0 15px 40px rgba(213, 153, 69, 0.25);
    transform: translateY(-5px);
}

.review-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.review-btn {
    font-size: 1.1rem;
    padding: 16px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.review-btn i {
    font-size: 1.3rem;
}


/* ==========================================================================
   16. EXPERIENCIAS — HERO CARD DESTACADA (RESEÑA PRINCIPAL)
   - Layout horizontal en desktop, se invierte a column-reverse en tablet
   ========================================================================== */

.experiences-header { background-image: url('imgmain/exp.jpeg'); }

.hero-card {
    background-color: #1a1a1a;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(213, 153, 69, 0.15);
    min-height: 380px;
}

/* Columna izquierda: texto de la reseña */
.hero-content-left {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left .review-text { font-size: 1.15rem; color: #ffffff; margin: 20px 0; font-style: italic; line-height: 1.5; }
.hero-content-left .username    { font-size: 1.1rem; color: #ffffff; }

/* Columna derecha: imágenes */
.hero-images-right { flex-basis: 45%; display: flex; gap: 4px; }
.hero-img-col      { flex: 1; overflow: hidden; }
.hero-img-col img  { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.hero-card:hover .hero-img-col img { transform: scale(1.05); }


/* ==========================================================================
   17. EXPERIENCIAS — MASONRY GRID + TARJETAS SOCIALES
   ========================================================================== */

/* Layout masonry con CSS columns */
.masonry-grid {
    column-count: 3;
    column-gap: 25px;
    width: 100%;
}

/* Tarjeta tipo red social */
.social-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    break-inside: avoid;       /* Evita que se corte entre columnas */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.social-card:hover { border-color: #444; }

.card-image img { width: 100%; display: block; }
.card-content   { padding: 20px; }

/* Header de usuario (avatar + nombre + fecha) */
.user-header   { display: flex; align-items: center; margin-bottom: 15px; }
.avatar-circle { width: 40px; height: 40px; background-color: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; margin-right: 12px; font-size: 1.1rem; }
.user-info     { display: flex; flex-direction: column; }
.username      { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.time-ago      { font-size: 0.75rem; color: #777; }

/* Texto de reseña y estrellas */
.review-text  { font-size: 0.95rem; color: #ccc; line-height: 1.5; margin-bottom: 15px; font-style: italic; }
.rating-stars { color: var(--accent-color); font-size: 0.9rem; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #333; }

/* Acciones (like + compartir) */
.card-actions { display: flex; justify-content: space-between; align-items: center; }

.like-btn       { background: none; border: none; color: #aaa; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; transition: color 0.3s; font-family: var(--font-body); }
.like-btn:hover { color: var(--white); }
.like-btn.liked { color: #ed4956; }
.like-btn.liked i { animation: pop 0.3s linear 1; font-weight: 900; }

.share-icon       { color: #aaa; cursor: pointer; transition: color 0.3s; }
.share-icon:hover { color: var(--white); }


/* ==========================================================================
   18. GALERÍA REEL (AUTO-SCROLL HORIZONTAL)
   - Scroll automático infinito controlado por JS (main.js)
   - En móvil cada item ocupa 70vw para mostrar parte del siguiente
   ========================================================================== */

.gallery-section {
    padding: 60px 0;
    background-color: var(--bg-color);
    overflow: hidden;
}

.gallery-title-wrapper {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.gallery-reel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: auto;              /* El JS controla la velocidad, no CSS */
    -webkit-overflow-scrolling: touch;   /* Scroll suave en iOS */
    scrollbar-width: none;               /* Ocultar scrollbar — Firefox */
    -ms-overflow-style: none;            /* Ocultar scrollbar — IE/Edge */
}

/* Ocultar scrollbar — Chrome/Safari */
.gallery-reel::-webkit-scrollbar {
    display: none;
}

.reel-item {
    flex: 0 0 300px;
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #222;
    transition: var(--transition);
    user-select: none;                   /* Previene ghost al arrastrar */
}

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;                /* Evita drag de imagen en desktop */
    filter: grayscale(20%) brightness(0.9);
}

/* Overlay con gradiente que aparece en hover */
.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.reel-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Hover en items del reel */
.reel-item:hover                { transform: scale(1.02); border-color: var(--accent-color); z-index: 2; }
.reel-item:hover .reel-overlay  { opacity: 1; }
.reel-item:hover .reel-icon     { transform: translateY(0); }
.reel-item:hover img            { filter: grayscale(0%); }


/* ==========================================================================
   19. WINGS & SALSAS (TABLA DE NIVELES DE PICANTE)
   - Mobile-first: 1 columna por defecto
   - Desktop (min-width: 600px): 5 columnas
   ========================================================================== */

.wings-salsas-hidden  { display: none; }
.wings-salsas-visible { display: block; animation: fadeIn 0.5s ease; }

.tabla-salsas {
    border: 2px double #ffffff;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 430px;
}

.tabla-salsas legend {
    font-family: "Arial Black", impact, sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 10px;
    color: var(--white);
}

/* Grid de salsas — 1 columna en móvil */
.salsas {
    grid-template-columns: 1fr;
}

.item-salsa {
    background-color: #000000;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

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

.salsa-texto {
    font-size: 11px;
    text-align: left;
    line-height: 1.1;
    color: var(--white);
}

.salsa-texto strong {
    font-size: 14px;
    font-family: "Arial Black", impact, sans-serif;
    text-transform: uppercase;
}

/* Indicador de nivel de picante (íconos de fuego) */
.nivel-picante {
    display: flex;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 4px 8px;
    gap: 3px;
    background-color: #000000;
    flex-shrink: 0;
}

.flame { width: 16px; height: 16px; }

/* Colores de fuego por nivel */
.flame-yellow { fill: #FFD700; }
.flame-orange { fill: #FFA500; }
.flame-red    { fill: #FF4500; }
.flame-dark   { fill: #8B0000; }


/* ==========================================================================
   20. FOOTER
   ========================================================================== */

footer { background-color: #111; padding: 40px 0; text-align: center; border-top: 1px solid #222; }

.social-icons         { margin-bottom: 20px; }
.social-icons a       { font-size: 1.2rem; margin: 0 10px; color: var(--white); transition: var(--transition); }
.social-icons a:hover { color: var(--accent-color); }
.footer-content p     { font-size: 0.9rem; color: #666; }


/* ==========================================================================
   21. ANIMACIONES (SCROLL REVEAL + UTILIDADES)
   - Las clases fade-in-* se activan con IntersectionObserver en main.js
   - Al entrar en viewport, se agrega la clase .visible
   ========================================================================== */

.fade-in-up    { opacity: 0; transform: translateY(30px);  transition: 1s ease; }
.fade-in-left  { opacity: 0; transform: translateX(-30px); transition: 1s ease; }
.fade-in-right { opacity: 0; transform: translateX(30px);  transition: 1s ease; }
.visible       { opacity: 1; transform: translate(0, 0); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}


/* ==========================================================================
   22. RESPONSIVE — TABLET (max-width: 900px)
   ========================================================================== */

@media (max-width: 900px) {

    /* Experiencias: Hero card pasa a vertical (imagen arriba, texto abajo) */
    .hero-card              { flex-direction: column-reverse; }
    .hero-images-right      { height: 300px; flex-basis: auto; width: 100%; margin-bottom: 0px; }
    .hero-content-left      { padding: 20px; padding-top: 15px; }
    .hero-content-left .review-text { font-size: 1rem; }
    .hero-content-left .username    { font-size: 1rem; }

    /* Masonry: de 3 a 2 columnas */
    .masonry-grid { column-count: 2; }
}


/* ==========================================================================
   23. RESPONSIVE — MÓVIL (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

    /* --- Navegación: menú hamburguesa --- */
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        height: calc(100vh - 70px);
        background-color: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);         /* Oculto por defecto */
        transition: transform 0.3s ease-in;
    }
    .nav-links.nav-active { transform: translateX(0%); }  /* Se muestra al hacer clic */
    .hamburger { display: block; }

    /* --- Hero (Inicio) --- */
    .hero-content h1 { font-size: 2rem; }

    /* --- Headers internos (Menú, Contacto, etc.) ---
       Usa el margin-top: 130px del desktop (no se reduce en móvil)
       height: auto + min-height para que el contenido no se comprima
       padding-top: 20px da espacio extra para que el h1 no quede pegado a la navbar */
    .page-header     { height: auto; min-height: 25vh; padding-top: 20px; }
    .section-padding { padding: 40px 0; }
    .header-content h1 { font-size: 2rem; }

    /* --- Layouts --- */
    .grid-2        { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }

    /* --- Historia --- */
    .history-banner { max-height: 250px; }

    /* --- Reseñas CTA --- */
    .review-container { padding: 40px 20px; }
    .review-btn       { width: 100%; padding: 15px 20px; font-size: 1rem; }

    /* --- Galería Reel --- */
    .reel-item {
        flex: 0 0 70vw;       /* Muestra parte del siguiente item */
        height: 350px;
    }
    .gallery-reel {
        gap: 15px;
        padding-left: 20px;   /* Espacio inicial para no pegar al borde */
    }
}


/* ==========================================================================
   24. RESPONSIVE — MÓVIL PEQUEÑO (max-width: 600px)
   ========================================================================== */

@media (max-width: 600px) {

    /* Masonry: de 2 a 1 columna */
    .masonry-grid { column-count: 1; }
}


/* ==========================================================================
   RESPONSIVE — DESKTOP (min-width: 600px)
   Tabla de salsas: de 1 columna (móvil) a 5 columnas
   ========================================================================== */

@media (min-width: 600px) {
    .tabla-salsas {
        max-width: 1000px;
    }
    .salsas {
        grid-template-columns: repeat(5, 1fr);
    }
    .item-salsa {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        border: 1px solid #ffffff;
    }
    .salsa-texto {
        text-align: center;
    }
}