/* ==========================================================================
   DUE SORELLE — Café & Gastronomia · Landing Page
   Design system + components
   ========================================================================== */

:root {
  /* Palette */
  --brown-900: #2A1810;
  --brown-800: #3B2415;
  --brown-700: #5C3A21;
  --brown-600: #6E4A2E;
  --beige:     #F5F1EA;
  --beige-2:   #EDE6DA;
  --gold:      #C59B5F;
  --gold-2:    #D9B87A;
  --white:     #FFFFFF;
  --ink:       #2A1810;
  --muted:     #7d6c5c;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --logo:  'Marcellus', Georgia, serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 18px;
  --shadow-sm: 0 6px 24px rgba(42, 24, 16, 0.08);
  --shadow-md: 0 18px 50px rgba(42, 24, 16, 0.14);
  --shadow-lg: 0 30px 80px rgba(42, 24, 16, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--beige);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 300;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em { font-style: italic; color: var(--gold); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.center { text-align: center; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}
.eyebrow.light { color: var(--gold-2); }
.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--brown-800);
  letter-spacing: .3px;
}
.section__title.center { text-align: center; }
.section__title.light { color: var(--beige); }
.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__lead { color: var(--muted); font-size: 1.1rem; margin-top: 1rem; }
.section__head .light + .section__title.light + * { color: var(--beige-2); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--gold);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 2rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .06em;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 1.15rem 2.6rem; font-size: 1rem; }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--brown-900); box-shadow: 0 10px 30px rgba(197,155,95,.35); }
.btn--gold:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(197,155,95,.5); }
.btn--ghost { color: var(--white); border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.btn--ghost-dark { color: var(--brown-800); border: 1px solid var(--brown-700); }
.btn--ghost-dark:hover { background: var(--brown-800); color: var(--beige); transform: translateY(-4px); }
.btn--wa { background: #25D366; color: #fff; box-shadow: 0 10px 30px rgba(37,211,102,.35); }
.btn--wa:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(37,211,102,.5); }

/* Ripple */
.ripple .rp {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,.45); pointer-events: none;
  animation: ripple .7s var(--ease); mix-blend-mode: overlay;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at 50% 40%, var(--brown-700), var(--brown-900));
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; justify-items: center; gap: 1.6rem; }
.preloader__logo { width: 92px; height: 92px; border-radius: 22px; animation: floaty 3s ease-in-out infinite; }
.preloader__cup { position: relative; height: 40px; display: flex; gap: 9px; }
.preloader__cup .bean {
  width: 12px; height: 16px; border-radius: 50% 50% 45% 45%;
  background: linear-gradient(var(--gold-2), var(--gold));
  position: relative; animation: beanDrop 1.1s var(--ease) infinite;
}
.preloader__cup .bean::after { content:""; position:absolute; inset:2px; border-radius:inherit; box-shadow: inset 0 0 0 1px rgba(42,24,16,.35); }
.preloader__cup .bean:nth-child(2){ animation-delay:.18s; }
.preloader__cup .bean:nth-child(3){ animation-delay:.36s; }
@keyframes beanDrop { 0%,100%{ transform: translateY(-8px); opacity:.4;} 50%{ transform: translateY(6px); opacity:1;} }
.preloader__bar { width: 160px; height: 2px; background: rgba(245,241,234,.2); border-radius: 2px; overflow: hidden; }
.preloader__bar span { display:block; height:100%; width:0; background: linear-gradient(90deg, var(--gold), var(--gold-2)); }

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold-2); transform: translate(-50%,-50%); }
.cursor-ring { width: 40px; height: 40px; border: 1px solid var(--gold-2); transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s, opacity .3s; }
.cursor-ring.is-hover { width: 66px; height: 66px; background: rgba(197,155,95,.18); border-color: transparent; }
body.hide-cursor { cursor: none; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-2)); z-index: 1000; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  padding: 1.25rem 0;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease), backdrop-filter .5s;
}
.navbar.is-scrolled {
  background: rgba(59,36,21,.72);
  backdrop-filter: blur(14px) saturate(140%);
  padding: .7rem 0;
  box-shadow: 0 10px 40px rgba(42,24,16,.28);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar__brand { display: flex; align-items: center; gap: .7rem; }
.navbar__brand img { width: 42px; height: 42px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.navbar__brand span { font-family: var(--logo); font-size: 1.35rem; color: var(--beige); letter-spacing: .5px; }
.navbar__menu { display: flex; align-items: center; gap: 2rem; }
.navbar__menu a { font-size: .92rem; color: var(--beige); letter-spacing: .04em; position: relative; padding: .3rem 0; opacity: .92; }
.navbar__menu a:not(.navbar__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold-2); transition: width .35s var(--ease);
}
.navbar__menu a:not(.navbar__cta):hover::after { width: 100%; }
.navbar__cta { padding: .6rem 1.4rem; }
.navbar__toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.navbar__toggle span { width: 24px; height: 2px; background: var(--beige); border-radius: 2px; transition: .35s var(--ease); }
.navbar__toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2){ opacity: 0; }
.navbar__toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.hero__bg {
  position: absolute; inset: -6%;
  background: url('assets/torta-fatia.jpg') center/cover no-repeat;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns { from { transform: scale(1.05) translate(0,0);} to { transform: scale(1.18) translate(-1.5%, -1.5%);} }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,24,16,.55) 0%, rgba(42,24,16,.35) 35%, rgba(42,24,16,.82) 100%);
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__content { position: relative; z-index: 2; max-width: 880px; }
.hero__eyebrow { font-size: .82rem; letter-spacing: .38em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.4rem; opacity: 0; }
.hero__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 1.02; letter-spacing: .3px; }
.hero__title .reveal-line { display: block; overflow: hidden; }
.hero__title--accent { color: var(--gold-2); font-style: italic; }
.hero__subtitle { max-width: 560px; margin-top: 1.6rem; font-size: clamp(1rem, 1.6vw, 1.22rem); font-weight: 300; color: rgba(245,241,234,.9); opacity: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; opacity: 0; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: grid; justify-items: center; gap: .6rem; color: var(--beige); }
.hero__scroll-txt { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; opacity: .8; }
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold-2), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-46px; left:0; width:100%; height:46px; background: var(--gold-2); animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0%{ transform: translateY(0);} 100%{ transform: translateY(92px);} }

.bean-particle { position: absolute; width: 10px; height: 13px; background: rgba(197,155,95,.5); border-radius: 50% 50% 45% 45%; animation: floatUp linear infinite; }
@keyframes floatUp { from { transform: translateY(110vh) rotate(0); opacity: 0;} 10%{opacity:.6;} 90%{opacity:.5;} to { transform: translateY(-10vh) rotate(360deg); opacity: 0;} }

/* ==========================================================================
   SOBRE
   ========================================================================== */
.sobre__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.sobre__img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.sobre__img-wrap img { width: 100%; height: 560px; object-fit: cover; transition: transform 1.2s var(--ease); }
.sobre__img-wrap:hover img { transform: scale(1.06); }
.sobre__badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  display: flex; align-items: center; gap: .9rem;
  background: rgba(59,36,21,.55); backdrop-filter: blur(10px);
  border: 1px solid rgba(245,241,234,.18); border-radius: 14px; padding: .9rem 1.1rem; color: var(--beige);
}
.sobre__badge-num { font-family: var(--serif); font-style: italic; font-size: 1.9rem; color: var(--gold-2); line-height: 1; }
.sobre__badge-txt { font-size: .85rem; letter-spacing: .05em; }
.sobre__text p { color: var(--muted); margin-top: 1.1rem; font-size: 1.05rem; }
.sobre__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.2rem; }
.feat-card {
  background: var(--white); border-radius: 14px; padding: 1.4rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(197,155,95,.14);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat-card__icon { font-size: 1.7rem; display: inline-block; margin-bottom: .5rem; }
.feat-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--brown-800); }
.feat-card p { font-size: .92rem; color: var(--muted); margin-top: .2rem; }

/* ==========================================================================
   ESPECIALIDADES
   ========================================================================== */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.spec-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.spec-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.spec-card__img { position: relative; height: 260px; overflow: hidden; }
.spec-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
/* Foca a parte inferior (comida) em fotos que têm texto no topo */
.spec-card__img img.pos-low { object-position: 50% 82%; }
.spec-card:hover .spec-card__img img { transform: scale(1.1); }
.spec-card__img::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(42,24,16,.35), transparent 55%);
}
.spec-card__body { padding: 1.5rem 1.6rem 1.8rem; }
.spec-card__body h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--brown-800); }
.spec-card__body p { color: var(--muted); font-size: .96rem; margin-top: .4rem; }

/* ==========================================================================
   CARDÁPIO
   ========================================================================== */
.cardapio { background: var(--beige-2); }
.cardapio__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2.6rem; }
.tab {
  padding: .7rem 1.4rem; border-radius: 100px; font-size: .9rem; letter-spacing: .03em;
  color: var(--brown-700); background: var(--white); border: 1px solid rgba(197,155,95,.25);
  transition: all .35s var(--ease);
}
.tab:hover { border-color: var(--gold); transform: translateY(-2px); }
.tab.is-active { background: var(--brown-800); color: var(--beige); border-color: var(--brown-800); }
.cardapio__panels { position: relative; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.3rem; }
.menu-item {
  display: flex; gap: 1.1rem; align-items: center; padding: 1rem;
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-sm);
  border: 1px solid transparent; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.menu-item:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(197,155,95,.22); border-color: rgba(197,155,95,.4); }
.menu-item__img { width: 92px; height: 92px; border-radius: 12px; object-fit: cover; flex: none; }
.menu-item__info { flex: 1; }
.menu-item__top { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; }
.menu-item__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--brown-800); }
.menu-item__price { font-family: var(--serif); font-weight: 600; color: var(--gold); white-space: nowrap; }
.menu-item__desc { font-size: .88rem; color: var(--muted); margin-top: .2rem; }
.cardapio__note { text-align: center; margin-top: 2rem; font-size: .85rem; color: var(--muted); font-style: italic; }

/* ==========================================================================
   GALERIA (masonry)
   ========================================================================== */
.masonry { columns: 3; column-gap: 1.1rem; }
.masonry__item { break-inside: avoid; margin-bottom: 1.1rem; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.masonry__item img { width: 100%; transition: transform .9s var(--ease); }
.masonry__item::after {
  content: "＋"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2rem; color: #fff; background: rgba(42,24,16,.45); opacity: 0; transition: opacity .45s var(--ease);
}
.masonry__item:hover img { transform: scale(1.08); }
.masonry__item:hover::after { opacity: 1; }

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diferenciais { background: radial-gradient(circle at 20% 0%, var(--brown-700), var(--brown-900)); color: var(--beige); overflow: hidden; }
.diferenciais__glow { position: absolute; width: 60vmax; height: 60vmax; top: -20%; right: -15%; border-radius: 50%; background: radial-gradient(circle, rgba(197,155,95,.16), transparent 65%); filter: blur(10px); pointer-events: none; }
.dif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; position: relative; z-index: 2; }
.glass { background: rgba(245,241,234,.06); backdrop-filter: blur(12px); border: 1px solid rgba(245,241,234,.14); }
.dif-card { border-radius: var(--radius); padding: 1.8rem 1.6rem; transition: transform .5s var(--ease), background .5s var(--ease), box-shadow .5s; }
.dif-card:hover { transform: translateY(-8px); background: rgba(197,155,95,.14); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.dif-card__ico { font-size: 2rem; display: block; margin-bottom: .7rem; }
.dif-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--gold-2); }
.dif-card p { font-size: .92rem; color: rgba(245,241,234,.78); margin-top: .35rem; }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { background: var(--brown-800); color: var(--beige); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat__num { display: block; font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--gold-2); line-height: 1; }
.stat__stars { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: .1em; }
.stat__label { display: block; margin-top: .6rem; font-size: .92rem; letter-spacing: .08em; color: rgba(245,241,234,.8); text-transform: uppercase; }
.stat { position: relative; }
.stat:not(:last-child)::after { content:""; position:absolute; right: -.75rem; top: 15%; height: 70%; width: 1px; background: rgba(245,241,234,.14); }

/* ==========================================================================
   AMBIENTE + coffee cup / steam
   ========================================================================== */
.ambiente__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.ambiente__text p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.ambiente__list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.2rem; margin-top: 1.8rem; }
.ambiente__list li { color: var(--brown-700); font-size: .98rem; }
.ambiente__media { position: relative; border-radius: var(--radius); overflow: visible; }
.ambiente__media img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.ambiente__cup { position: absolute; top: -46px; right: 30px; z-index: 3; }
.cup { position: relative; }
.cup__body { width: 70px; height: 54px; background: linear-gradient(var(--beige), #e2d8c8); border-radius: 6px 6px 30px 30px / 6px 6px 40px 40px; box-shadow: var(--shadow-md); position: relative; }
.cup__body::before { content:""; position:absolute; top:5px; left:6px; right:6px; height:12px; border-radius:50%; background: linear-gradient(var(--brown-700), var(--brown-900)); }
.cup__handle { position: absolute; right: -16px; top: 12px; width: 22px; height: 26px; border: 6px solid var(--beige); border-left: none; border-radius: 0 20px 20px 0; }
.cup__saucer { width: 96px; height: 12px; background: linear-gradient(var(--beige), #d8ccb9); border-radius: 50%; margin: -3px auto 0; box-shadow: var(--shadow-sm); }
.steam { position: absolute; bottom: 42px; left: 16px; width: 40px; height: 60px; }
.steam span { position: absolute; bottom: 0; width: 7px; height: 7px; background: rgba(255,255,255,.55); border-radius: 50%; filter: blur(4px); animation: steam 4s ease-in-out infinite; opacity: 0; }
.steam span:nth-child(1){ left: 6px; animation-delay: 0s; }
.steam span:nth-child(2){ left: 18px; animation-delay: 1.2s; }
.steam span:nth-child(3){ left: 30px; animation-delay: 2.2s; }
@keyframes steam { 0%{ transform: translateY(0) scale(1); opacity: 0; } 15%{ opacity:.6;} 100%{ transform: translateY(-52px) scale(3.4); opacity: 0; } }

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.depoimentos { background: var(--beige-2); }
.depo-swiper { padding: 1rem .5rem 4rem; }
.depo-card { background: var(--white); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-md); height: 100%; }
.depo-card__stars { color: var(--gold); letter-spacing: .15em; font-size: 1.1rem; margin-bottom: 1rem; }
.depo-card p { font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--brown-700); line-height: 1.5; }
.depo-card footer { display: flex; align-items: center; gap: .9rem; margin-top: 1.6rem; }
.depo-card__avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; flex: none; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--brown-900); background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: var(--shadow-sm); }
.depo-card cite { font-style: normal; display: grid; }
.depo-card cite strong { font-weight: 500; color: var(--brown-800); }
.depo-card cite span { font-size: .82rem; color: var(--muted); }
.depo-swiper .swiper-pagination-bullet { background: var(--brown-700); opacity: .35; }
.depo-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; width: 24px; border-radius: 6px; }

/* ==========================================================================
   INSTAGRAM
   ========================================================================== */
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin-bottom: 2.5rem; }
.insta__cell { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow-sm); }
.insta__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insta__cell::after { content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem; text-align: center; font-family: var(--serif); font-size: 1.15rem; color: #fff; background: rgba(42,24,16,.55); opacity: 0; transition: opacity .45s var(--ease); }
.insta__cell:hover img { transform: scale(1.12); }
.insta__cell:hover::after { opacity: 1; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta { position: relative; padding: clamp(5rem, 12vw, 9rem) 0; color: #fff; text-align: center; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; background: url('assets/bobo-camarao.jpg') center/cover fixed no-repeat; }
.cta__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(42,24,16,.72), rgba(42,24,16,.82)); }
.cta__content { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; }
.cta__content h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 600; }
.cta__content em { color: var(--gold-2); }
.cta__content p { margin: 1rem 0 2rem; font-size: 1.15rem; color: rgba(245,241,234,.9); }

/* WhatsApp banner */
.wa-banner-wrap { padding: 0 0 clamp(3rem, 7vw, 6rem); }
.wa-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--brown-700), var(--brown-800));
  border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197,155,95,.25);
}
.wa-banner__txt h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--gold-2); }
.wa-banner__txt p { color: rgba(245,241,234,.85); margin-top: .3rem; }

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contato__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.contato__list { margin: 2rem 0; display: grid; gap: 1.3rem; }
.contato__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contato__list .ico { font-size: 1.3rem; }
.contato__list strong { display: block; font-weight: 500; color: var(--brown-800); margin-bottom: .1rem; }
.contato__list div { color: var(--muted); font-size: .98rem; }
.contato__list a { color: var(--gold); }
.contato__btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.contato__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 420px; }
.contato__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(.9) contrast(1.02); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--brown-900); color: var(--beige-2); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand img { width: 60px; height: 60px; border-radius: 15px; margin-bottom: 1rem; }
.footer__brand p { color: rgba(245,241,234,.7); font-size: .95rem; max-width: 300px; }
.footer__col h4 { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-2); margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; color: rgba(245,241,234,.72); font-size: .92rem; margin-bottom: .5rem; transition: color .3s; }
.footer__col a:hover { color: var(--gold-2); }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(245,241,234,.08); color: var(--beige); transition: all .4s var(--ease); }
.footer__social a:hover { background: var(--gold); color: var(--brown-900); transform: translateY(-4px); }
.footer__bottom { border-top: 1px solid rgba(245,241,234,.1); padding: 1.4rem 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer__bottom p { font-size: .82rem; color: rgba(245,241,234,.5); }
.footer__credit a { color: var(--gold-2); }

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.fab { position: fixed; z-index: 950; display: grid; place-items: center; border-radius: 50%; box-shadow: var(--shadow-md); transition: transform .4s var(--ease), opacity .4s var(--ease), background .4s; }
.fab--wa { right: 1.5rem; bottom: 1.5rem; width: 58px; height: 58px; background: #25D366; color: #fff; animation: pulse 2.4s infinite; }
.fab--wa:hover { transform: scale(1.1); }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.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);} }
.fab--top { right: 1.5rem; bottom: 5.6rem; width: 46px; height: 46px; background: var(--brown-800); color: var(--gold-2); font-size: 1.3rem; opacity: 0; pointer-events: none; }
.fab--top.is-visible { opacity: 1; pointer-events: auto; }
.fab--top:hover { transform: translateY(-4px); background: var(--brown-700); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 9990; background: rgba(20,12,7,.94); display: none; place-items: center; opacity: 0; transition: opacity .4s var(--ease); }
.lightbox.is-open { display: grid; opacity: 1; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: 12px; box-shadow: var(--shadow-lg); transform: scale(.94); transition: transform .45s var(--ease); }
.lightbox.is-open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.8rem; font-size: 2.4rem; color: #fff; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: rgba(255,255,255,.8); padding: 1rem; transition: color .3s; }
.lightbox__nav:hover { color: var(--gold-2); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .sobre__grid, .ambiente__grid, .contato__grid { grid-template-columns: 1fr; }
  .sobre__media { max-width: 520px; margin-inline: auto; }
  .sobre__img-wrap img { height: 440px; }
  .masonry { columns: 2; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .ambiente__cup { right: 14px; top: -40px; }
}

@media (max-width: 760px) {
  .navbar__menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: rgba(43,24,16,.96); backdrop-filter: blur(16px);
    padding: 2rem; transform: translateX(105%); transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .navbar__menu.is-open { transform: translateX(0); }
  .navbar__menu a { font-size: 1.1rem; }
  .navbar__toggle { display: flex; z-index: 10; }
  .navbar.is-scrolled, .navbar { padding: .9rem 0; background: rgba(59,36,21,.72); backdrop-filter: blur(14px); }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stat::after { display: none; }
  .sobre__cards { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; text-align: left; }
  .ambiente__list { grid-template-columns: 1fr; }
  .cta__bg { background-attachment: scroll; }
  .wa-banner { justify-content: center; text-align: center; }
}

@media (max-width: 460px) {
  .sobre__cards { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero__bg { animation: none; }
}
