/* ==========================================================
   ATELIÊ DE VIDRO — Landing Page
   Paleta artesanal premium · Mobile-first
   ========================================================== */

:root {
  /* Cores — paleta artesanal acolhedora */
  --bg: #F6F1E8;            /* off-white quente */
  --bg-2: #EFE7D8;          /* tom mais profundo */
  --bg-3: #E6DAC6;          /* contraste sutil */
  --ink: #2A2520;           /* preto suave */
  --ink-soft: #5A4F44;      /* texto secundário */
  --ink-mute: #8B7E6F;      /* texto terciário */
  --accent: #B8632F;        /* terracota queimada */
  --accent-soft: #D89271;   /* terracota clara */
  --sage: #8B9A7B;          /* verde sálvia */
  --gold: #C8A772;          /* dourado champanhe */
  --line: rgba(42, 37, 32, 0.12);
  --line-soft: rgba(42, 37, 32, 0.06);

  /* Tipografia */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Espaçamento */
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-py: clamp(80px, 12vw, 160px);

  /* WhatsApp */
  --wa-green: #25D366;
  --wa-green-dark: #1FAD52;
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

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

button { font: inherit; cursor: pointer; border: 0; background: none; }

::selection { background: var(--accent); color: #fff; }

/* === Tipografia base === */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink-mute);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1 { font-size: clamp(44px, 9vw, 124px); }
h2 { font-size: clamp(36px, 6vw, 76px); }
h3 { font-size: clamp(24px, 3vw, 36px); }

em, .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }

p { font-size: clamp(15px, 1.1vw, 17px); color: var(--ink-soft); }

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; padding: var(--section-py) 0; }

/* === Botões === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .35s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 99, 47, 0.25);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--wa-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-link {
  color: var(--ink);
  padding: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 4px;
}
.btn-link:hover { color: var(--accent); }

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s, backdrop-filter .4s, padding .3s;
}
.nav.is-scrolled {
  background: rgba(246, 241, 232, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-style: italic;
}
.brand__mark {
  width: 36px; height: 36px;
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--accent); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 12px 18px; font-size: 13px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding-top: clamp(120px, 18vw, 180px);
  padding-bottom: clamp(60px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: end;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
  }
  .hero__visual {
    margin-top: clamp(60px, 7vw, 100px);
  }
}

.hero__title {
  font-size: clamp(56px, 11vw, 156px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-top: 24px;
}
.hero__title .word {
  display: inline-block;
  vertical-align: top;
  clip-path: inset(-20% -0.15em -10% -0.05em);
  padding-right: 0.05em;
}
.hero__title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s cubic-bezier(.22,.9,.2,1) forwards;
}
.hero__title .word:nth-child(1) > span { animation-delay: .1s; }
.hero__title .word:nth-child(2) > span { animation-delay: .25s; }
.hero__title .word:nth-child(3) > span { animation-delay: .4s; }
.hero__title .word:nth-child(4) > span { animation-delay: .55s; }
.hero__title .word:nth-child(5) > span { animation-delay: .7s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero__lede {
  margin-top: 32px;
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 46ch;
  color: var(--ink-soft);
  line-height: 1.55;
  opacity: 0;
  animation: fadeUp .8s .9s cubic-bezier(.22,.9,.2,1) forwards;
}

.hero__cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .8s 1.05s cubic-bezier(.22,.9,.2,1) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
.hero__visual .placeholder {
  position: absolute; inset: 0;
}
.feature__visual .placeholder {
  position: absolute; inset: 0;
}
.hero__caption {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}

/* Marquee de palavras decorativas */
.hero__marks {
  position: absolute;
  bottom: -30px; left: -10%; right: -10%;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(140px, 22vw, 280px);
  color: var(--bg-2);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  letter-spacing: -0.04em;
}

/* Floating glass icons in hero */
.hero__floats { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.float {
  position: absolute;
  opacity: 0.5;
  animation: float-y 8s ease-in-out infinite alternate;
}
.float:nth-child(1) { top: 18%; right: 8%; animation-duration: 9s; }
.float:nth-child(2) { top: 60%; left: 4%; animation-duration: 11s; animation-delay: -2s; }
.float:nth-child(3) { top: 8%; left: 38%; animation-duration: 7s; animation-delay: -4s; }

@keyframes float-y {
  from { transform: translateY(0) rotate(-3deg); }
  to { transform: translateY(-22px) rotate(3deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}
.scroll-indicator::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-mute), transparent);
  animation: scroll-pulse 2s infinite;
}
@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================
   PLACEHOLDERS DE IMAGEM
   ========================================================== */
.placeholder {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  border-radius: 2px;
  isolation: isolate;
}
.placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 18px,
      rgba(42, 37, 32, 0.04) 18px,
      rgba(42, 37, 32, 0.04) 19px
    );
  z-index: 0;
}
.placeholder__label {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--bg);
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}
.placeholder__art {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.placeholder__art svg { width: 70%; height: 70%; }

.placeholder--accent { background: var(--bg-3); }
.placeholder--sage { background: #DDE3D4; }
.placeholder--terracotta { background: #E8CFC0; }
.placeholder--ink { background: var(--ink); }
.placeholder--ink .placeholder__label { background: var(--ink); color: var(--bg-3); border: 1px solid rgba(255,255,255,0.2); }

/* ==========================================================
   STATS BAR
   ========================================================== */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  margin-top: 60px;
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 720px) {
  .stats__row { grid-template-columns: repeat(4, 1fr); }
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.stat__label {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}

/* ==========================================================
   DESTAQUE — pintado à mão
   ========================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 100px; }
  .feature__visual { margin-top: 80px; }
}
.feature--reverse > :first-child { order: 2; }
@media (max-width: 959px) {
  .feature--reverse > :first-child { order: 0; }
}

.feature__visual {
  aspect-ratio: 4 / 5;
  position: relative;
}
.feature__title { margin-top: 18px; }
.feature__body { margin-top: 24px; max-width: 50ch; line-height: 1.7; }
.feature__list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.feature__list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.feature__list .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ==========================================================
   GALERIA
   ========================================================== */
.gallery__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 60px;
}
@media (min-width: 760px) {
  .gallery__head { grid-template-columns: 1.4fr 1fr; gap: 60px; }
}
.gallery__head p { max-width: 42ch; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 720px) {
  .gallery__grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 100px;
    gap: 20px;
  }
  .gallery__item:nth-child(1) { grid-column: span 5; grid-row: span 5; }
  .gallery__item:nth-child(2) { grid-column: span 4; grid-row: span 3; }
  .gallery__item:nth-child(3) { grid-column: span 3; grid-row: span 4; }
  .gallery__item:nth-child(4) { grid-column: span 4; grid-row: span 4; }
  .gallery__item:nth-child(5) { grid-column: span 3; grid-row: span 3; }
  .gallery__item:nth-child(6) { grid-column: span 5; grid-row: span 3; }
}
.gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
@media (min-width: 720px) {
  .gallery__item { aspect-ratio: auto; }
}
.gallery__item .placeholder {
  width: 100%; height: 100%;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.gallery__item:hover .placeholder { transform: scale(1.05); }

.gallery__item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 37, 32, 0.65), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s;
  z-index: 3;
}
.gallery__item:hover .gallery__item__overlay { opacity: 1; }
.gallery__item__overlay span {
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}

/* ==========================================================
   BENEFÍCIOS
   ========================================================== */
.benefits {
  background: var(--ink);
  color: var(--bg);
  padding: var(--section-py) 0;
}
.benefits .eyebrow { color: var(--gold); }
.benefits .eyebrow::before { background: var(--gold); }
.benefits h2 { color: var(--bg); max-width: 18ch; }
.benefits p { color: rgba(246, 241, 232, 0.7); }

.benefits__grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(5, 1fr); }
}
.benefit {
  background: var(--ink);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  position: relative;
  transition: background .35s;
}
.benefit:hover { background: #1F1B17; }
.benefit__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
}
.benefit__icon {
  width: 44px; height: 44px;
  color: var(--gold);
}
.benefit h3 {
  color: var(--bg);
  font-size: 22px;
  font-style: italic;
}
.benefit p { font-size: 14px; line-height: 1.6; color: rgba(246, 241, 232, 0.65); }

/* ==========================================================
   TIPOS DE PEÇAS
   ========================================================== */
.types__head {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.types__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .types__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .types__grid { grid-template-columns: repeat(3, 1fr); }
}
.type-card {
  background: var(--bg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background .35s, transform .35s;
  cursor: pointer;
}
.type-card:hover { background: var(--bg-2); }
.type-card__art {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.type-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.type-card h3 {
  font-size: 28px;
  font-style: italic;
  letter-spacing: -0.02em;
}
.type-card .price {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.type-card p {
  font-size: 14px;
  line-height: 1.6;
}
.type-card__link {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--line-soft);
  transition: color .2s;
}
.type-card__link svg {
  width: 14px; height: 14px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.type-card:hover .type-card__link { color: var(--accent); }
.type-card:hover .type-card__link svg { transform: translateX(6px); }

/* ==========================================================
   COMO FUNCIONA — processo
   ========================================================== */
.process {
  background: var(--bg-2);
}
.process__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
@media (min-width: 760px) {
  .process__head { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
}
.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 800px) {
  .process__steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  padding: 32px 28px 32px 0;
  border-top: 1px solid var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 800px) {
  .step { padding: 32px 24px 32px 0; }
}
.step__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.step__icon {
  width: 56px; height: 56px;
  color: var(--ink);
  margin: 12px 0 8px;
}
.step h3 {
  font-size: 24px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
}
.step__connector {
  display: none;
  position: absolute;
  top: -1px; right: 0;
  width: 8px; height: 8px;
  background: var(--bg-2);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
@media (min-width: 800px) {
  .step__connector { display: block; }
}

/* ==========================================================
   PREÇOS
   ========================================================== */
.pricing {
  background: var(--bg);
}
.pricing__head {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pricing__head p { max-width: 50ch; }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(4, 1fr); }
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 4px;
  transition: transform .35s, border-color .35s, background .35s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
}
.price-card.is-featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card.is-featured h3,
.price-card.is-featured .price-card__value { color: var(--bg); }
.price-card.is-featured p { color: rgba(246, 241, 232, 0.65); }
.price-card.is-featured .price-card__from { color: var(--gold); }

.price-card__tag {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price-card h3 {
  font-size: 26px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.price-card__from {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.price-card__value {
  font-family: var(--serif);
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-card__value sup {
  font-size: 16px;
  vertical-align: super;
  margin-right: 6px;
  font-family: var(--sans);
  letter-spacing: 0;
}
.price-card p { font-size: 14px; line-height: 1.55; }
.price-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.pricing__note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ==========================================================
   DEPOIMENTOS
   ========================================================== */
.testimonials {
  background: var(--bg-2);
  overflow: hidden;
}
.testimonials__head {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) {
  .testimonials__head { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: var(--bg-2);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testimonial__quote-mark {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  font-style: italic;
}
.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.testimonial__stars svg { width: 14px; height: 14px; fill: currentColor; }
.testimonial__text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex: 1;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  flex-shrink: 0;
}
.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.testimonial__meta {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq__head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__btn {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .25s;
}
.faq__btn:hover { color: var(--accent); }
.faq__btn .toggle {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s;
}
.faq__btn .toggle::before,
.faq__btn .toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
}
.faq__btn .toggle::before { width: 10px; height: 1px; }
.faq__btn .toggle::after { width: 1px; height: 10px; transition: transform .25s; }
.faq__item.is-open .toggle { background: var(--ink); }
.faq__item.is-open .toggle::before,
.faq__item.is-open .toggle::after { background: var(--bg); }
.faq__item.is-open .toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.2,.8,.2,1);
}
.faq__answer__inner {
  padding-bottom: 28px;
  max-width: 65ch;
}
.faq__answer p { line-height: 1.7; }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(184, 99, 47, 0.25), transparent 50%),
              radial-gradient(ellipse at 80% 100%, rgba(200, 167, 114, 0.2), transparent 50%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.final-cta .eyebrow { color: var(--gold); }
.final-cta .eyebrow::before { background: var(--gold); }
.final-cta h2 {
  color: var(--bg);
  max-width: 14ch;
  font-size: clamp(44px, 8vw, 96px);
}
.final-cta p {
  max-width: 50ch;
  color: rgba(246, 241, 232, 0.7);
  font-size: 17px;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}
.final-cta__buttons .btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: var(--bg);
}
.final-cta__buttons .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.final-cta__details {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.6);
}
.final-cta__details span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.final-cta__details span::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--bg);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
}
.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  max-width: 32ch;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ==========================================================
   FLOATING WHATSAPP
   ========================================================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--wa-green);
  color: #fff;
  padding: 14px 20px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  opacity: 0;
  transform: translateY(20px);
}
.wa-float.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0,0,0,0.12);
}
.wa-float__icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.wa-float__icon svg { width: 24px; height: 24px; color: var(--wa-green); }
.wa-float__icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 0.4;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-float__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.wa-float__text strong { font-size: 14px; font-weight: 600; }
.wa-float__text small { font-size: 11px; opacity: 0.85; }

@media (max-width: 600px) {
  .wa-float { bottom: 16px; right: 16px; padding: 10px 16px 10px 10px; }
  .wa-float__icon { width: 38px; height: 38px; }
  .wa-float__text strong { font-size: 13px; }
  .wa-float__text small { font-size: 10px; }
}

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.22,.9,.2,1), transform .9s cubic-bezier(.22,.9,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1.is-in { transition-delay: .1s; }
.reveal--delay-2.is-in { transition-delay: .2s; }
.reveal--delay-3.is-in { transition-delay: .3s; }
.reveal--delay-4.is-in { transition-delay: .4s; }

.reveal--scale {
  transform: translateY(30px) scale(0.96);
}
.reveal--scale.is-in { transform: translateY(0) scale(1); }

.reveal--left { transform: translateX(-40px); }
.reveal--left.is-in { transform: translateX(0); }

.parallax { will-change: transform; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* === Marquee === */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.marquee__track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  align-items: center;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee__track span::after {
  content: "❋";
  color: var(--accent);
  font-style: normal;
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================
   LIGHTBOX
   ========================================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 17, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__img {
  max-width: min(90vw, 900px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: lightboxIn .32s cubic-bezier(.22,.9,.2,1) forwards;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.gallery__item { cursor: zoom-in; }
