/* ===================================================================
   GARDEN CAFÉ — Jardim Noturno
   Luxo orgânico · tema escuro · Cormorant Garamond + Jost
   =================================================================== */

:root {
    --bg:        #0a0d09;   /* verde-quase-preto */
    --bg-2:      #0f140d;   /* superfície */
    --bg-3:      #141a11;   /* cartões */
    --ink:       #f3efe6;   /* texto creme */
    --ink-soft:  #c8c4b6;
    --ink-mute:  #8a8b7d;
    --line:      rgba(243, 239, 230, 0.10);
    --line-2:    rgba(243, 239, 230, 0.18);

    --green:     #5c7a3f;   /* verde folha */
    --green-lo:  #3d5429;
    --green-hi:  #8aa861;
    --gold:      #c9a86a;   /* champagne */
    --gold-hi:   #e3c994;

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Jost', system-ui, sans-serif;

    --wrap: 1240px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--gold); color: #1a1407; }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-lo); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ---------- Tipografia base ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; }
.italic { font-style: italic; font-weight: 400; }
.accent { color: var(--gold); }

h2 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.4rem;
}
.eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.15);
}

.rule {
    width: 64px; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.8rem 0;
}

.lede { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.75; }
p { color: var(--ink-mute); }
.sobre-text p, .reserva-intro p, .cardapio-lede { color: var(--ink-soft); }

/* ---------- Grão / atmosfera ---------- */
.grain {
    position: fixed; inset: 0; z-index: 9998;
    pointer-events: none; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Botões ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 16px 32px; border-radius: 100px;
    transition: all 0.45s var(--ease); cursor: pointer; border: 1px solid transparent;
    white-space: nowrap;
}
.btn-lg { padding: 19px 42px; font-size: 0.86rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-solid { background: var(--green); color: #fff; }
.btn-solid:hover { background: var(--green-hi); color: #1a1407; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(92, 122, 63, 0.35); }

.btn-ghost { color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(243, 239, 230, 0.06); border-color: var(--ink-soft); }

.btn-line { color: var(--gold); border-color: rgba(201, 168, 106, 0.4); }
.btn-line:hover { background: var(--gold); color: #1a1407; transform: translateY(-2px); }

/* ---------- Reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-mark { font-family: var(--serif); font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 0.9; text-align: center; }
.preloader-line { display: block; }
.preloader-line.italic { color: var(--gold); }
.preloader-track { width: 180px; height: 1px; background: var(--line); overflow: hidden; }
#preloader-bar { display: block; height: 100%; width: 0; background: var(--gold); transition: width 0.3s linear; }

/* ---------- Nav ---------- */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: all 0.5s var(--ease);
    padding: 18px 0;
}
#navbar.scrolled {
    background: rgba(10, 13, 9, 0.82);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
}
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 58px; width: auto; object-fit: contain; transition: height 0.5s var(--ease); }
#navbar.scrolled .nav-logo img { height: 42px; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
    font-size: 0.78rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-soft); position: relative; padding: 4px 0; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
    background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 11px 26px; border: 1px solid rgba(201,168,106,0.4); border-radius: 100px;
    color: var(--gold); transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: #1a1407; }

#menu-toggle {
    display: none; width: 44px; height: 44px; background: none; border: none; cursor: pointer;
    flex-direction: column; align-items: flex-end; justify-content: center; gap: 6px;
}
#menu-toggle span { display: block; height: 1.5px; background: var(--ink); transition: all 0.4s var(--ease); }
#menu-toggle span:nth-child(1) { width: 26px; }
#menu-toggle span:nth-child(2) { width: 18px; }
#menu-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); width: 24px; }
#menu-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); width: 24px; }

#mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(10, 13, 9, 0.98); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
    opacity: 0; visibility: hidden; transition: all 0.5s var(--ease);
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
#mobile-menu nav a { font-family: var(--serif); font-size: 2.2rem; color: var(--ink-soft); transition: color 0.3s; }
#mobile-menu nav a:hover { color: var(--gold); }
.mobile-cta { margin-top: 1rem; padding: 15px 38px; background: var(--green); color: #fff; border-radius: 100px; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.82rem; font-weight: 500; }
.mobile-social { display: flex; gap: 24px; margin-top: 1rem; }
.mobile-social a { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 150px 0 90px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(105deg, rgba(10,13,9,0.92) 0%, rgba(10,13,9,0.55) 45%, rgba(10,13,9,0.25) 100%),
        linear-gradient(0deg, var(--bg) 2%, rgba(10,13,9,0.1) 35%, rgba(10,13,9,0.4) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; width: 100%; }
.hero-title {
    font-size: clamp(3.2rem, 9.5vw, 8rem);
    line-height: 0.96; margin: 0.5rem 0 1.8rem; letter-spacing: -0.02em;
}
.hero-title span { display: block; }
.hero-sub { max-width: 520px; font-size: 1.2rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 2.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-meta {
    position: relative; z-index: 2; max-width: var(--wrap);
    margin: 3rem auto 0; padding: 1.8rem 28px 0; width: 100%;
    display: flex; align-items: flex-end; flex-wrap: wrap; gap: 16px 40px;
    border-top: 1px solid var(--line);
}
.hero-meta-title {
    width: 100%; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-day { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.hero-meta-time { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); line-height: 1; }

.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 1px solid var(--line-2); border-radius: 20px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-cue span { width: 3px; height: 8px; background: var(--gold); border-radius: 4px; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(14px); } }

/* ===================================================================
   SOBRE
   =================================================================== */
.sobre { padding: clamp(6rem, 12vw, 11rem) 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }

.sobre-media { position: relative; }
.sobre-img { overflow: hidden; border-radius: 4px; }
.sobre-img-main { aspect-ratio: 4/5; }
.sobre-img-main img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-float {
    position: absolute; bottom: -50px; right: -30px; width: 52%;
    aspect-ratio: 1; border: 8px solid var(--bg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.sobre-img-float img { width: 100%; height: 100%; object-fit: cover; }
.sobre-tag {
    position: absolute; top: 28px; left: -16px;
    background: var(--bg-3); border: 1px solid var(--line); color: var(--gold);
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 10px 20px; border-radius: 100px;
}

.sobre-text h2 { margin-bottom: 0; }
.sobre-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.4rem; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; align-items: center; gap: 40px; white-space: nowrap; animation: marquee 32s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.9rem; color: var(--ink-soft); }
.marquee-track .dot { color: var(--gold); font-size: 1rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================================================================
   GALERIA
   =================================================================== */
.galeria { padding: clamp(6rem, 12vw, 11rem) 0; }
.sec-head { text-align: center; margin-bottom: 4rem; }
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 16px; }
.g-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
    content: attr(data-cap);
    position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 22px 20px;
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
    background: linear-gradient(0deg, rgba(10,13,9,0.85), transparent);
    opacity: 0; transform: translateY(12px); transition: all 0.5s var(--ease);
}
.g-item:hover::after { opacity: 1; transform: none; }

/* ===================================================================
   CARDÁPIO
   =================================================================== */
.cardapio { position: relative; padding: clamp(7rem, 14vw, 12rem) 0; text-align: center; overflow: hidden; }
.cardapio-bg { position: absolute; inset: 0; z-index: 0; }
.cardapio-bg img { width: 100%; height: 100%; object-fit: cover; }
.cardapio-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(10,13,9,0.82) 0%, rgba(10,13,9,0.96) 75%); }
.cardapio-inner { position: relative; z-index: 1; max-width: 760px; }
.cardapio-inner h2 { margin-bottom: 1.6rem; }
.cardapio-lede { font-size: 1.18rem; margin: 0 auto 2.2rem; max-width: 580px; }
.cardapio-tags { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 3rem; }
.cardapio-tags li {
    font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
    border: 1px solid var(--line-2); padding: 9px 20px; border-radius: 100px;
    transition: all 0.4s var(--ease);
}
.cardapio-tags li:hover { border-color: var(--gold); color: var(--gold); }

/* ===================================================================
   RESERVA
   =================================================================== */
.reserva { padding: clamp(6rem, 12vw, 11rem) 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.reserva-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.reserva-hours { margin-top: 3rem; }
.reserva-hours h3 { font-family: var(--sans); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.reserva-hours ul { list-style: none; }
.reserva-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.95rem; }
.reserva-hours li:last-child { border-bottom: none; }
.reserva-hours .hrs { color: var(--gold); }

.reserva-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.8rem, 4vw, 3rem); }
.field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 9px; }
.field label .opt { text-transform: none; letter-spacing: normal; opacity: 0.6; }
.field input, .field select, .field textarea {
    width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
    color: var(--ink); font-family: var(--sans); font-size: 0.98rem; font-weight: 300;
    padding: 13px 15px; transition: border-color 0.3s, box-shadow 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); opacity: 0.7; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--green-hi); box-shadow: 0 0 0 3px rgba(138, 168, 97, 0.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a86a' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; cursor: pointer; }
.field textarea { resize: vertical; min-height: 56px; }
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.field.invalid input, .field.invalid select { border-color: #c4624f; }
.reserva-card button { margin-top: 0.6rem; }
.reserva-disclaimer {
    margin-top: 1.2rem; padding: 13px 16px; border-radius: 6px;
    background: rgba(201, 168, 106, 0.08); border: 1px solid rgba(201, 168, 106, 0.25);
    color: var(--ink-soft); font-size: 0.86rem; line-height: 1.55; text-align: center;
}
.reserva-note { text-align: center; font-size: 0.8rem; color: var(--ink-mute); margin-top: 0.9rem; }

/* ===================================================================
   CONTATO
   =================================================================== */
.contato { padding: clamp(6rem, 12vw, 11rem) 0; }
.contato-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.contato-list { list-style: none; margin-top: 1rem; }
.contato-list li { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.contato-list li:last-child { border-bottom: none; }
.ci-label { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.contato-list a { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); transition: color 0.3s; line-height: 1.3; }
.contato-list a:hover { color: var(--gold); }

.contato-map { aspect-ratio: 4/3.4; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.contato-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05) brightness(0.85); }

/* ===================================================================
   INSTAGRAM
   =================================================================== */
.insta { padding: clamp(6rem, 12vw, 11rem) 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.insta-embed { width: 100%; min-height: 200px; }
.insta-embed iframe { width: 100% !important; border: 0; border-radius: 6px; }
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; gap: 2rem; flex-wrap: wrap; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.insta-item::after { content: ''; position: absolute; inset: 0; background: rgba(10,13,9,0.45); opacity: 0; transition: opacity 0.4s; }
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover::after { opacity: 1; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { padding: clamp(6rem, 12vw, 11rem) 0; }
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; padding: 1.5rem 0; transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--ink); line-height: 1.25; transition: color 0.3s; }
.faq-item[open] .faq-q, .faq-item summary:hover .faq-q { color: var(--gold); }
.faq-icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.4s var(--ease); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { overflow: hidden; padding-bottom: 1.5rem; max-width: 580px; }
.faq-a p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.faq-item[open] .faq-a { animation: faqReveal 0.5s var(--ease); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: clamp(4rem, 8vw, 6rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; padding-bottom: 4rem; }
.footer-logo { height: 56px; width: auto; margin-bottom: 1.4rem; }
.footer-brand p { max-width: 280px; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 0.95rem; padding: 6px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col .fh { color: var(--ink-soft); font-size: 0.92rem; padding: 5px 0; display: flex; justify-content: space-between; gap: 16px; }
.footer-col .fh span { color: var(--ink-mute); white-space: nowrap; }
.footer-col .fh .fh-time { white-space: nowrap; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; padding-bottom: 2rem; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: var(--ink-mute); }
.footer-bottom a { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    transition: transform 0.4s var(--ease);
    animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ===================================================================
   RESPONSIVO
   =================================================================== */
@media (max-width: 980px) {
    .nav-links, .nav-cta { display: none; }
    #menu-toggle { display: flex; }
    .sobre-grid, .reserva-grid, .contato-grid, .faq-wrap { grid-template-columns: 1fr; }
    .faq-head { position: static; }
    .sobre-media { margin-bottom: 4rem; max-width: 480px; }
    .sobre-img-float { width: 46%; right: 0; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
}

@media (max-width: 600px) {
    .wrap, .nav-inner, .hero-content, .hero-meta { padding-left: 20px; padding-right: 20px; }
    .hero-meta { gap: 14px 28px; margin-top: 2.4rem; }
    .hero-meta-time { font-size: 1.25rem; }
    .hero-meta-day { font-size: 0.62rem; }
    .faq-q { font-size: 1.15rem; }
    .galeria-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
    .g-wide { grid-column: span 2; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .contato-list a { font-size: 1.25rem; }
    .marquee-track span { font-size: 1.4rem; }
    .btn { padding: 14px 26px; }
}
