/* ============================================================
   BUXIXOS · VILA VELHA
   Editorial Pizzeria — by intent
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --primary: #FF9F1C;
  --primary-2: #FFB13E;
  --secondary: #FA0807;
  --secondary-2: #C50605;
  --dark: #100B07;
  --dark-2: #1A1209;
  --cream: #F5E6D3;
  --cream-2: #EAD9C3;
  --cream-3: #E0CDAF;
  --gold: #E8B96A;
  --ink: #1A0F08;
  --whats: #25D366;
  --whats-2: #1FAE54;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
em { font-style: italic; }

::selection { background: var(--primary); color: var(--ink); }

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

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  transition: padding .35s ease, background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  background: linear-gradient(180deg, rgba(16,11,7,0.85) 0%, rgba(16,11,7,0) 100%);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 16px var(--gutter);
  background: rgba(16,11,7,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(245,230,211,0.08);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  display: block;
  height: 72px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(250,8,7,0.35));
  transition: transform .3s ease, height .35s ease;
}
.nav.scrolled .logo-img { height: 60px; }
.nav__logo:hover .logo-img { transform: rotate(-4deg) scale(1.05); }
.logo-img--lg {
  height: 80px;
  filter: drop-shadow(0 6px 16px rgba(250,8,7,0.35));
}

.nav__menu { display: flex; gap: 32px; }
.nav__menu a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.78;
  letter-spacing: 0.02em;
  transition: opacity .2s, color .2s;
  position: relative;
  padding: 4px 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: width .3s ease;
}
.nav__menu a:hover { opacity: 1; color: var(--cream); }
.nav__menu a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--whats);
  color: white;
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
}

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all .3s;
  border-radius: 2px;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SHARED — eyebrow, section title, buttons
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,159,28,0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
.eyebrow__dot--red {
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(250,8,7,0.18);
}
.eyebrow--dark { color: var(--ink); opacity: 0.85; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin: 22px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section-title .display {
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
.section-title .display--red { color: var(--secondary); }
.section-title .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.015em;
  font-size: 0.6em;
  color: var(--primary);
  margin: 0 0 -0.06em 0.05em;
}
.section-title--dark { color: var(--ink); }
.section-title--dark .serif { color: var(--secondary); }
.section-title--dark .display--red { color: var(--secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.btn--lg { padding: 18px 32px; font-size: 14px; }

.btn--primary {
  background: var(--primary);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--secondary), 0 14px 36px rgba(255,159,28,0.22);
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--secondary), 0 18px 44px rgba(255,159,28,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,230,211,0.3);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--whats);
  color: white;
  padding: 20px 34px;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(37,211,102,0.35);
  letter-spacing: 0.04em;
}
.btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(37,211,102,0.5);
  background: var(--whats-2);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  padding: 140px var(--gutter) 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 18% 18%, rgba(255,159,28,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 88% 65%, rgba(250,8,7,0.10) 0%, transparent 55%),
    var(--dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,159,28,0.4), transparent);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,230,211,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,230,211,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.5;
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 130px;
  width: 100%;
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero__left { position: relative; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--cream);
  margin: 26px 0 30px;
  display: flex;
  flex-direction: column;
  text-transform: lowercase;
}
.hero__italic {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 0.42em;
  color: var(--primary);
  letter-spacing: -0.01em;
  margin-bottom: -0.06em;
  margin-left: 0.08em;
  text-transform: none;
}
.hero__italic--sm {
  font-size: 0.32em;
  color: var(--cream-2);
  opacity: 0.7;
  margin-top: 0.04em;
  margin-left: 0.12em;
}
.hero__display {
  display: block;
  text-transform: uppercase;
}
.hero__display--red {
  color: var(--secondary);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero__desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 400;
  color: var(--cream);
  opacity: 0.78;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(245,230,211,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  background: rgba(245,230,211,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .25s, background .25s;
}
.hero__badges li:hover {
  border-color: rgba(255,159,28,0.5);
  background: rgba(255,159,28,0.08);
}
.hero__badges li svg { color: var(--primary); flex-shrink: 0; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* HERO right — Swiper card carousel */
.hero__right {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collage {
  position: relative;
  width: 360px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-swiper {
  width: 320px;
  height: 420px;
  overflow: visible;
}
.hero-swiper .swiper-slide {
  border-radius: 0;
  background: transparent;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.polaroid-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f5e6d3;
  padding: 14px 14px 60px;
  box-shadow: 0 22px 56px rgba(0,0,0,0.55), 0 6px 18px rgba(0,0,0,0.35);
  cursor: grab;
}
.hero-swiper .swiper-slide:active .polaroid-card { cursor: grabbing; }

.polaroid-card__img {
  width: 100%;
  height: calc(100% - 60px);
  overflow: hidden;
  background: #0e0a06;
}
.polaroid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95) brightness(0.95);
  pointer-events: none;
}
.polaroid-card figcaption {
  position: absolute;
  bottom: 20px; left: 14px; right: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.polaroid-card__pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 30% 30%, #ff3a39, #8a0404 75%);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5), inset -2px -3px 4px rgba(0,0,0,0.5);
  z-index: 5;
}
.polaroid-card__tape {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px;
  height: 24px;
  background: rgba(232, 185, 106, 0.5);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  border-left: 1px solid rgba(232,185,106,0.35);
  border-right: 1px solid rgba(232,185,106,0.35);
}

/* Stickers */
.sticker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  z-index: 5;
}
.sticker--price {
  width: 130px; height: 130px;
  background: var(--primary);
  color: var(--ink);
  border-radius: 50%;
  border: 3px dashed var(--ink);
  padding: 8px;
  bottom: 10px;
  left: -40px;
  transform: rotate(-15deg);
  animation: floatPrice 5.5s ease-in-out infinite;
}
.sticker__top {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
}
.sticker__big {
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 4px 0;
}
.sticker__bottom {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
@keyframes floatPrice {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-11deg) translateY(-10px); }
}

.sticker--rating {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  flex-direction: row;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  top: 6px;
  right: -22px;
  transform: rotate(8deg);
  z-index: 6;
  border: 2px solid var(--ink);
  animation: floatRating 4.2s ease-in-out infinite;
}
.sticker--rating svg { color: var(--secondary); }
@keyframes floatRating {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-8px); }
}

/* Marquee */
.hero__marquee {
  position: relative;
  border-top: 1px solid rgba(245,230,211,0.1);
  border-bottom: 1px solid rgba(245,230,211,0.1);
  padding: 20px 0;
  background: rgba(245,230,211,0.02);
  overflow: hidden;
  margin: 0 calc(var(--gutter) * -1);
  z-index: 2;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: marquee 38s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.95;
}
.marquee__track i.dot {
  color: var(--primary);
  font-size: 8px;
  font-style: normal;
}

/* Alternating colors on hero marquee */
.hero__marquee .marquee__track span:nth-of-type(3n+1) { color: var(--cream); }
.hero__marquee .marquee__track span:nth-of-type(3n+2) { color: var(--primary); }
.hero__marquee .marquee__track span:nth-of-type(3n+3) { color: var(--secondary); }

.hero__marquee .marquee__track i.dot:nth-of-type(3n+1) { color: var(--secondary); }
.hero__marquee .marquee__track i.dot:nth-of-type(3n+2) { color: var(--cream); opacity: 0.5; }
.hero__marquee .marquee__track i.dot:nth-of-type(3n+3) { color: var(--primary); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  background: var(--cream);
  color: var(--ink);
  padding: 120px var(--gutter);
  position: relative;
  overflow: clip;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(26,15,8,0.09) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
}
.services::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--cream-2) 0%, transparent 18%, transparent 82%, var(--cream-2) 100%);
  pointer-events: none;
}

.services__container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.services__header {
  text-align: center;
  margin-bottom: 88px;
}
.services__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.75;
  max-width: 640px;
  margin: 24px auto 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.services__list { display: flex; flex-direction: column; }
.service {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26,15,8,0.15);
  transition: padding-left .4s ease;
  cursor: default;
}
.service:first-child { border-top: 1px solid rgba(26,15,8,0.15); }
.service:hover { padding-left: 14px; }
.service:hover .service__num {
  background: var(--secondary);
  color: var(--cream);
  transform: rotate(-8deg) scale(1.05);
}
.service__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  background: var(--ink);
  color: var(--cream);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  transition: all .35s ease;
}
.service__body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.service__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
  transition: transform .25s ease, background .25s ease;
}
.service__price--hot {
  background: var(--secondary);
  color: var(--cream);
}
.service:hover .service__price {
  background: var(--primary);
  color: var(--ink);
  transform: rotate(-3deg);
}
.service:hover .service__price--hot {
  background: var(--secondary);
  color: var(--cream);
  transform: rotate(-3deg) scale(1.05);
}
.service__chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(26,15,8,0.08);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
  opacity: 0.85;
}
.service__body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.72;
}

/* Services media grid */
.services__media {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 580px;
}
.media-card {
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(26,15,8,0.25);
  border-radius: 4px;
  transition: transform .5s ease;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.media-card:hover img { transform: scale(1.06); }
.media-card--lg {
  grid-column: 1 / -1;
  height: 280px;
  background: var(--ink);
}
.media-card--lg img {
  object-fit: contain;
}
.media-card--lg:hover img { transform: none; }
.media-card--sm { height: 260px; }
.media-card--tilt { transform: rotate(-2.5deg); }
.media-card--tilt:hover { transform: rotate(0deg); }

.media-card__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
}

.stamp {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 140px;
  height: 140px;
  color: var(--secondary);
  z-index: 10;
  filter: drop-shadow(0 6px 12px rgba(250,8,7,0.25));
}
.stamp__svg {
  width: 100%;
  height: 100%;
  animation: spin 24s linear infinite;
}
.stamp__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--secondary);
}
.stamp__small {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
}
.stamp__big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-top: 4px;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   RESERVA
============================================================ */
.reserva {
  background: var(--dark);
  padding: 130px var(--gutter);
  position: relative;
  overflow: hidden;
}
.reserva::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(255,159,28,0.08), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(250,8,7,0.08), transparent 55%);
  pointer-events: none;
}
.reserva__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
  position: relative;
}

.reserva__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 35px 90px rgba(0,0,0,0.65), 0 8px 24px rgba(0,0,0,0.4);
}
.reserva__media img,
.reserva__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}
.reserva__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,10,6,0.5));
  pointer-events: none;
}

/* Custom video controls */
.video-controls {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16,11,7,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid rgba(245,230,211,0.18);
  z-index: 3;
}
.video-btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.video-btn:hover {
  background: var(--primary);
  color: var(--ink);
  transform: scale(1.08);
}
.video-btn svg { width: 14px; height: 14px; }
.video-btn .icon-pause,
.video-btn .icon-mute { display: none; }
.video-btn.playing .icon-play { display: none; }
.video-btn.playing .icon-pause { display: block; }
.video-btn.muted .icon-volume { display: none; }
.video-btn.muted .icon-mute { display: block; }

.video-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  background: rgba(245,230,211,0.25);
  border-radius: 999px;
  outline: none;
  margin: 0 4px;
  cursor: pointer;
}
.video-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--cream);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.video-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--cream);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.reserva__media-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 14px 20px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 2;
  transform: rotate(-3deg);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}
.reserva__media-tag .big {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 52px;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--secondary);
  line-height: 0.9;
  font-weight: 700;
  margin: 4px 0;
}

.reserva__hours {
  position: absolute;
  bottom: 24px; right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(16,11,7,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(245,230,211,0.18);
  z-index: 2;
}
.reserva__hours svg { color: var(--primary); }

.reserva__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.78;
  margin: 28px 0 32px;
  max-width: 520px;
}
.reserva__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
  margin-bottom: 40px;
}
.reserva__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.92;
}
.check {
  width: 24px; height: 24px;
  background: var(--primary);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   AVALIAÇÕES
============================================================ */
.avaliacoes {
  background: var(--cream);
  color: var(--ink);
  padding: 130px var(--gutter);
  position: relative;
  overflow: hidden;
}
.avaliacoes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--cream-2), transparent 14%);
  pointer-events: none;
}
.avaliacoes__container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.avaliacoes__head {
  text-align: center;
  margin-bottom: 72px;
}

.avaliacoes__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.avaliacoes__text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 32px;
}

.rating-card {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 30px 32px;
  border-radius: 4px;
  isolation: isolate;
}
.rating-card::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -10px;
  bottom: -10px;
  left: 10px;
  background: var(--secondary);
  z-index: -1;
  border-radius: 4px;
}
.rating-card__stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  margin-bottom: 20px;
}
.rating-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-card__list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  position: relative;
  padding-left: 22px;
}
.rating-card__list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 14px;
}

.avaliacoes__photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(26,15,8,0.3);
}
.avaliacoes-swiper {
  width: 100%;
  height: 100%;
}
.avaliacoes-swiper .swiper-slide {
  display: block;
  overflow: hidden;
}
.avaliacoes__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.05);
}
.avaliacoes-pagination {
  position: absolute;
  top: 20px !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.avaliacoes-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 4px;
  background: rgba(245,230,211,0.55);
  opacity: 1;
  border-radius: 999px;
  transition: background .3s, width .3s;
  margin: 0 !important;
}
.avaliacoes-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 38px;
}

.photo-quote {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 22px 28px 22px 76px;
  background: var(--cream);
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
  transform: rotate(-1deg);
  z-index: 3;
}
.photo-quote .quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 78px;
  line-height: 1;
  color: var(--secondary);
  position: absolute;
  top: 24px;
  left: 20px;
  font-weight: 700;
}
.photo-quote p {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.avaliacoes__cta {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 32px;
}
.avaliacoes__cta .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .avaliacoes__cta .btn { padding: 17px 20px; font-size: 14px; }
}
@media (max-width: 480px) {
  .avaliacoes__cta { flex-wrap: wrap; }
  .avaliacoes__cta .btn { flex: 1 1 100%; padding: 18px 22px; font-size: 15px; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 110px var(--gutter) 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}
.footer__container {
  max-width: var(--container);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.05fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}
.footer__brand {
  position: relative;
}
.footer__tagline {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.7;
  max-width: 380px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245,230,211,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all .3s ease;
}
.footer__socials a:hover {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
  transform: translateY(-3px) rotate(-6deg);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.footer__col p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.85;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.footer__col p svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer__col a {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  transition: color .25s;
}
.footer__col a:hover { color: var(--primary); }

.footer__divider {
  height: 1px;
  background: rgba(245,230,211,0.1);
  margin: 0 0 32px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 36px;
}
.footer__copy {
  font-size: 12px;
  color: var(--cream);
  opacity: 0.5;
  letter-spacing: 0.05em;
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity .2s ease, transform .2s ease;
}
.footer__credit:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.footer__credit img {
  height: 34px;
  width: auto;
  display: block;
}

.footer__marquee {
  margin: 0 calc(var(--gutter) * -1);
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.2);
  background: var(--secondary);
  overflow: hidden;
}
.footer__marquee .marquee__track { gap: 28px; animation-duration: 32s; }
.footer__marquee .marquee__track span {
  color: var(--cream);
  font-size: clamp(24px, 3.6vw, 40px);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  opacity: 1;
  font-style: italic;
}
.footer__marquee .marquee__track i.dot {
  color: var(--primary);
  font-size: clamp(18px, 2.4vw, 28px);
  font-style: normal;
}

/* Float buttons — WhatsApp + location */
.float-btn {
  position: fixed;
  right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  transition: transform .25s ease;
}
.float-btn:hover { transform: scale(1.08) rotate(-8deg); }

.float-whats {
  bottom: 24px;
  background: var(--whats);
  color: white;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5);
  animation: floatPulse 2.6s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

.float-location {
  bottom: 96px;
  background: var(--primary);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(255,159,28,0.35);
}
.float-location:hover {
  box-shadow: 0 14px 36px rgba(255,159,28,0.5);
}

/* ============================================================
   HERO ENTRANCE — runs on page load
============================================================ */
@keyframes heroRise {
  0% { opacity: 0; transform: translateY(48px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideIn {
  0% { opacity: 0; transform: translateX(70px) scale(0.94); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marqueeSlideUp {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero__left > .eyebrow,
.hero__title > span,
.hero__desc,
.hero__cta {
  opacity: 0;
  animation: heroRise 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__left > .eyebrow { animation-delay: .15s; }
.hero__title > span:nth-child(1) { animation-delay: .3s; }
.hero__title > span:nth-child(2) { animation-delay: .45s; }
.hero__title > span:nth-child(3) { animation-delay: .6s; }
.hero__title > span:nth-child(4) { animation-delay: .75s; }
.hero__desc { animation-delay: .95s; }
.hero__cta { animation-delay: 1.1s; }

.hero__right {
  opacity: 0;
  animation: heroSlideIn 1.2s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: .5s;
}

.hero__marquee {
  opacity: 0;
  animation: heroFadeIn .8s ease forwards;
  animation-delay: 1.4s;
}

/* ============================================================
   REVEAL ANIMATIONS — scroll-triggered
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

/* Section title — stagger each line as it enters viewport */
.section-title.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.section-title.reveal > span {
  display: block;
  opacity: 0;
  transform: translateY(60px) skewY(3deg);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.section-title.reveal.visible > span {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}
.section-title.reveal.visible > span:nth-child(1) { transition-delay: .05s; }
.section-title.reveal.visible > span:nth-child(2) { transition-delay: .22s; }
.section-title.reveal.visible > span:nth-child(3) { transition-delay: .38s; }
.section-title.reveal.visible > span:nth-child(4) { transition-delay: .54s; }
.section-title.reveal.visible > span:nth-child(5) { transition-delay: .7s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 50px; padding-bottom: 110px; }
  .hero__right { height: 520px; max-width: 620px; margin: 0 auto; width: 100%; }
  .services__grid { grid-template-columns: 1fr; gap: 60px; }
  .services__media { position: static; height: auto; }
  .media-card--lg { height: auto; background: transparent; }
  .media-card--lg img { height: auto; }
  .reserva__container {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .reserva__content { display: contents; }
  .reserva__content > .section-title { order: 1; }
  .reserva__desc { order: 2; margin: 0; }
  .reserva__media { order: 3; max-width: 100%; width: 100%; aspect-ratio: 4/5.4; }
  .reserva__media .reserva__hours { top: 18px; right: 18px; bottom: auto; }
  .reserva__features { order: 4; margin: 0; }
  .reserva__content > .btn--whatsapp {
    order: 5;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    box-sizing: border-box;
    padding: 18px 16px;
    text-align: center;
  }
  .avaliacoes__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .avaliacoes__intro { display: contents; }
  .avaliacoes__text { order: 1; }
  .avaliacoes__photo { order: 2; aspect-ratio: 4/5; }
  .rating-card { order: 3; }
  .avaliacoes__cta { order: 4; margin-top: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .logo-img { height: 50px; }
  .nav.scrolled .logo-img { height: 42px; }
  .hero__title { font-size: clamp(60px, 11vw, 96px); }
  .hero__italic { font-size: 0.55em; }
  .hero__italic--sm { font-size: 0.45em; }
  .nav__menu.open {
    display: flex;
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--dark);
    padding: 22px var(--gutter);
    gap: 4px;
    border-bottom: 1px solid rgba(245,230,211,0.1);
  }
  .nav__menu.open li { border-bottom: 1px solid rgba(245,230,211,0.06); }
  .nav__menu.open li:last-child { border-bottom: 0; }
  .nav__menu.open a { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; opacity: 1; }

  .hero { padding-top: 110px; }
  .hero__right { height: 500px; }
  .collage { width: 300px; height: 400px; }
  .hero-swiper { width: 280px; height: 380px; }
  .sticker--price { width: 140px; height: 140px; left: -36px; bottom: -42px; }
  .sticker--price .sticker__big { font-size: 24px; }
  .sticker--rating { right: -14px; top: -6px; font-size: 14px; padding: 9px 16px; gap: 8px; }
  .sticker--rating svg { width: 16px; height: 16px; }
  @keyframes floatRating {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-6px); }
  }

  .services { padding: 80px var(--gutter); }
  .services__header { margin-bottom: 60px; text-align: left; }
  .services__lead { margin: 24px 0 0; }
  .services__media { height: auto; }
  .media-card--sm { height: 220px; }

  /* Mobile · base section title — left align + uniform spacing */
  .section-title { font-size: clamp(56px, 12vw, 80px); margin: 0 0 24px; }
  .avaliacoes__head { text-align: left; }

  /* Section 2 — bigger title */
  .services__header .section-title { font-size: clamp(54px, 12.5vw, 80px); }

  /* Section 3 — fits within margin ("Inesquecível." é a palavra mais longa) */
  .reserva__content > .section-title { font-size: clamp(40px, 10vw, 64px); margin: 0; }
  .reserva__content > .section-title + .reserva__desc { margin-top: -8px; }

  /* Section 4 — keep base size but emphasize "toda diferença" and "para nós" */
  .avaliacoes__head .section-title .serif { font-size: 0.85em; }
  .avaliacoes__head .section-title .display--red { font-size: 1.18em; }

  .reserva { padding: 80px var(--gutter); }
  .reserva__features { grid-template-columns: 1fr; gap: 12px; }
  .reserva__content > .btn--whatsapp { padding: 16px 14px; font-size: 13px; }
  .reserva__content > .btn--whatsapp span { white-space: normal; line-height: 1.3; }
  .reserva__media-tag { padding: 10px 16px; }
  .reserva__media-tag .big { font-size: 38px; }

  .avaliacoes { padding: 80px var(--gutter); }
  .avaliacoes__head { margin-bottom: 24px; }
  .avaliacoes__text { margin-bottom: 24px; }
  .rating-card { padding: 24px; }
  .rating-card__list li { font-size: 15px; }

  .footer { padding: 80px var(--gutter) 0; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { gap: 16px; }
  .footer__marquee { padding: 22px 0; }
  .logo-img--lg { height: 110px; }

  .stamp { width: 100px; height: 100px; bottom: -20px; right: -20px; }
  .stamp__big { font-size: 22px; }
}

@media (max-width: 480px) {
  .logo-img { height: 42px; }
  .nav.scrolled .logo-img { height: 36px; }
  .hero { padding-top: 96px; }
  .hero__title { font-size: clamp(52px, 15vw, 80px); margin: 18px 0 22px; }
  .hero__italic { font-size: 0.6em; }
  .hero__italic--sm { font-size: 0.5em; }
  .section-title { font-size: clamp(32px, 10vw, 52px); }
  .hero__right { height: 440px; }
  .collage { width: 260px; height: 360px; }
  .hero-swiper { width: 240px; height: 330px; }
  .polaroid-card { padding: 10px 10px 48px; }
  .polaroid-card figcaption { font-size: 12px; bottom: 16px; }
  .sticker--price { width: 120px; height: 120px; left: -24px; bottom: -38px; }
  .sticker--price .sticker__big { font-size: 22px; }
  .sticker--price .sticker__top { font-size: 12px; }
  .sticker--price .sticker__bottom { font-size: 9px; }
  .sticker--rating { right: -12px; top: -8px; font-size: 13px; padding: 8px 14px; gap: 8px; }
  .sticker--rating svg { width: 16px; height: 16px; }

  .btn { padding: 15px 22px; font-size: 14px; }
  .btn--lg { padding: 17px 26px; font-size: 15px; }
  .btn--whatsapp { padding: 18px 24px; font-size: 15px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .float-btn { width: 64px; height: 64px; right: 18px; }
  .float-btn svg { width: 30px; height: 30px; }
  .float-whats { bottom: 18px; }
  .float-location { bottom: 92px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
