/* =====================================================
   PIZZERÍA DON DUCHOVNY — Estilos principales
   Paleta: crema, carbón, terracota, oliva (Palermo)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --cream:    #f5f0e8;
    --white:    #fdfcfa;
    --charcoal: #1a1a18;
    --mid:      #6b6560;
    --light:    #e8e2d9;
    --accent:   #7a6652;
    --olive:    #4e5c43;
    --border:   #d4cec5;
    --navbar-h: 62px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.75;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Tipografía base ── */
h1,h2,h3,h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 2px;
    background: var(--accent);
    margin: 0.7rem auto 0;
}
.seccion-tag {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    background: rgba(26,26,24,0.96);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}
.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--cream);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}
.brand-svg {
    width: 32px;
    height: 32px;
    color: var(--cream);
    flex-shrink: 0;
    transition: color 0.25s, transform 0.35s cubic-bezier(.4,0,.2,1);
}
.nav-brand:hover .brand-svg {
    color: var(--accent);
    transform: rotate(-6deg) scale(1.08);
}
.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    letter-spacing: 0.07em;
    color: var(--cream);
    transition: color 0.2s;
}
.nav-brand:hover .brand-text {
    color: var(--accent);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: rgba(245,240,232,0.7);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ══════════════════════════════════════
   HERO FULL
══════════════════════════════════════ */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(15%) brightness(0.55);
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero-full:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,24,0.3) 0%, rgba(26,26,24,0.65) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    color: var(--cream);
    padding: 0 1.5rem;
    margin-top: var(--navbar-h);
}
.hero-tag {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.65);
    margin-bottom: 1rem;
}
.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 1.2rem;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(245,240,232,0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}
.hero-sub strong {
    color: var(--cream);
    font-weight: 500;
}
.btn-hero {
    display: inline-block;
    background: transparent;
    border: 1.5px solid rgba(245,240,232,0.6);
    color: var(--cream);
    padding: 0.75rem 2.2rem;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, border-color 0.25s;
}
.btn-hero:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.btn-hero-outline {
    background: rgba(245,240,232,0.08);
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}
/* Badges flotantes en el hero */
.hero-badge {
    position: absolute;
    bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    border: 1px solid rgba(245,240,232,0.2);
    background: rgba(26,26,24,0.55);
    backdrop-filter: blur(6px);
    padding: 0.8rem 1.4rem;
    border-radius: 2px;
}
.badge-left  { left:  4vw; }
.badge-right { right: 4vw; }
.badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}
.badge-txt {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.55);
}
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(245,240,232,0.4);
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════
   SIN PALMA — marquee animado
══════════════════════════════════════ */
.sin-palma {
    background: var(--olive);
    color: #fff;
    padding: 0.65rem 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
}
.sin-palma-track {
    display: inline-flex;
    gap: 0;
    animation: marquee 28s linear infinite;
}
.sin-palma-track span { padding-right: 2rem; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   HISTORIA
══════════════════════════════════════ */
.historia {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    padding: 6rem 6vw;
    background: var(--white);
}
.historia-img-wrap {
    position: relative;
    flex: 1 1 340px;
}

/* ── Retrato del fundador ── */
.fundador-retrato {
    position: relative;
    display: inline-block;
    width: 100%;
}
.fundador-foto {
    width: 100%;
    display: block;
    border-radius: 3px;
    /* Efecto foto antigua: sepia suave + viñeta */
    filter: sepia(35%) contrast(1.08) brightness(0.96) saturate(0.85);
    box-shadow:
        8px 8px 0 var(--light),
        0 0 0 1px var(--border),
        inset 0 0 60px rgba(0,0,0,0.15);
    transition: filter 0.4s ease;
}
.fundador-foto:hover {
    filter: sepia(15%) contrast(1.05) brightness(1.0) saturate(0.95);
}
/* Caption debajo de la foto */
.fundador-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,24,0.88) 0%, transparent 100%);
    padding: 2.4rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-radius: 0 0 3px 3px;
}
.fundador-nombre {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 0.03em;
}
.fundador-año-tag {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.6);
}
/* Marca de época en esquina superior */
.fundador-retrato::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.historia-img-wrap img {
    width: 100%;
    border-radius: 3px;
    filter: grayscale(20%);
    box-shadow: 8px 8px 0 var(--light);
}
.historia-año {
    position: absolute;
    bottom: -1.2rem;
    right: -1.2rem;
    background: var(--charcoal);
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    letter-spacing: 0.04em;
}
.historia-texto {
    flex: 1 1 340px;
}
.historia-texto h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.historia-texto p {
    color: var(--mid);
    margin-bottom: 1rem;
}

/* Contadores */
.contadores {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.contador-item {
    text-align: center;
    min-width: 90px;
}
.contador-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}
.contador-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 0.3rem;
    display: block;
}

/* ══════════════════════════════════════
   MENÚ ROCKOLA
══════════════════════════════════════ */
.menu {
    background: var(--charcoal);
    padding: 5rem 6vw;
}
.menu .section-title { color: var(--cream); }
.menu .section-title::after { background: var(--accent); }
.menu .seccion-tag { color: var(--accent); }

.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 0.7rem 1.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232,226,217,0.45);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active, .tab-btn:hover {
    color: var(--cream);
    border-bottom-color: var(--accent);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Layout rockola: imagen izquierda, lista derecha */
.menu-rockola {
    display: flex;
    gap: 0;
    max-width: 980px;
    margin: 0 auto;
    min-height: 460px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 3px;
    overflow: hidden;
}

/* Panel de imagen con slides apilados */
.rockola-img-wrap {
    position: relative;
    flex: 0 0 46%;
    overflow: hidden;
    background: #111;
}
.rockola-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%) brightness(0.82);
    opacity: 0;
    transform: translateY(30px) scale(1.04);
    transition: opacity 0.55s cubic-bezier(.4,0,.2,1),
                transform 0.55s cubic-bezier(.4,0,.2,1),
                filter 0.55s;
    will-change: opacity, transform;
}
.rockola-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: grayscale(5%) brightness(0.88);
}
.rockola-slide.out-up {
    opacity: 0;
    transform: translateY(-30px) scale(0.97);
}

/* Caption sobre la imagen */
.rockola-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, transparent 100%);
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
    pointer-events: none;
    z-index: 2;
}
.rockola-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lista del menú (panel derecho) */
.menu-list.rockola-list {
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    max-height: 460px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}
.menu-list.rockola-list::-webkit-scrollbar { width: 4px; }
.menu-list.rockola-list::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.menu-list.rockola-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}
.menu-list.rockola-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    transform-origin: bottom;
}
.menu-list.rockola-list li:hover,
.menu-list.rockola-list li.active {
    background: rgba(255,255,255,0.04);
}
.menu-list.rockola-list li.active::before,
.menu-list.rockola-list li:hover::before {
    transform: scaleY(1);
}
.menu-list.rockola-list li strong {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    display: block;
}
.menu-list.rockola-list .desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(232,226,217,0.5);
    margin-top: 0.15rem;
}
.menu-list.rockola-list .precio {
    color: var(--accent);
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.93rem;
}

/* Fallback: menu-list sin rockola (por si acaso) */
.menu-list:not(.rockola-list) {
    list-style: none;
    max-width: 680px;
    margin: 0 auto;
}
.menu-list:not(.rockola-list) li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
}
.menu-list:not(.rockola-list) li strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream);
    display: block;
}

/* Responsive rockola */
/* ══════════════════════════════════════
   GALERÍA
══════════════════════════════════════ */
.galeria {
    background: var(--white);
    padding: 5rem 6vw;
}
.imagenes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.card-pizza {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    width: 240px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.card-pizza:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}
.card-pizza img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    filter: grayscale(10%);
    transition: filter 0.35s;
}
.card-pizza:hover img { filter: grayscale(0%); }
.card-pizza p {
    padding: 0.7rem 0 0.9rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    text-align: center;
    color: var(--charcoal);
}

/* ══════════════════════════════════════
   SERVICIOS
══════════════════════════════════════ */
.servicios {
    background: var(--cream);
    padding: 5rem 6vw;
}
.servicios-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
}
.servicios-lista > div {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    width: 240px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.servicios-lista > div:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}
.servicios-lista img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter 0.3s;
}
.servicios-lista > div:hover img { filter: grayscale(0%); }
.serv-body {
    padding: 1rem 1.1rem 1.2rem;
}
.serv-body h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}
.serv-body p {
    font-size: 0.87rem;
    color: var(--mid);
    line-height: 1.6;
}

/* ══════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════ */
.testimonios {
    background: var(--charcoal);
    padding: 5rem 6vw;
}
.testimonios-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonios blockquote {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--accent);
    padding: 1.4rem 1.8rem;
    border-radius: 2px;
    font-style: italic;
    color: var(--light);
    font-size: 0.97rem;
    flex: 1 1 280px;
    max-width: 460px;
    line-height: 1.7;
}
.testimonios span {
    display: block;
    margin-top: 0.8rem;
    color: var(--accent);
    font-style: normal;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter {
    background: var(--accent);
    padding: 3.5rem 2rem;
}
.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.newsletter-inner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    color: #fff;
}
.newsletter-inner p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}
.form-newsletter {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}
.form-newsletter input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255,255,255,0.15);
    color: #fff;
    outline: none;
    border-radius: 2px 0 0 2px;
}
.form-newsletter input::placeholder { color: rgba(255,255,255,0.6); }
.form-newsletter button {
    padding: 0.75rem 1.4rem;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    transition: background 0.2s;
}
.form-newsletter button:hover { background: #000; }

/* ══════════════════════════════════════
   CONTACTO
══════════════════════════════════════ */
.contacto {
    background: var(--white);
    padding: 5rem 6vw;
}
.contacto-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 940px;
    margin: 0 auto 3rem;
}
.form-contacto {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.form-contacto input,
.form-contacto textarea,
.form-contacto select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    background: var(--cream);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.form-contacto input:focus,
.form-contacto textarea:focus,
.form-contacto select:focus { border-color: var(--accent); }
.form-contacto textarea { min-height: 90px; resize: vertical; }
.form-contacto button {
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 2px;
    padding: 0.85rem;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.form-contacto button:hover { background: var(--accent); }
.form-ok {
    color: var(--olive);
    font-size: 0.92rem;
    text-align: center;
    padding: 0.5rem;
}

.contacto-info {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.info-icon { font-size: 1.3rem; margin-top: 0.1rem; }
.info-item strong {
    display: block;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.1rem;
}
.info-item p { color: var(--mid); font-size: 0.95rem; }

.redes {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.red-btn {
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.red-btn:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.red-btn.whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }

/* Mapa */
.mapa-wrap {
    max-width: 940px;
    margin: 0 auto;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.mapa-wrap iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(1.05);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    background: var(--charcoal);
    padding: 3rem 6vw 1.5rem;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 1.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-logo {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent);
    filter: grayscale(20%);
}
.footer-brand p {
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer-brand strong { color: var(--cream); }
.footer-links, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links a, .footer-social a {
    color: rgba(232,226,217,0.6);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--cream); }
.footer-copy {
    text-align: center;
    color: rgba(232,226,217,0.35);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   PROCESO — pasos de fabricación
══════════════════════════════════════ */
.proceso {
    background: var(--cream);
    padding: 5.5rem 6vw;
}
.proceso-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}
.proceso-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2rem 1.8rem;
    flex: 1 1 200px;
    max-width: 240px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.proceso-step:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.paso-num {
    position: absolute;
    top: -0.9rem;
    left: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-style: italic;
    color: var(--accent);
    background: var(--white);
    padding: 0 0.4rem;
}
.paso-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}
.proceso-step h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.proceso-step p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.65;
}
.proceso-img-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.proceso-img-row img {
    flex: 1 1 220px;
    max-width: 340px;
    height: 220px;
    object-fit: cover;
    border-radius: 3px;
    filter: grayscale(12%) brightness(0.97);
    transition: filter 0.35s, transform 0.35s;
}
.proceso-img-row img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

/* ══════════════════════════════════════
   RECONOCIMIENTOS
══════════════════════════════════════ */
.reconocimientos {
    background: var(--charcoal);
    padding: 5rem 6vw;
}
.reconoc-inner {
    max-width: 960px;
    margin: 0 auto;
}
.reconoc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.reconoc-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 1.8rem 2rem;
    flex: 1 1 200px;
    max-width: 220px;
    text-align: center;
    transition: background 0.25s, transform 0.25s;
}
.reconoc-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}
.reconoc-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}
.reconoc-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}
.reconoc-item span {
    font-size: 0.78rem;
    color: rgba(232,226,217,0.5);
    letter-spacing: 0.04em;
    line-height: 1.5;
}

/* ══════════════════════════════════════
   PARALLAX BANNER
══════════════════════════════════════ */
.galeria-parallax {
    height: 340px;
    overflow: hidden;
    position: relative;
}
.parallax-img {
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 2rem 6vw;
    filter: brightness(0.6);
}
.parallax-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(245,240,232,0.7);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    filter: brightness(1.8);
}

/* ══════════════════════════════════════
   FOOTER NUEVO
══════════════════════════════════════ */
footer {
    background: var(--charcoal);
    padding: 4rem 6vw 0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 0;
}
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 220px;
    max-width: 280px;
}
.footer-svg {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    opacity: 0.85;
}
.footer-nombre {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}
.footer-brand p {
    color: rgba(232,226,217,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}
.footer-sinpalma {
    color: #7aad6a !important;
    font-size: 0.8rem !important;
    margin-top: 0.3rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 0 0 auto;
}
.footer-col h5 {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(232,226,217,0.35);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.footer-col a {
    color: rgba(232,226,217,0.6);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-col p {
    color: rgba(232,226,217,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}
.footer-social a {
    color: rgba(232,226,217,0.45);
    transition: color 0.2s;
}
.footer-social a:hover { color: var(--cream); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-copy {
    color: rgba(232,226,217,0.28);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}
.footer-tagline {
    color: rgba(232,226,217,0.28);
    font-size: 0.78rem;
    font-style: italic;
}

/* ══════════════════════════════════════
   BOTÓN FLOTANTE WHATSAPP
══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--charcoal);
    color: var(--cream);
    font-size: 0.78rem;
    white-space: nowrap;
    padding: 0.4rem 0.9rem;
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    letter-spacing: 0.04em;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 9000;
    background: var(--charcoal);
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.12);
    width: 42px;
    height: 42px;
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    pointer-events: none;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover { background: var(--accent); }

/* ══════════════════════════════════════
   GALERÍA — MASONRY GRID (v2)
══════════════════════════════════════ */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 0.6rem;
}
.masonry-tall { grid-row: span 2; }
.masonry-wide { grid-column: span 2; }

/* Override old fixed-width card for grid context */
.masonry-grid .card-pizza {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
}
.masonry-grid .card-pizza img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) brightness(0.92);
    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
}
.masonry-grid .card-pizza:hover img {
    transform: scale(1.07);
    filter: grayscale(0%) brightness(0.7);
}
.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem 1.4rem;
    opacity: 0;
    transition: opacity 0.35s;
    background: linear-gradient(to top, rgba(26,26,24,0.88) 0%, rgba(26,26,24,0.2) 55%, transparent 100%);
    pointer-events: none;
}
.masonry-grid .card-pizza:hover .card-overlay { opacity: 1; }
.card-overlay p {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 1rem;
    margin: 0 0 0.2rem;
    line-height: 1.3;
}
.card-overlay span {
    font-size: 0.72rem;
    color: rgba(245,240,232,0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
/* Suppress old plain-text <p> if any */
.masonry-grid .card-pizza > p:not(.card-overlay p) { display: none; }

/* ══════════════════════════════════════
   TESTIMONIOS — STARS + AVATARS (v2)
══════════════════════════════════════ */
.stars {
    color: #c87941;
    font-size: 0.92rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
}
.testimonios blockquote footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.testimonios blockquote footer cite {
    color: var(--accent);
    font-style: normal;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   MANIFIESTO
══════════════════════════════════════ */
.manifiesto {
    background: var(--charcoal);
    padding: 6rem 6vw;
}
.manifiesto-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.manifiesto-texto {
    flex: 1 1 340px;
}
.manif-lead {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 1.8rem;
    line-height: 1.85;
}
.manif-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}
.manif-lista li {
    color: rgba(232,226,217,0.75);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}
.manif-check {
    color: #c87941;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.05em;
}
.manifiesto-img {
    flex: 1 1 320px;
    position: relative;
}
.manifiesto-img img {
    width: 100%;
    display: block;
    border-radius: 3px;
    filter: grayscale(20%) brightness(0.82);
    transition: filter 0.4s;
}
.manifiesto-img:hover img {
    filter: grayscale(0%) brightness(0.9);
}
.manif-cita {
    position: absolute;
    bottom: -1.8rem;
    right: -1.8rem;
    background: var(--accent);
    color: var(--cream);
    padding: 1.3rem 1.6rem;
    max-width: 250px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.55;
    z-index: 2;
}
.manif-cita em {
    display: block;
    font-size: 0.72rem;
    margin-top: 0.5rem;
    opacity: 0.7;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   TIMELINE
══════════════════════════════════════ */
.timeline {
    background: var(--white);
    padding: 6rem 6vw;
}
.timeline-track {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 0 2rem;
}
.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%);
}
.tl-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2.5rem);
    margin-bottom: 3rem;
    position: relative;
}
.tl-item.tl-right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 2.5rem);
}
.tl-dot {
    position: absolute;
    left: 50%;
    top: 1.1rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--white);
    transform: translateX(-50%);
    z-index: 2;
    transition: transform 0.25s;
}
.tl-item:hover .tl-dot { transform: translateX(-50%) scale(1.4); }
.tl-dot-gold {
    background: #c87941;
    box-shadow: 0 0 14px rgba(200,121,65,0.55);
}
.tl-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.4rem 1.7rem;
    max-width: 320px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.tl-item:hover .tl-card {
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.tl-card-highlight {
    border-color: #c87941;
    background: rgba(200,121,65,0.05);
}
.tl-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.3rem;
    line-height: 1;
}
.tl-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}
.tl-card p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════
   EQUIPO
══════════════════════════════════════ */
.equipo {
    background: var(--cream);
    padding: 5.5rem 6vw;
}
.equipo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.equipo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    flex: 1 1 220px;
    max-width: 260px;
    transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.28s;
}
.equipo-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}
.equipo-foto {
    height: 230px;
    background-size: cover;
    background-position: center top;
    filter: grayscale(25%);
    transition: filter 0.38s;
}
.equipo-card:hover .equipo-foto {
    filter: grayscale(0%);
}
.equipo-info {
    padding: 1.2rem 1.3rem 1.4rem;
}
.equipo-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--charcoal);
}
.equipo-rol {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.65rem;
    font-weight: 500;
}
.equipo-info p {
    font-size: 0.85rem;
    color: var(--mid);
    font-style: italic;
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.faq {
    background: var(--white);
    padding: 5.5rem 6vw;
}
.faq-inner {
    max-width: 740px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item[open] {
    border-color: var(--accent);
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.15rem 1.5rem;
    font-weight: 500;
    font-size: 0.97rem;
    color: var(--charcoal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    line-height: 1;
    color: var(--accent);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item summary:hover {
    background: var(--cream);
}
.faq-item[open] summary {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}
.faq-item > p {
    padding: 1.1rem 1.5rem 1.3rem;
    color: var(--mid);
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0;
    animation: faqOpen 0.25s ease;
}
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
    .historia { flex-direction: column; padding: 4rem 6vw; gap: 2.5rem; }
    .historia-img-wrap { flex: 0 0 auto; width: 100%; max-width: 480px; margin: 0 auto; }
    .historia-texto { flex: 0 0 auto; width: 100%; }

    .menu-rockola { flex-direction: column; min-height: auto; }
    .rockola-img-wrap { flex: 0 0 280px; height: 280px; position: relative; }
    .rockola-slide { position: absolute; }
    .menu-list.rockola-list { max-height: 320px; }

    .contadores { gap: 1.4rem; }

    .contacto-grid { gap: 2rem; }

    .footer-inner { flex-direction: column; gap: 2rem; }

    /* Manifiesto: stack en tablet */
    .manifiesto-inner { flex-direction: column; gap: 3rem; }
    .manif-cita { position: static; margin-top: 1.5rem; max-width: 100%; }

    /* Timeline: mantener pero reducir */
    .timeline { padding: 5rem 5vw; }

    /* Equipo: 2 columnas */
    .equipo-grid { gap: 1.2rem; }
    .equipo-card { flex: 1 1 calc(50% - 0.6rem); max-width: calc(50% - 0.6rem); }

    /* Masonry: 3 columnas */
    .masonry-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
    .masonry-wide { grid-column: span 2; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--navbar-h);
        left: 0; right: 0;
        background: var(--charcoal);
        padding: 1rem 2rem 1.5rem;
        gap: 1rem;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }

    /* Hero */
    .hero-title { font-size: clamp(2rem, 9vw, 3.2rem); }
    .hero-ctas { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .hero-tag { font-size: 0.72rem; }

    /* Sin palma banner */
    .sin-palma { font-size: 0.75rem; padding: 0.55rem 1rem; letter-spacing: 0.12em; }

    /* Historia */
    .historia { padding: 3.5rem 5vw; flex-direction: column; gap: 2rem; }
    .historia-img-wrap { max-width: 100%; }
    .historia-año { font-size: 1.6rem; }
    .historia-texto h2 { font-size: 1.7rem; }
    .fundador-nombre { font-size: 1rem; }

    /* Contadores */
    .contadores { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .contador-item { min-width: 100px; flex: 1 1 100px; }
    .contador-num { font-size: 2rem; }

    /* Menú tabs */
    .tabs { flex-wrap: wrap; gap: 0.3rem; justify-content: center; }
    .tab-btn { font-size: 0.72rem; padding: 0.4rem 0.9rem; }
    .menu-rockola { flex-direction: column; min-height: auto; }
    .rockola-img-wrap { flex: 0 0 220px; height: 220px; }
    .menu-list.rockola-list { max-height: 300px; }
    .rockola-item { padding: 0.7rem 1rem; font-size: 0.9rem; }

    /* Galería */
    .imagenes { gap: 1rem; }
    .card-pizza { width: calc(50% - 0.5rem); min-width: 140px; }
    .card-pizza img { height: 130px; }
    /* Masonry: 2 columnas en mobile */
    .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .masonry-wide { grid-column: span 2; }
    .masonry-tall { grid-row: span 1; }

    /* Servicios */
    .servicios-lista { gap: 1rem; }
    .servicios-lista > div { width: calc(50% - 0.5rem); min-width: 140px; }
    .servicios-lista img { height: 110px; }

    /* Testimonios */
    .testimonios { padding: 3.5rem 5vw; }
    .testimonios blockquote { flex: 1 1 100%; max-width: 100%; }

    /* Timeline: stack vertical */
    .timeline-track::before { left: 1.2rem; transform: none; }
    .tl-item,
    .tl-item.tl-right {
        justify-content: flex-start;
        padding-left: 3.5rem;
        padding-right: 0;
    }
    .tl-dot { left: 1.2rem; transform: translateX(-50%); }
    .tl-item:hover .tl-dot { transform: translateX(-50%) scale(1.4); }
    .tl-card { max-width: 100%; }

    /* Manifiesto */
    .manifiesto { padding: 4rem 5vw; }
    .manif-cita { right: 0; bottom: -1.2rem; }

    /* Equipo: 2 col */
    .equipo { padding: 4rem 5vw; }
    .equipo-card { flex: 1 1 calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); }

    /* FAQ */
    .faq { padding: 4rem 5vw; }

    /* Newsletter */
    .newsletter { padding: 3rem 1.5rem; }
    .form-newsletter { flex-direction: column; max-width: 100%; gap: 0.5rem; }
    .form-newsletter input,
    .form-newsletter button { border-radius: 2px; }
    .newsletter-inner h3 { font-size: 1.25rem; }

    /* Contacto */
    .contacto { padding: 3.5rem 5vw; }
    .contacto-grid { flex-direction: column; gap: 2rem; }
    .mapa-wrap iframe { height: 260px; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: 1.8rem; text-align: center; }
    .footer-brand { flex-direction: column; align-items: center; gap: 0.6rem; }
    .footer-links, .footer-social { align-items: center; }
    .redes { justify-content: center; }

    /* Secciones: reducir padding */
    .galeria, .servicios, .contacto { padding: 3.5rem 5vw; }
    .seccion-header { margin-bottom: 2rem; }

    /* Proceso */
    .proceso { padding: 3.5rem 5vw; }
    .proceso-step { max-width: 100%; flex: 1 1 160px; }
    .proceso-img-row img { height: 160px; }

    /* Reconocimientos */
    .reconocimientos { padding: 3.5rem 5vw; }
    .reconoc-item { flex: 1 1 140px; max-width: 100%; }

    /* Equipo: 1 columna en 420px */
    .equipo-card { flex: 1 1 100%; max-width: 100%; }

    /* Masonry: 1 columna en 420px */
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .masonry-wide { grid-column: span 1; }
    .masonry-tall { grid-row: span 1; }

    /* Parallax: desactivar fixed en mobile */
    .parallax-img { background-attachment: scroll; height: 200px; }
    .galeria-parallax { height: 200px; }

    /* Footer nuevo */
    .footer-inner { flex-direction: column; gap: 1.8rem; }
    .footer-brand { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.3rem; }

    /* Botones flotantes */
    .whatsapp-float { bottom: 1.4rem; right: 1.4rem; width: 50px; height: 50px; }
    .scroll-top { bottom: 5rem; right: 1.4rem; }
}

/* ── Mobile pequeño (≤ 420px) ── */
@media (max-width: 420px) {
    .hero-title { font-size: 1.9rem; }
    .card-pizza { width: 100%; }
    .servicios-lista > div { width: 100%; }
    .contador-num { font-size: 1.7rem; }
    .brand-text { font-size: 0.85rem; }
    .rockola-img-wrap { height: 180px; }
    .menu-list.rockola-list { max-height: 260px; }
    .proceso-step { flex: 1 1 100%; max-width: 100%; }
    .reconoc-item { flex: 1 1 100%; }
    .footer-col { width: 100%; }
}

