/* ==========================================================================
   Restaurante Tia Lena — Sistema Visual Autoral & Gastronomia Caiçara
   Direção de Arte: Gastronomia Costeira Brasileira & Tradição de Beira-Mar (1980)
   Paleta 3A (Areia, Linho e Luz Natural) | Cardápio 2B | Hero 1B
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    /* Paleta Cromática Caiçara Nobre (Opção 3A: Areia, Madeira e Luz Solar) */
    --ocean-deep: #03222a;
    --ocean-teal: #063742;
    --ocean-medium: #094754;
    --ocean-soft: #1b5b68;
    
    --sand-light: #ffffff;
    --sand-warm: #f7f1e5;
    --sand-paper: #fcf9f2;
    --sand-deep: #ede1cd;
    --sand-border: #e0d3bd;
    
    --coastal-green: #144e43;
    --coastal-sage: #6b8f84;
    --coastal-mist: #c0d5ce;
    
    --terracotta: #b8562e;
    --terracotta-dark: #8c381a;
    --terracotta-soft: #f4b693;
    
    --gold-accent: #cfa15a;
    --gold-light: #f5e4c3;
    --gold-brass: #a67c3b;
    
    --ink: #0a2e37;
    --ink-soft: #234c54;
    --muted: #536f74;
    --white: #ffffff;
    
    /* Tipografia */
    --heading: "Libre Baskerville", Georgia, serif;
    --body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout & Espaçamentos */
    --container: 1220px;
    --section-pad: clamp(4.5rem, 7.5vw, 7.5rem);
    --shadow-soft: 0 16px 40px rgba(3, 34, 42, 0.08);
    --shadow-deep: 0 28px 60px rgba(3, 34, 42, 0.22);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    background-color: var(--ocean-deep);
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--ink);
    background-color: var(--sand-paper);
    background-image:
        radial-gradient(rgba(180, 148, 96, 0.06) 1px, transparent 1px),
        radial-gradient(rgba(140, 108, 66, 0.04) 0.8px, transparent 0.8px);
    background-size: 14px 14px, 22px 22px;
    background-position: 0 0, 7px 11px;
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
}

::selection {
    color: var(--sand-light);
    background: var(--terracotta-dark);
}

/* Skip link de acessibilidade */
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 18px;
    color: var(--white);
    background: var(--ocean-deep);
    border: 1px solid var(--gold-accent);
    transform: translateY(-180%);
    transition: transform 0.2s ease;
}
.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 4px;
}

/* ==========================================================================
   Componentes Estruturais & Tipografia Editorial
   ========================================================================= */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-pad);
    isolation: isolate;
}

.text-center {
    text-align: left;
}

.section-head {
    max-width: 780px;
    margin: 0 0 clamp(2.6rem, 5vw, 4.5rem);
}

.section-tag,
.hero-kicker {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 0.85rem;
    color: var(--terracotta-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-tag::after {
    content: "";
    width: 2.8rem;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.section-title,
.contact-title {
    margin: 0 0 1.2rem;
    max-width: 24ch;
    font-family: var(--heading);
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--ink);
}

.section-sub {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Botões Resort & Gastronomia */
.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(3, 34, 42, 0.16);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    color: var(--sand-light);
    background: var(--terracotta);
    border-color: var(--terracotta);
    box-shadow: 0 4px 14px rgba(184, 86, 46, 0.25);
}

.btn-primary:hover {
    color: var(--white);
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    box-shadow: 0 8px 20px rgba(140, 56, 26, 0.35);
}

.btn-outline {
    color: var(--sand-light);
    background: transparent;
    border-color: rgba(245, 228, 195, 0.45);
}

.btn-outline:hover {
    color: var(--ocean-deep);
    background: var(--sand-light);
    border-color: var(--sand-light);
}

.btn-sm {
    min-height: 40px;
    padding: 0.65rem 1.15rem;
    font-size: 0.78rem;
}

.text-link {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    padding-block: 0.4rem;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(245, 228, 195, 0.45);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
    color: var(--white);
    border-color: var(--white);
    transform: translateX(4px);
}

/* ==========================================================================
   Header & Topbar Concierge
   ========================================================================== */

.topbar {
    color: var(--sand-warm);
    background: var(--ocean-deep);
    font-size: 0.74rem;
    border-bottom: 1px solid rgba(216, 201, 178, 0.15);
}

.topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.topbar-tag {
    color: var(--gold-accent);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.topbar-link {
    transition: color 0.2s ease;
}

.topbar-link:hover {
    color: var(--gold-light);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 249, 242, 0.94);
    border-bottom: 1px solid var(--sand-border);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header.scrolled {
    background: rgba(252, 249, 242, 0.98);
    box-shadow: 0 10px 28px rgba(3, 34, 42, 0.07);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex: 0 0 auto;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold-accent);
}

.brand-info {
    display: grid;
}

.brand-title {
    font-family: var(--heading);
    font-size: 1.32rem;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.brand-subtitle {
    color: var(--terracotta-dark);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 2vw, 1.8rem);
}

.nav-link {
    position: relative;
    padding-block: 1.6rem;
    color: var(--ink-soft);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 1.15rem;
    left: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hamburger-btn {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.header.menu-is-open .hamburger-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header.menu-is-open .hamburger-btn span:nth-child(2) {
    opacity: 0;
}
.header.menu-is-open .hamburger-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
    display: grid;
    max-height: 0;
    padding-inline: 24px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    background: var(--sand-paper);
    transition: max-height 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
}

.header.menu-is-open .mobile-drawer {
    max-height: calc(100dvh - 68px);
    padding-block: 16px 28px;
    visibility: visible;
    border-top: 1px solid var(--sand-border);
}

.mobile-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--sand-border);
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ==========================================================================
   Hero Cinematográfico (1B: Narrativa Costeira em Camadas)
   ========================================================================== */

.hero-section {
    position: relative;
    isolation: isolate;
    overflow: clip;
    min-height: min(840px, calc(100vh - 36px));
    padding-block: clamp(4.5rem, 8vw, 8rem);
    background-color: var(--ocean-deep);
    background-image:
        radial-gradient(ellipse at 85% 25%, rgba(207, 161, 90, 0.18), transparent 48%),
        radial-gradient(ellipse at 15% 75%, rgba(184, 86, 46, 0.12), transparent 42%),
        linear-gradient(98deg, rgba(3, 34, 42, 0.98) 0%, rgba(6, 55, 66, 0.94) 52%, rgba(8, 52, 62, 0.88) 100%);
    background-size: cover;
    color: var(--sand-light);
}

.hero-waterlight {
    position: absolute;
    z-index: 0;
    right: -8%;
    top: -18%;
    width: min(68vw, 820px);
    height: min(68vw, 820px);
    border-radius: 48% 52% 50% 50%;
    opacity: 0.48;
    background:
        radial-gradient(ellipse at 35% 42%, rgba(207, 161, 90, 0.3) 0 6%, transparent 38%),
        radial-gradient(ellipse at 65% 58%, rgba(107, 143, 132, 0.35) 0 6%, transparent 40%),
        radial-gradient(ellipse at 48% 48%, rgba(20, 78, 67, 0.25), transparent 60%);
    animation: waterlight-dance 18s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes waterlight-dance {
    0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
    50% { transform: translate3d(-2.5%, 3.5%, 0) rotate(5deg) scale(1.04); }
    100% { transform: translate3d(2%, -2%, 0) rotate(-3deg) scale(0.98); }
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-horizon {
    position: absolute;
    left: 4%;
    right: 36%;
    top: 50%;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    opacity: 0.18;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
    gap: clamp(2.5rem, 5.5vw, 5.5rem);
    align-items: center;
    max-width: 1360px;
}

.hero-text-col {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    color: var(--gold-accent);
}

.hero-title {
    max-width: 13ch;
    margin: 0 0 1.4rem;
    font-family: var(--heading);
    font-size: clamp(2.8rem, 5.2vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
}

.hero-title em {
    display: block;
    color: var(--gold-light);
    font-weight: 400;
    font-style: italic;
}

.hero-title-line {
    display: block;
}

.hero-lead {
    max-width: 46ch;
    margin: 0 0 2.2rem;
    color: var(--coastal-mist);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
}

.hero-location {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.6rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(207, 161, 90, 0.22);
    color: var(--coastal-mist);
    font-size: 0.84rem;
    font-weight: 600;
}

/* Vitrine de Imagem do Hero (Camadas Nobres & Caixa de Luz) */
.hero-visual-col {
    position: relative;
    width: 100%;
    max-width: 740px;
    justify-self: end;
}

.hero-showcase {
    position: relative;
    z-index: 2;
}

.showcase-main-card {
    position: relative;
    overflow: hidden;
    background: var(--ocean-teal);
    border: 1px solid rgba(207, 161, 90, 0.3);
    border-radius: 2px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.showcase-badge-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    padding: 6px 14px;
    background: rgba(3, 34, 42, 0.88);
    border: 1px solid rgba(207, 161, 90, 0.4);
    border-radius: 20px;
    color: var(--gold-light);
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.showcase-dish-img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.04);
}

.showcase-plate-tag {
    position: relative;
    z-index: 3;
    padding: 1.35rem 1.8rem;
    background: rgba(3, 34, 42, 0.95);
    border-top: 1px solid rgba(207, 161, 90, 0.25);
}

.showcase-plate-tag strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--heading);
    font-size: 1.15rem;
    color: var(--gold-light);
}

.showcase-plate-tag span {
    color: var(--coastal-mist);
    font-size: 0.86rem;
}

/* Transição suave da maré (Degradê orgânico para a areia) */
.hero-tide-transition {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 3;
    height: clamp(36px, 4.5vw, 60px);
    background: linear-gradient(180deg, transparent, var(--sand-paper));
    pointer-events: none;
}

.section-breath {
    position: relative;
    height: 1px;
    overflow: hidden;
    background: transparent;
}

.breath-wave {
    display: none;
}

.section-breath::after {
    content: "";
    display: block;
    width: min(240px, 35%);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--sand-border), transparent);
}

/* ==========================================================================
   Nossa História & Origens (1980) — Acervo Editorial
   ========================================================================== */

.history-section {
    position: relative;
    background-color: var(--sand-paper);
    background-image:
        radial-gradient(rgba(140, 108, 66, 0.04) 0.8px, transparent 0.8px),
        linear-gradient(rgba(252, 249, 242, 0.95), rgba(252, 249, 242, 0.95)),
        url("assets/tialena/areia-caiçara-textura.jpg");
    background-size: 16px 16px, auto, 480px 480px;
    overflow: hidden;
}

.history-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
    gap: clamp(3rem, 6vw, 6.5rem);
    align-items: center;
}

.history-photo-col {
    position: relative;
}

.vintage-card {
    position: relative;
    margin: 0;
    padding: 14px;
    background: var(--sand-warm);
    border: 1px solid var(--sand-border);
    border-radius: 2px;
    box-shadow: 0 18px 42px rgba(3, 34, 42, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vintage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(3, 34, 42, 0.11);
}

.vintage-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1px;
    filter: contrast(1.05) brightness(0.97);
}

.vintage-caption {
    padding: 1.3rem 0.5rem 0.3rem;
}

.v-year {
    display: inline-block;
    margin-bottom: 0.3rem;
    color: var(--terracotta-dark);
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.vintage-caption strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.08rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.vintage-caption p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.55;
}

.history-lead-p {
    margin: 0 0 1.2rem;
    color: var(--ink);
    font-size: 1.15rem;
    line-height: 1.62;
}

.history-body-p {
    max-width: 64ch;
    margin: 0 0 2.2rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.68;
}

/* Trilha Gastronômica / Timeline */
.timeline-container {
    display: grid;
    margin-top: 2rem;
    border-top: 1px solid var(--sand-border);
}

.timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.2rem;
    padding-block: 1.15rem;
    border-bottom: 1px solid var(--sand-border);
    transition: transform 0.25s ease, padding-inline 0.25s ease;
}

.timeline-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.35s ease;
}

.timeline-row:hover::before {
    width: 100%;
}

.timeline-row:hover {
    padding-inline: 0.6rem;
    transform: translateX(4px);
}

.tl-badge {
    color: var(--terracotta-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tl-right strong {
    display: block;
    margin-bottom: 0.2rem;
    font-family: var(--heading);
    font-size: 1rem;
    color: var(--ink);
}

.tl-right p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.family-quote {
    margin: 2.5rem 0 0;
    padding: 1.2rem 1.6rem;
    border-left: 3px solid var(--terracotta);
    background: rgba(247, 241, 229, 0.6);
    border-radius: 0 2px 2px 0;
}

.family-quote-text {
    margin: 0 0 0.5rem;
    color: var(--ink);
    font-family: var(--heading);
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.55;
}

.family-quote-author {
    display: block;
    color: var(--terracotta-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: normal;
}

/* ==========================================================================
   Gastronomia Costeira / Cardápio Editorial (2B: Caderno com Respiro)
   ========================================================================== */

.menu-section {
    position: relative;
    background-color: var(--ocean-teal);
    background-image:
        radial-gradient(ellipse at 12% 25%, rgba(20, 78, 67, 0.4), transparent 45%),
        radial-gradient(ellipse at 88% 75%, rgba(184, 86, 46, 0.12), transparent 45%),
        linear-gradient(180deg, rgba(3, 34, 42, 0.96), rgba(6, 55, 66, 0.98));
    background-size: cover;
    color: var(--sand-light);
    border-block: 1px solid rgba(207, 161, 90, 0.22);
}

.menu-section .section-tag {
    color: var(--gold-accent);
}

.menu-section .section-title {
    color: var(--white);
}

.menu-section .section-sub {
    color: var(--coastal-mist);
}

/* Grade Rítmica de Especialidades */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(2rem, 3.2vw, 3rem);
    align-items: stretch;
}

.dish-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    border-top: 2px solid rgba(207, 161, 90, 0.35);
    background: transparent;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

/* Os 2 últimos pratos (Camarão Gratinado e Lula à Dorê) preenchem a linha com generosidade e equilíbrio */
.dish-card:nth-child(5),
.dish-card:nth-child(6) {
    grid-column: span 3;
}

.dish-card:hover,
.dish-card:focus-within {
    border-top-color: var(--gold-accent);
    transform: translateY(-6px);
}

/* Prato 1: Destaque Nobre em 2 Colunas */
.dish-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(2rem, 4vw, 3.8rem);
    align-items: center;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid rgba(207, 161, 90, 0.2);
    margin-bottom: 0.8rem;
}

.dish-card-featured .dish-img-box {
    margin-top: 0;
}

.dish-card-featured .dish-title {
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    margin-bottom: 0.8rem;
}

.dish-card-featured .dish-text {
    font-size: 1rem;
    line-height: 1.65;
}

.dish-img-box {
    position: relative;
    overflow: hidden;
    margin-top: 0.85rem;
    background: var(--ocean-deep);
    border-radius: 2px;
    box-shadow: 0 14px 32px rgba(2, 28, 34, 0.38);
}

.dish-img-box img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish-card:nth-child(6) .dish-img-box img {
    aspect-ratio: 4 / 3;
}

.dish-card:hover .dish-img-box img {
    transform: scale(1.04);
}

.dish-label {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    background: var(--terracotta-dark);
    color: var(--sand-light);
    font-family: var(--body);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(3, 34, 42, 0.4);
    z-index: 2;
}

.dish-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 1.1rem;
}

.dish-title {
    color: var(--sand-light);
    font-family: var(--heading);
    font-size: clamp(1.15rem, 1.6vw, 1.38rem);
    line-height: 1.25;
    margin: 0 0 0.55rem;
}

.dish-text {
    color: var(--coastal-mist);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 1.2rem;
    flex: 1;
}

.dish-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(207, 161, 90, 0.2);
}

.dish-serve {
    color: var(--coastal-sage);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dish-link {
    color: var(--gold-light);
    font-size: 0.84rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.dish-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Petiscos & Coquetelaria da Costa (Fotografia Apetitosa) */
.appetizers-section-box {
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(207, 161, 90, 0.22);
}

.box-head {
    margin-bottom: 2.2rem;
}

.box-kicker {
    display: block;
    color: var(--gold-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.box-heading {
    margin: 0;
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white);
}

.appetizers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.4rem, 2.5vw, 2.5rem);
}

.appetizer-card {
    display: flex;
    flex-direction: column;
    background: rgba(3, 34, 42, 0.55);
    border: 1px solid rgba(207, 161, 90, 0.22);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.appetizer-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-accent);
    box-shadow: 0 16px 36px rgba(2, 28, 34, 0.4);
}

.app-img-wrap {
    overflow: hidden;
    background: var(--ocean-deep);
}

.app-img-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.appetizer-card:hover .app-img-wrap img {
    transform: scale(1.045);
}

.app-content {
    padding: 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.app-content strong {
    font-family: var(--heading);
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-bottom: 0.35rem;
}

.app-content p {
    margin: 0;
    color: var(--coastal-mist);
    font-size: 0.84rem;
    line-height: 1.5;
    flex: 1;
}

/* Sobremesas Feitas na Casa */
.desserts-box {
    margin-top: 4.5rem;
    padding: clamp(2.5rem, 4.5vw, 3.8rem);
    background: rgba(3, 34, 42, 0.5);
    border: 1px solid rgba(207, 161, 90, 0.25);
    border-radius: 3px;
}

.desserts-title {
    margin: 0;
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.5vw, 1.95rem);
    color: var(--gold-light);
}

.desserts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 860px;
    margin: 2.2rem auto 0;
}

.dessert-card {
    display: flex;
    flex-direction: column;
    background: rgba(6, 55, 66, 0.5);
    border: 1px solid rgba(207, 161, 90, 0.2);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dessert-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-accent);
}

.dessert-img-wrap {
    overflow: hidden;
    background: var(--ocean-deep);
}

.dessert-img-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.dessert-card:hover .dessert-img-wrap img {
    transform: scale(1.04);
}

.dessert-content {
    padding: 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dessert-content h4 {
    margin: 0 0 0.35rem;
    font-family: var(--heading);
    font-size: 1.05rem;
    color: var(--sand-light);
}

.dessert-content p {
    margin: 0;
    color: var(--coastal-mist);
    font-size: 0.84rem;
    line-height: 1.5;
    flex: 1;
}

/* Banner CTA Cardápio Completo */
.menu-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4.5rem;
    padding: clamp(2rem, 4vw, 3.2rem);
    background: var(--sand-warm);
    color: var(--ink);
    border: 1px solid var(--sand-border);
    border-radius: 2px;
    box-shadow: 0 16px 40px rgba(3, 34, 42, 0.12);
}

.mcb-text h3 {
    margin: 0 0 0.35rem;
    font-family: var(--heading);
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    color: var(--ink);
}

.mcb-text p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

/* ==========================================================================
   Memória & Avaliações (3A: Dignidade e Calor Humano)
   ========================================================================== */

.reviews-section {
    position: relative;
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
    color: var(--sand-light);
    background-color: var(--coastal-green);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(207, 161, 90, 0.12), transparent 50%),
        linear-gradient(135deg, rgba(18, 75, 64, 0.98), rgba(8, 52, 62, 0.96));
    background-size: cover;
    border-block: 1px solid rgba(207, 161, 90, 0.2);
}

.reviews-editorial {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.reviews-seal-static {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 14vw, 150px);
    aspect-ratio: 1;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    padding: 1rem;
    text-align: center;
    background: rgba(3, 34, 42, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.seal-num {
    display: block;
    font-family: var(--heading);
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1;
    color: var(--gold-accent);
    font-weight: 700;
}

.seal-sub {
    display: block;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand-light);
    margin-top: 0.35rem;
}

.seal-loc {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coastal-mist);
    margin-top: 0.2rem;
}

.reviews-content-col .section-tag {
    color: var(--gold-accent);
}

.reviews-content-col .section-title {
    color: var(--white);
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    max-width: 24ch;
}

.reviews-content-col .section-sub {
    color: var(--coastal-mist);
    max-width: 58ch;
    margin-bottom: 1.6rem;
}

.reviews-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.reviews-rating-tag {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================================================
   Salão & Ambiência (3A: Areia e Luz Natural de Praia)
   ========================================================================== */

.ambiance-section {
    position: relative;
    background-color: var(--sand-paper);
    background-image:
        radial-gradient(rgba(140, 108, 66, 0.04) 0.8px, transparent 0.8px),
        linear-gradient(rgba(252, 249, 242, 0.95), rgba(252, 249, 242, 0.95)),
        url("assets/tialena/areia-caiçara-textura.jpg");
    background-size: 16px 16px, auto, 480px 480px;
    border-block: 1px solid var(--sand-border);
}

.ambiance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.amb-frame {
    margin: 0;
    position: relative;
    background: var(--sand-warm);
    padding: 14px;
    border: 1px solid var(--sand-border);
    border-radius: 2px;
    box-shadow: 0 20px 48px rgba(3, 34, 42, 0.08);
}

.amb-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 1px;
    filter: saturate(0.96) contrast(1.04);
}

.amb-caption {
    padding: 1.2rem 0.4rem 0.2rem;
}

.amb-caption strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.amb-caption span {
    display: block;
    font-size: 0.84rem;
    color: var(--muted);
}

.ambiance-text-col {
    position: relative;
}

.ambiance-lead {
    max-width: 54ch;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.65;
}

.ambiance-features {
    display: grid;
    margin-top: 1.8rem;
    border-top: 1px solid var(--sand-border);
}

.af-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.85rem;
    padding-block: 0.95rem;
    border-bottom: 1px solid var(--sand-border);
}

.af-check {
    color: var(--terracotta);
    font-weight: 800;
    font-size: 1.05rem;
}

.af-item strong {
    display: block;
    font-family: var(--heading);
    font-size: 0.95rem;
    color: var(--ink);
}

.af-item span:last-child {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
}

.ambiance-action {
    margin-top: 2.2rem;
}

/* ==========================================================================
   A Cozinha Caiçara & Artesãos da Gastronomia
   ========================================================================== */

.kitchen-section {
    position: relative;
    background-color: var(--sand-warm);
    background-image:
        radial-gradient(rgba(140, 108, 66, 0.04) 0.8px, transparent 0.8px),
        linear-gradient(rgba(247, 241, 229, 0.96), rgba(247, 241, 229, 0.96));
    border-block: 1px solid var(--sand-border);
}

.kitchen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.2rem, 2vw, 2rem);
}

.kitchen-card {
    display: flex;
    flex-direction: column;
    background: var(--sand-paper);
    border: 1px solid var(--sand-border);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kitchen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(3, 34, 42, 0.08);
}

.kc-img-wrap {
    overflow: hidden;
    background: var(--sand-deep);
}

.kc-img-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.kitchen-card:hover .kc-img-wrap img {
    transform: scale(1.045);
}

.kc-info {
    padding: 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kc-info strong {
    display: block;
    font-family: var(--heading);
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.kc-info p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
    flex: 1;
}

.kitchen-counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    margin-top: 4rem;
    padding-top: 2.8rem;
    border-top: 1px solid var(--sand-border);
    text-align: center;
}

.counter-item {
    padding: 0;
}

.counter-num {
    display: block;
    font-family: var(--heading);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--terracotta);
    margin-bottom: 0.35rem;
}

.counter-label {
    display: block;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==========================================================================
   Informações Práticas & FAQ
   ========================================================================== */

.faq-section {
    background-color: var(--sand-paper);
    background-image:
        radial-gradient(rgba(140, 108, 66, 0.05) 0.8px, transparent 0.8px);
    background-size: 18px 18px;
    border-block: 1px solid var(--sand-border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--sand-border);
    margin-top: 2rem;
}

.faq-box {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    padding: 2rem 1.2rem;
    border-bottom: 1px solid var(--sand-border);
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.faq-box:hover {
    border-left-color: var(--terracotta);
    background-color: rgba(247, 241, 229, 0.6);
    transform: translateX(4px);
}

.faq-box h4 {
    margin: 0 0 0.55rem;
    font-family: var(--heading);
    font-size: clamp(1.1rem, 1.8vw, 1.28rem);
    color: var(--ink);
    line-height: 1.3;
}

.faq-box p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ==========================================================================
   Localização & Contato (Concierge)
   ========================================================================== */

.contact-section {
    position: relative;
    background-color: var(--ocean-deep);
    background-image:
        radial-gradient(ellipse at 85% 15%, rgba(20, 78, 67, 0.35), transparent 45%),
        linear-gradient(135deg, #03222a 0%, #063742 55%, #08404e 100%);
    color: var(--sand-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    background: transparent;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact-info-col {
    padding: clamp(2.5rem, 5vw, 4.5rem);
    background: var(--sand-paper);
    border: 1px solid var(--sand-border);
}

.contact-badge-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--ocean-deep);
    border: 1px solid rgba(207, 161, 90, 0.25);
    border-left: none;
    color: var(--sand-light);
}

.contact-title {
    color: var(--ink);
}

.contact-intro {
    max-width: 54ch;
    color: var(--muted);
}

.contact-items-list {
    margin-block: 1.6rem;
    border-top: 1px solid var(--sand-border);
}

.c-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1rem;
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--sand-border);
    font-size: 0.88rem;
}

.c-label {
    color: var(--ink-soft);
    font-weight: 700;
}

.c-val {
    color: var(--ink);
}

.c-link {
    color: var(--terracotta-dark);
    font-weight: 700;
    transition: color 0.2s ease;
}

.c-link:hover {
    color: var(--terracotta);
    text-decoration: underline;
}

.contact-btns-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.contact-btns-row .btn-outline {
    color: var(--ink);
    border-color: var(--ink);
}

.contact-btns-row .btn-outline:hover {
    color: var(--white);
    background: var(--ink);
}

.brand-heritage-card {
    padding: 2.2rem;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--sand-light);
}

.bhc-logo {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    border: 2px solid var(--gold-accent);
}

.bhc-name {
    margin: 0;
    font-family: var(--heading);
    font-size: 1.25rem;
    color: var(--sand-light);
}

.bhc-sub {
    display: block;
    margin: 0.25rem 0 1.1rem;
    color: var(--gold-accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bhc-quote {
    margin: 0 0 1.2rem;
    color: var(--coastal-mist);
    font-family: var(--heading);
    font-size: 0.92rem;
    font-style: italic;
}

.bhc-open-status {
    padding-top: 1.1rem;
    border-top: 1px solid rgba(207, 161, 90, 0.3);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
}

/* ==========================================================================
   Footer & WhatsApp Flutuante
   ========================================================================== */

.footer {
    padding: 4.8rem 0 1.8rem;
    color: var(--coastal-mist);
    background: var(--ocean-deep);
    border-top: 1px solid rgba(207, 161, 90, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: clamp(2.2rem, 7vw, 6rem);
}

.f-brand-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.f-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-accent);
}

.f-name {
    display: block;
    color: var(--sand-light);
    font-family: var(--heading);
    font-size: 1.2rem;
}

.f-tag {
    color: var(--gold-accent);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.f-desc {
    margin: 1rem 0 0;
    color: var(--coastal-mist);
    font-size: 0.88rem;
    line-height: 1.6;
}

.f-title {
    margin: 0 0 1.2rem;
    color: var(--gold-light);
    font-family: var(--heading);
    font-size: 1.05rem;
}

.f-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.f-nav-list a {
    color: var(--coastal-mist);
    font-size: 0.86rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.f-nav-list a:hover,
.contact-col a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.contact-col p {
    margin: 0 0 0.6rem;
    font-size: 0.86rem;
}

.f-map-link {
    color: var(--gold-accent);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.5rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(194, 216, 209, 0.7);
    font-size: 0.74rem;
}

.footer-poetic {
    width: 100%;
    text-align: center;
    margin-top: 0.8rem;
    font-family: var(--heading);
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(207, 161, 90, 0.5);
    letter-spacing: 0.06em;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: #25d366;
    border: 2px solid var(--sand-light);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(3, 34, 42, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(3, 34, 42, 0.45);
}

.wa-only { width: 48px; min-width: 48px; height: 48px; min-height: 48px; padding: 0; justify-self: start; }
.wa-only svg { display: block; flex: 0 0 24px; width: 24px; height: 24px; overflow: visible; fill: #fff; }
.wa-only svg path { fill: #fff; }
.hero-actions .wa-only, .contact-btns-row .wa-only { width: 48px; }
.mobile-drawer .wa-only { justify-self: center; }

/* ==========================================================================
   Animações & Revelação
   ========================================================================== */

.hero-section .hero-kicker,
.hero-section .hero-title,
.hero-section .hero-lead,
.hero-section .hero-actions,
.hero-section .hero-location {
    animation: hero-fade-rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-section .hero-title { animation-delay: 0.08s; }
.hero-section .hero-lead { animation-delay: 0.16s; }
.hero-section .hero-actions { animation-delay: 0.24s; }
.hero-section .hero-location { animation-delay: 0.32s; }
.hero-visual-col[data-scroll-media] { animation: hero-visual-arrival 1.05s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both; }

@keyframes hero-fade-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes hero-visual-arrival {
    from {
        opacity: 0;
        transform: translate3d(24px, 16px, 0) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

/* Progressive enhancement: visível por padrão */
[data-cinematic-reveal] {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .cinema-ready [data-cinematic-reveal] {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
        transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: var(--cinematic-delay, 0ms);
    }

    .cinema-ready [data-cinematic-reveal].is-cinematic-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ==========================================================================
   Responsividade: Desktop Amplo (1440px+)
   ========================================================================== */

@media (min-width: 1440px) {
    .container { width: min(calc(100% - 96px), 1380px); }
    .hero-container { max-width: 1440px; }
    .hero-visual-col { max-width: 780px; }
    .hero-title { font-size: clamp(3.8rem, 5.5vw, 6rem); }
}

/* ==========================================================================
   Responsividade: Tablet (768px a 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .hamburger-btn { display: block; }
    .header-cta .btn { display: inline-flex; }

    .hero-container {
        grid-template-columns: 1fr;
        max-width: 760px;
        gap: 3rem;
    }
    .hero-visual-col {
        justify-self: center;
        max-width: 680px;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }

    .dish-card,
    .dish-card:nth-child(5),
    .dish-card:nth-child(6) {
        grid-column: auto;
    }

    .dish-card-featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .appetizers-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .ambiance-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .amb-img {
        aspect-ratio: 16 / 10;
        object-position: center 25%;
    }

    .kitchen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-badge-col {
        border-left: 1px solid rgba(207, 161, 90, 0.25);
        border-top: none;
    }
}

/* ==========================================================================
   Responsividade: Mobile (<= 767px)
   ========================================================================== */

@media (max-width: 767px) {
    :root {
        --section-pad: clamp(3.5rem, 10vw, 5rem);
    }

    .container {
        width: min(calc(100% - 32px), 640px);
    }

    .topbar-right {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
        text-align: center;
        font-size: 0.74rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-inline: 0.5rem;
    }

    .topbar-location,
    .topbar-divider {
        display: none;
    }

    .header-cta .btn {
        display: none;
    }

    .hero-section {
        padding-block: 3.5rem 4.5rem;
        min-height: auto;
    }

    .hero-title {
        max-width: 12ch;
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    .hero-lead {
        font-size: 0.98rem;
    }

    .hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .showcase-plate-tag {
        padding: 1.1rem 1.3rem;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .dish-card,
    .dish-card:nth-child(5),
    .dish-card:nth-child(6) {
        grid-column: auto;
    }

    .dish-card-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding-bottom: 0;
        border-bottom: none;
    }

    .appetizers-container,
    .desserts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .desserts-box {
        padding: 1.8rem 1.4rem;
    }

    .menu-cta-banner {
        flex-direction: column;
        text-align: left;
        padding: 1.8rem 1.4rem;
    }

    .menu-cta-banner .btn {
        width: 100%;
    }

    .reviews-editorial {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .reviews-seal-static {
        margin: 0 auto;
    }

    .amb-img {
        aspect-ratio: 4 / 3;
        object-position: center 20%;
    }

    .kitchen-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .kitchen-counter {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-box,
    .faq-box:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.4rem 0.8rem;
    }

    .contact-wrapper {
        box-shadow: none;
    }

    .contact-info-col {
        padding: 1.8rem 1.4rem;
    }

    .contact-badge-col {
        padding: 2.2rem 1.4rem;
    }

    .c-item {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .contact-btns-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-btns-row .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   Suporte a Reduced Motion (Acessibilidade)
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-grain,
    .reviews-bg-grain,
    .hero-waterlight {
        animation: none !important;
    }

    .faq-box {
        transition: none !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-section .hero-kicker,
    .hero-section .hero-title,
    .hero-section .hero-lead,
    .hero-section .hero-actions,
    .hero-section .hero-location,
    .hero-visual-col[data-scroll-media],
    .hero-waterlight {
        animation: none !important;
    }
    
    .vintage-card,
    .amb-frame,
    .timeline-row,
    .dish-card,
    .appetizer-card,
    .dessert-card,
    .kitchen-card {
        transform: none !important;
        transition: none !important;
    }
    
    .cinema-ready [data-cinematic-reveal],
    .cinema-ready [data-cinematic-reveal].is-cinematic-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
