/* ==========================================================================
   DO CARMO BUFFET — folha de estilo única
   Mobile first · sem frameworks · sem dependências externas

   Sumário
   01. Fontes locais
   02. Tokens (cores, tipografia, espaços)
   03. Reset e base
   04. Utilitários e layout
   05. Botões
   06. Cabeçalhos de seção
   07. Header e navegação
   08. Hero
   09. Cards de diferenciais
   10. Planos / cardápios
   11. Cardápio completo (abas)
   12. Galeria e lightbox
   13. Sobre
   14. Depoimentos
   15. Formulário de orçamento
   16. CTA final
   17. Footer
   18. WhatsApp flutuante
   19. Animações de entrada
   20. Breakpoints
   ========================================================================== */

/* == 01. FONTES LOCAIS ==================================================== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/cormorant-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/cormorant-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* == 02. TOKENS =========================================================== */
:root {
  /* Cores */
  --cream: #F8F4EC;
  --cream-2: #F1EADC;
  --coffee: #2B211C;
  --coffee-2: #211915;
  --gold: #C89B5A;
  --gold-light: #E2C58F;
  --olive: #59604A;
  --white: #FFFFFF;
  --ink: #191411;
  --muted: #6B6058;
  --muted-light: rgba(248, 244, 236, .72);
  --line: rgba(43, 33, 28, .12);
  --line-light: rgba(226, 197, 143, .22);
  --danger: #B4472F;
  --whatsapp: #25D366;

  /* Tipografia */
  --font-title: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --shell: 1220px;
  --pad: clamp(1.15rem, 5vw, 2rem);
  --radius: 4px;
  --radius-lg: 10px;
  --header-h: 68px;

  /* Ritmo vertical */
  --section-y: clamp(3.75rem, 9vw, 7.5rem);

  /* Sombras */
  --shadow-sm: 0 2px 10px rgba(43, 33, 28, .06);
  --shadow-md: 0 12px 34px rgba(43, 33, 28, .10);
  --shadow-lg: 0 26px 70px rgba(20, 14, 10, .28);

  /* Transições */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .18s var(--ease);
  --t: .32s var(--ease);
}

/* == 03. RESET E BASE ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Trava o scroll quando o menu ou o lightbox estão abertos */
body.is-locked { overflow: hidden; }

img, svg, picture, video {
  display: block;
  max-width: 100%;
}
img { height: auto; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; }

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

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--gold);
  color: var(--coffee);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
  z-index: 1000;
  padding: .7rem 1.2rem;
  background: var(--coffee);
  color: var(--gold-light);
  font-size: .875rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform var(--t);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* == 04. UTILITÁRIOS E LAYOUT ============================================= */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--cream { background: var(--cream); }

.section--dark {
  background: var(--coffee);
  color: var(--cream);
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 15% 0%, rgba(200, 155, 90, .13), transparent 70%),
    radial-gradient(60% 55% at 92% 100%, rgba(89, 96, 74, .22), transparent 70%);
  pointer-events: none;
}
.section--dark > .shell { position: relative; z-index: 1; }

.section--olive {
  background: var(--olive);
  color: var(--cream);
}

/* == 05. BOTÕES =========================================================== */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--coffee);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .85rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-align: center;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--coffee);
  box-shadow: 0 8px 22px rgba(200, 155, 90, .26);
}
.btn--gold:hover { box-shadow: 0 12px 30px rgba(200, 155, 90, .38); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 244, 236, .45);
  backdrop-filter: blur(2px);
}
.btn--ghost:hover {
  background: rgba(248, 244, 236, .12);
  border-color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(226, 197, 143, .45);
}
.btn--outline:hover {
  background: rgba(226, 197, 143, .12);
  border-color: var(--gold-light);
}

.btn--dark {
  background: var(--coffee);
  color: var(--gold-light);
}
.btn--dark:hover { background: var(--coffee-2); }

.btn--sm {
  min-height: 42px;
  padding: .55rem 1.15rem;
  font-size: .6875rem;
}

.btn--lg { min-height: 58px; padding: 1rem 2.2rem; }

.btn--block { width: 100%; }

.btn[disabled] {
  opacity: .62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn__icon { width: 19px; height: 19px; flex: none; }

/* == 06. CABEÇALHOS DE SEÇÃO ============================================== */
.head {
  max-width: 42rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.head__eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .85rem;
  color: var(--gold);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.head__eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.head__title {
  font-size: clamp(1.95rem, 5.4vw, 3.1rem);
  color: var(--coffee);
}

.head__text {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.head--light .head__title { color: var(--cream); }
.head--light .head__text { color: var(--muted-light); }
.head--light .head__eyebrow { color: var(--gold-light); }

/* == 07. HEADER E NAVEGAÇÃO =============================================== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}

/* O fundo e o blur ficam num ::before, NÃO no próprio .header.
   Motivo: backdrop-filter faz do elemento um bloco de contenção para
   descendentes position:fixed — o menu mobile (que vive dentro do header)
   passaria a se medir pela altura do header em vez da tela. */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(33, 25, 21, .92);
  backdrop-filter: blur(10px) saturate(140%);
  opacity: 0;
  transition: opacity var(--t);
}
.header.is-stuck::before { opacity: 1; }

.header.is-stuck {
  border-bottom-color: var(--line-light);
  box-shadow: 0 6px 26px rgba(20, 14, 10, .22);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

/* Marca */
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: none;
}
.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .01em;
}
.brand__sub {
  font-size: .5625rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, .68);
}

/* Navegação (mobile: painel deslizante) */
.nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84vw, 340px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
  background: var(--coffee);
  border-left: 1px solid var(--line-light);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t), visibility var(--t);
}
.nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.nav__link {
  display: block;
  padding: .7rem 0;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(226, 197, 143, .12);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.nav__link:hover,
.nav__link.is-current { color: var(--gold-light); }
.nav__link:hover { padding-left: .4rem; }

.nav__cta { align-self: flex-start; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(20, 14, 10, .6);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--t);
}
.nav-backdrop.is-visible { opacity: 1; }

/* Hamburger */
.burger {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  padding: 0;
  background: none;
  border: 0;
  flex: none;
}
.burger__bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--cream);
  transition: transform var(--t), opacity var(--t-fast);
}
.burger[aria-expanded='true'] .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded='true'] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* == 08. HERO ============================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 86svh;
  padding-block: calc(var(--header-h) + 3.5rem) clamp(3rem, 9vw, 5.5rem);
  overflow: hidden;
  background: var(--coffee);
  color: var(--cream);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(24, 17, 13, .82) 0%, rgba(24, 17, 13, .58) 38%, rgba(24, 17, 13, .88) 100%),
    linear-gradient(95deg, rgba(24, 17, 13, .72) 0%, rgba(24, 17, 13, .18) 72%);
}

.hero__content {
  max-width: 44rem;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.hero__rule {
  width: 34px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.hero__title {
  font-size: clamp(2.7rem, 12vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero__claim {
  margin-top: 1.15rem;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 4.4vw, 1.7rem);
  font-style: italic;
  color: var(--cream);
}

.hero__text {
  margin-top: .9rem;
  max-width: 32rem;
  color: rgba(248, 244, 236, .82);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.9rem;
}
.hero__actions .btn { flex: 1 1 auto; min-width: 14rem; }

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem 1rem;
  margin-top: 2.1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 197, 143, .2);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, .74);
}
.hero__tags li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* O marcador vem ANTES do item: ao quebrar a linha ele nunca
   fica pendurado no fim. */
.hero__tags li:not(:first-child)::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.hero__scroll { display: none; }

/* == 09. CARDS DE DIFERENCIAIS ============================================ */
.cards {
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.9rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 155, 90, .5);
  box-shadow: var(--shadow-md);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(226, 197, 143, .3), rgba(200, 155, 90, .14));
  color: var(--coffee);
}
.card__icon svg { width: 27px; height: 27px; }

.card__title {
  font-size: 1.4rem;
  color: var(--coffee);
}

.card__text {
  margin-top: .5rem;
  color: var(--muted);
  font-size: .9375rem;
}

/* == 10. PLANOS / CARDÁPIOS =============================================== */
.plans {
  display: grid;
  gap: 1.15rem;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.1rem 1.7rem;
  background: rgba(248, 244, 236, .045);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 197, 143, .5);
  background: rgba(248, 244, 236, .07);
}

.plan--featured {
  background: linear-gradient(170deg, rgba(226, 197, 143, .14), rgba(200, 155, 90, .05));
  border-color: rgba(226, 197, 143, .55);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.plan__badge {
  position: absolute;
  top: -1px;
  right: 1.4rem;
  padding: .32rem .85rem .38rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--coffee);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 0 0 6px 6px;
}

.plan__head {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line-light);
}

.plan__kicker {
  color: rgba(248, 244, 236, .6);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.plan__name {
  margin-top: .3rem;
  font-size: 2rem;
  color: var(--gold-light);
}

.plan__price {
  display: flex;
  align-items: flex-start;
  gap: .18rem;
  margin-top: .95rem;
  font-family: var(--font-title);
  color: var(--cream);
  line-height: 1;
  /* A Cormorant usa algarismos old-style por padrão: o 4, o 5 e o 6
     descem abaixo da linha de base. Forçamos os algarismos altos. */
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' 1;
}
.plan__currency {
  margin-top: .55rem;
  font-size: 1rem;
  color: rgba(248, 244, 236, .7);
}
.plan__value {
  font-size: 3.3rem;
  font-weight: 600;
  letter-spacing: -.02em;
}
.plan__cents {
  margin-top: .5rem;
  font-size: 1.15rem;
  color: rgba(248, 244, 236, .7);
}

.plan__unit {
  margin-top: .15rem;
  color: rgba(248, 244, 236, .62);
  font-size: .8125rem;
  letter-spacing: .06em;
}

.plan__list {
  display: grid;
  gap: .6rem;
  margin: 1.35rem 0 1.9rem;
  font-size: .9375rem;
  color: rgba(248, 244, 236, .85);
}
.plan__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .6rem;
  align-items: start;
}
.plan__list li::before {
  content: '';
  width: 15px;
  height: 9px;
  margin-top: .42rem;
  border-left: 1.8px solid var(--gold);
  border-bottom: 1.8px solid var(--gold);
  transform: rotate(-45deg);
}

.plan__cta { margin-top: auto; }

.plans__note {
  margin-top: 2rem;
  color: rgba(248, 244, 236, .58);
  font-size: .8125rem;
  text-align: center;
}

/* == 11. CARDÁPIO COMPLETO (ABAS) ========================================= */
.tabs__nav {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  padding-bottom: .65rem;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.tabs__nav::-webkit-scrollbar { height: 3px; }
.tabs__nav::-webkit-scrollbar-thumb {
  background: rgba(200, 155, 90, .4);
  border-radius: 3px;
}

.tabs__btn {
  flex: none;
  padding: .6rem 1.15rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.tabs__btn:hover {
  color: var(--coffee);
  border-color: rgba(200, 155, 90, .55);
}
.tabs__btn.is-active {
  background: var(--coffee);
  border-color: var(--coffee);
  color: var(--gold-light);
}

.tabs__panel { animation: fadeUp .34s var(--ease) both; }
.tabs__panel[hidden] { display: none; }

.tabs__note {
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: .875rem;
  font-style: italic;
}

.menu {
  display: grid;
  gap: .85rem;
}

.menu__item {
  padding: 1.15rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.menu__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.menu__item h3 {
  font-size: 1.22rem;
  color: var(--coffee);
}
.menu__item p {
  margin-top: .2rem;
  color: var(--muted);
  font-size: .875rem;
}

.menu--compact .menu__item { padding: .95rem 1.2rem; }
.menu--compact .menu__item h3 { font-size: 1.08rem; }

/* == 12. GALERIA E LIGHTBOX =============================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
}

.gallery__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--coffee);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
.gallery__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), opacity var(--t);
}
.gallery__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24, 17, 13, .55));
  opacity: 0;
  transition: opacity var(--t);
}
.gallery__btn:hover img { transform: scale(1.07); }
.gallery__btn:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 12, 9, .96);
  animation: fade .22s var(--ease) both;
}
.lightbox[hidden] { display: none; }

.lightbox__figure {
  max-width: min(100%, 1100px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 74svh;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: zoomIn .28s var(--ease) both;
}
.lightbox__caption {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(248, 244, 236, .86);
  font-size: .875rem;
  text-align: center;
}
.lightbox__counter {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .12em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: rgba(248, 244, 236, .1);
  border: 1px solid rgba(248, 244, 236, .22);
  border-radius: 50%;
  color: var(--cream);
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(248, 244, 236, .22); }
.lightbox__close svg,
.lightbox__nav svg { width: 22px; height: 22px; }

.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav--prev { left: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.06); }

/* == 13. SOBRE ============================================================ */
.about {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}

.about__media {
  position: relative;
  align-self: start;
}
.about__media img {
  width: 100%;
  max-width: 24rem;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--cream-2), rgba(200, 155, 90, .18));
}

.about__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  width: max-content;
  margin: -1.6rem auto 0;
  padding: .8rem 1.6rem;
  background: var(--coffee);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about__badge span {
  color: var(--gold);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.about__badge strong {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}

.about__body .head__title { margin-bottom: 1.25rem; }
.about__body p { color: var(--muted); }
.about__body p + p { margin-top: .9rem; }
.about__body strong { color: var(--coffee); font-weight: 600; }

.about__list {
  display: grid;
  gap: .8rem;
  margin: 1.6rem 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .9375rem;
  color: var(--muted);
}
/* padding + marcador posicionado: o texto flui normalmente mesmo
   com <strong> e nós de texto soltos dentro do <li> */
.about__list li {
  position: relative;
  padding-left: 1.35rem;
}
.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 90, .16);
}
.about__list strong { color: var(--coffee); }

.about__signature {
  margin-bottom: 1.7rem !important;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--olive) !important;
}

/* == 14. DEPOIMENTOS ====================================================== */
.quotes {
  display: grid;
  gap: 1rem;
}

.quote {
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.7rem;
  background: rgba(248, 244, 236, .07);
  border: 1px solid rgba(248, 244, 236, .16);
  border-radius: var(--radius-lg);
  transition: transform var(--t), background var(--t);
}
.quote:hover {
  transform: translateY(-4px);
  background: rgba(248, 244, 236, .12);
}

.quote__stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: .18em;
}

.quote__text {
  margin: .9rem 0 1.3rem;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}

.quote__author {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 244, 236, .16);
  display: flex;
  flex-direction: column;
  font-size: .875rem;
}
.quote__author strong { color: var(--cream); font-weight: 600; }
.quote__author span {
  color: rgba(248, 244, 236, .68);
  font-size: .8125rem;
}

/* == 15. FORMULÁRIO DE ORÇAMENTO ========================================== */
.quote-box {
  display: grid;
  gap: 1.25rem;
}

.form {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.form__group {
  margin: 0 0 1.6rem;
  padding: 0;
  border: 0;
  display: grid;
  gap: 1rem;
}
.form__group:last-of-type { margin-bottom: 1.2rem; }

.form__legend {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: 100%;
  margin-bottom: .35rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-title);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--coffee);
}

.form__step {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--coffee);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .02em;
  flex: none;
}

.field { display: flex; flex-direction: column; gap: .38rem; }

.field__label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--coffee);
  letter-spacing: .02em;
}
.field__label span[aria-hidden] { color: var(--gold); }

.field__opt {
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.field__input {
  width: 100%;
  min-height: 50px;
  padding: .75rem .95rem;
  background: var(--white);
  border: 1px solid rgba(43, 33, 28, .18);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.field__input::placeholder { color: rgba(107, 96, 88, .62); }
.field__input:hover { border-color: rgba(43, 33, 28, .32); }
.field__input:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 90, .2);
}

.field__input--select {
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%232B211C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.field__input--area {
  min-height: 112px;
  resize: vertical;
  line-height: 1.6;
}

/* Estados de validação */
.field.has-error .field__input {
  border-color: var(--danger);
  background: rgba(180, 71, 47, .04);
}
.field.has-error .field__input:focus {
  box-shadow: 0 0 0 3px rgba(180, 71, 47, .18);
}

.field__error {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--danger);
  font-size: .8125rem;
  font-weight: 500;
}
/* `display: flex` sobrepõe o display:none nativo do atributo [hidden];
   sem esta regra o marcador de erro apareceria nos campos ainda vazios. */
.field__error[hidden] {
  display: none;
}
.field__error::before {
  content: '!';
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--danger);
  color: var(--cream);
  font-size: .625rem;
  font-weight: 700;
  flex: none;
}

/* Destaque quando o cardápio é preenchido pelos botões dos planos */
.field.is-filled .field__input {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 90, .22);
  animation: pulseGold 1.5s var(--ease) 1;
}

.form__footer { display: grid; gap: .85rem; }

.form__status {
  min-height: 1.2rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--olive);
  text-align: center;
}
.form__status.is-error { color: var(--danger); }

.form__note {
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.55;
  text-align: center;
}

/* Coluna lateral "como funciona" */
.quote-aside {
  padding: 1.7rem 1.6rem;
  background: rgba(248, 244, 236, .06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
}

.quote-aside__title {
  font-size: 1.35rem;
  color: var(--gold-light);
}

.quote-aside__steps {
  counter-reset: step;
  display: grid;
  gap: .8rem;
  margin-top: 1.1rem;
  font-size: .9375rem;
  color: rgba(248, 244, 236, .84);
}
.quote-aside__steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: .7rem;
  align-items: start;
}
.quote-aside__steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
}

.quote-aside__box {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-light);
}

.quote-aside__label {
  color: rgba(248, 244, 236, .66);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quote-aside__link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .6rem;
  color: var(--gold-light);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.quote-aside__link:hover {
  color: var(--white);
  border-bottom-color: currentColor;
}

/* == 16. CTA FINAL ======================================================== */
.cta {
  position: relative;
  padding-block: clamp(3.5rem, 10vw, 6.5rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--coffee);
  color: var(--cream);
  text-align: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(24, 17, 13, .88), rgba(24, 17, 13, .78));
}

.cta__title {
  font-size: clamp(1.85rem, 6vw, 3.2rem);
  color: var(--cream);
}
.cta__title::after {
  content: '';
  display: block;
  width: 54px;
  height: 1px;
  margin: 1.1rem auto 0;
  background: var(--gold);
}

.cta__text {
  max-width: 45rem;
  margin: 1.1rem auto 2rem;
  color: rgba(248, 244, 236, .82);
}

/* == 17. FOOTER =========================================================== */
.footer {
  padding-top: clamp(2.75rem, 7vw, 4.5rem);
  background: var(--coffee-2);
  color: rgba(248, 244, 236, .78);
  font-size: .9375rem;
}

.footer__grid {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}

.footer__logo {
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
}

.footer__text {
  max-width: 24rem;
  color: rgba(248, 244, 236, .62);
  font-size: .875rem;
}

.footer__title {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer__list { display: grid; gap: .6rem; }
.footer__list a {
  color: rgba(248, 244, 236, .78);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer__list a:hover {
  color: var(--gold-light);
  padding-left: .25rem;
}
.footer__list--plain { color: rgba(248, 244, 236, .62); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(226, 197, 143, .14);
  color: rgba(248, 244, 236, .5);
  font-size: .75rem;
}

.footer__slogan {
  font-family: var(--font-title);
  font-style: italic;
  font-size: .875rem;
  color: rgba(226, 197, 143, .7);
}

.footer__credit {
  color: rgba(248, 244, 236, .42);
}
.footer__credit a {
  color: rgba(226, 197, 143, .82);
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 197, 143, .3);
  transition: color var(--t), border-color var(--t);
}
.footer__credit a:hover,
.footer__credit a:focus-visible {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* == 17b. CONTADOR DE VISITAS ============================================= */
.visits {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.5rem;
  padding: .5rem 1.05rem;
  border: 1px solid rgba(226, 197, 143, .2);
  border-radius: 999px;
  /* Leve brilho dourado para o bloco não parecer um widget colado. */
  background: linear-gradient(180deg, rgba(226, 197, 143, .09), rgba(226, 197, 143, .03));
  color: rgba(248, 244, 236, .62);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.visits__icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.visits__count {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: .02em;
  /* Algarismos altos e de largura fixa: o número não "dança" ao subir. */
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}

/* == 18. WHATSAPP FLUTUANTE =============================================== */
.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .38);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .5);
}
.wa-float svg { width: 28px; height: 28px; }

.wa-float__tip {
  position: absolute;
  right: calc(100% + .65rem);
  padding: .5rem .85rem;
  background: var(--coffee);
  color: var(--cream);
  font-size: .75rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.wa-float:hover .wa-float__tip,
.wa-float:focus-visible .wa-float__tip {
  opacity: 1;
  transform: translateX(0);
}

/* == 18b. MODAL DE SUCESSO ================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(17, 12, 9, .82);
  backdrop-filter: blur(4px);
  animation: fade .2s var(--ease) both;
}
/* display:grid venceria o atributo [hidden]; sem esta regra o modal
   apareceria já no carregamento da página. */
.modal[hidden] { display: none; }

.modal__box {
  position: relative;
  width: min(100%, 430px);
  padding: 2.4rem 1.75rem 1.9rem;
  border: 1px solid rgba(226, 197, 143, .26);
  border-radius: var(--r-lg);
  background: var(--cream);
  text-align: center;
  box-shadow: 0 26px 70px rgba(20, 14, 10, .45);
  animation: modal-in .3s var(--ease) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--coffee);
  cursor: pointer;
  opacity: .5;
  transition: opacity var(--t), background var(--t);
}
.modal__close svg { width: 17px; height: 17px; }
.modal__close:hover { opacity: 1; background: rgba(43, 33, 28, .07); }

.modal__check {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(89, 96, 74, .13);
}
.modal__check svg { width: 28px; height: 28px; }

.modal__title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4.4vw, 1.85rem);
  font-weight: 600;
  color: var(--coffee);
  margin-bottom: .6rem;
}

.modal__text {
  color: rgba(43, 33, 28, .74);
  font-size: .9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal__blocked {
  margin-bottom: 1.1rem;
  padding: .7rem .85rem;
  border-radius: var(--r-sm);
  background: rgba(200, 155, 90, .13);
  color: var(--coffee);
  font-size: .8125rem;
  line-height: 1.5;
}
.modal__blocked a { color: #8a6220; font-weight: 600; }

/* == 19. ANIMAÇÕES DE ENTRADA ============================================= */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(.965); }
  to { opacity: 1; transform: none; }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200, 155, 90, .22); }
  50% { box-shadow: 0 0 0 7px rgba(200, 155, 90, .1); }
}

/* Aplicado só quando o JS está ativo (evita conteúdo invisível sem JS) */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Escalona a entrada de itens em grade */
.js .cards .reveal:nth-child(2),
.js .plans .reveal:nth-child(2),
.js .quotes .reveal:nth-child(2) { transition-delay: .08s; }
.js .cards .reveal:nth-child(3),
.js .plans .reveal:nth-child(3),
.js .quotes .reveal:nth-child(3) { transition-delay: .16s; }
.js .cards .reveal:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* == 20. BREAKPOINTS ====================================================== */

/* ≥ 480px — telas grandes de celular */
@media (min-width: 480px) {
  .gallery { gap: .7rem; }
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ≥ 640px */
@media (min-width: 640px) {
  :root { --header-h: 74px; }

  .cards { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
  .menu { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }

  .form__group { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .form__legend { grid-column: 1 / -1; }
  .field--wide { grid-column: 1 / -1; }

  .hero__actions .btn { flex: 0 1 auto; }
}

/* ≥ 900px — navegação horizontal, layouts em coluna */
@media (min-width: 900px) {
  :root { --header-h: 82px; }

  .burger { display: none; }

  .nav {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    background: none;
    border: 0;
    transform: none;
    visibility: visible;
  }
  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 1.9rem;
  }
  .nav__link {
    padding: .35rem 0;
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(248, 244, 236, .88);
    border: 0;
    position: relative;
  }
  .nav__link:hover { padding-left: 0; }
  .nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
  }
  .nav__link:hover::after,
  .nav__link.is-current::after { transform: scaleX(1); }

  .nav-backdrop { display: none; }

  .brand__mark { width: 46px; height: 46px; }
  .brand__name { font-size: 1.38rem; }

  .hero { min-height: 88svh; align-items: center; }
  .hero__scroll {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 1px solid rgba(226, 197, 143, .45);
    border-radius: 999px;
  }
  .hero__scroll span {
    position: absolute;
    left: 50%;
    top: 9px;
    width: 3px;
    height: 8px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: var(--gold-light);
    animation: scrollDot 1.9s var(--ease) infinite;
  }
  @keyframes scrollDot {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
  }

  .cards { grid-template-columns: repeat(4, 1fr); }
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .plan--featured { transform: scale(1.035); z-index: 1; }
  .plan--featured:hover { transform: scale(1.035) translateY(-4px); }

  .gallery { grid-template-columns: repeat(4, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }

  .about { grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); align-items: center; }
  .about__media img { max-width: none; }

  .quote-box {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, .85fr);
    align-items: start;
    gap: 1.6rem;
  }
  .quote-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }

  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }

  .wa-float { width: 58px; height: 58px; right: 1.75rem; bottom: 1.75rem; }
}

/* ≥ 1200px — refinos de escala */
@media (min-width: 1200px) {
  .form { padding: 2.75rem; }
  .menu { gap: 1rem; }
  .card { padding: 2.1rem 1.8rem; }
}

/* Telas muito largas: limita o crescimento do texto do hero */
@media (min-width: 1600px) {
  :root { --shell: 1320px; }
  .hero__title { font-size: 5.6rem; }
}

/* Ajuste para telas curtas em paisagem (celular deitado) */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding-block: calc(var(--header-h) + 2rem) 2.5rem; }
  .hero__scroll { display: none; }
}
