/* ==========================================================================
   Pontinhos Mandalas · Landing Page
   Design system: turquesa + dourado, estética premium e artesanal
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Paleta */
  --c-bg:           #fdfaf3;     /* marfim claro */
  --c-bg-alt:       #f5efe1;     /* marfim quente */
  --c-bg-card:      #ffffff;
  --c-ink:          #11243a;     /* azul profundo (texto) */
  --c-ink-soft:     #3a5872;     /* texto secundário */
  --c-muted:        #6a7d92;     /* legendas */
  --c-line:         #e5dccb;     /* divisores */

  --c-turquoise:    #2aa9a6;     /* turquesa principal */
  --c-turquoise-d:  #1e7a78;
  --c-turquoise-l:  #b6e0de;
  --c-petroleo:     #0e3a4f;     /* azul petróleo */
  --c-aqua:         #d8eeec;     /* verde-água suave */

  /* Dourado realista */
  --c-gold-1:       #f4d98a;     /* highlight */
  --c-gold-2:       #c9a14d;     /* base */
  --c-gold-3:       #8b6a26;     /* sombra */
  --grad-gold:      linear-gradient(135deg, #f7e29a 0%, #d6b35d 38%, #b18839 72%, #8b6a26 100%);
  --grad-gold-soft: linear-gradient(135deg, #fbeec4 0%, #e1c378 50%, #b89046 100%);
  --grad-bg-hero:   radial-gradient(1200px 800px at 80% -10%, #d8eeec 0%, transparent 60%),
                    radial-gradient(900px 700px at -10% 110%, #fbeec4 0%, transparent 55%),
                    linear-gradient(180deg, #fdfaf3 0%, #f7f1e3 100%);

  /* Sombras */
  --sh-sm: 0 2px 6px rgba(17,36,58,.06);
  --sh-md: 0 10px 30px rgba(17,36,58,.08);
  --sh-lg: 0 20px 60px rgba(17,36,58,.12);
  --sh-gold: 0 6px 24px rgba(176,128,46,.28);

  /* Tipografia */
  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-script:  'Cookie', 'Pinyon Script', 'Cormorant Garamond', cursive;
  --font-section: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Espaçamentos */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* Bordas */
  --rad-sm: 8px;
  --rad-md: 14px;
  --rad-lg: 22px;
  --rad-pill: 999px;

  /* Layout */
  --container: 1180px;
  --container-narrow: 920px;

  /* Animações */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--c-turquoise-d); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-petroleo); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
:focus-visible {
  outline: 3px solid var(--c-turquoise);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-section);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.18;
  color: var(--c-petroleo);
  margin: 0 0 var(--sp-4);
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); font-family: var(--font-display); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; }

/* Estilos específicos do hero */
.hero-text h1 .display-script {
  font-family: var(--font-script);
  font-size: 1.15em;
  line-height: .95;
  letter-spacing: 0;
  color: var(--c-petroleo);
  font-weight: 400;
}
.hero-text h1 .display-gold {
  font-family: var(--font-display);
  font-size: 1em;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.015em;
}
p  { margin: 0 0 var(--sp-4); color: var(--c-ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container-narrow { max-width: var(--container-narrow); }

/* ---------- Utilitários ---------- */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-turquoise-d);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--grad-gold);
  vertical-align: middle;
  margin-right: var(--sp-3);
}
.section { padding: var(--sp-9) 0; position: relative; }
.section-alt { background: var(--c-bg-alt); }
.section-dark {
  background: linear-gradient(180deg, #0e3a4f 0%, #0a2c3d 100%);
  color: #e9f3f3;
}
.section-dark h2, .section-dark h3 { color: #fdfaf3; }
.section-dark p { color: #c9dcdf; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--sp-7); }
.section-head h2 { text-wrap: balance; }
/* Para títulos longos que precisam caber em uma linha */
.section-head--single-line { max-width: 1080px; }
.section-head--single-line h2 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  white-space: normal;
  letter-spacing: -.01em;
}
@media (min-width: 980px) {
  .section-head--single-line h2 { white-space: nowrap; }
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-2) 50%, transparent);
  border: 0;
  margin: var(--sp-7) auto;
  max-width: 360px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--rad-pill);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-gold);
  color: #2a1c00;
  box-shadow: var(--sh-gold);
  border: 1px solid rgba(255,255,255,.4);
  background-size: 200% 200%;
  background-position: 0% 50%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 12px 36px rgba(176,128,46,.4);
  color: #2a1c00;
}
.btn-secondary {
  background: transparent;
  color: var(--c-petroleo);
  border: 1.5px solid var(--c-petroleo);
}
.btn-secondary:hover {
  background: var(--c-petroleo);
  color: #fdfaf3;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fdfaf3;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(14, 58, 79, .88); /* verde-petróleo da marca */
  -webkit-backdrop-filter: saturate(160%) blur(14px);
          backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(201,161,77,.18);
  transition: border-color .3s var(--ease), background .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 44, 61, .96);
  border-bottom-color: rgba(201,161,77,.32);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: var(--sp-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fdfaf3;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold-soft);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 0 0 1px rgba(201,161,77,.45), var(--sh-sm);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  color: #fdfaf3;
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-gold-1);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: var(--sp-6);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: #e9f3f3;
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--c-gold-1); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--grad-gold);
  transition: right .3s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: var(--sp-3); }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}
.menu-toggle span {
  display: block;
  width: 20px; height: 1.8px;
  background: var(--c-gold-1);
  position: relative;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0; width: 20px; height: 1.8px;
  background: var(--c-gold-1);
  transition: transform .3s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 var(--sp-9);
  background: var(--grad-bg-hero);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 92% 8%, rgba(201,161,77,.10) 0 1px, transparent 1.5px),
    radial-gradient(circle at 8% 92%, rgba(42,169,166,.10) 0 1px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .6;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
}
.hero-text h1 .display-script { display: block; }
.hero-text h1 .display-gold   { display: block; }
.hero-lead {
  font-size: 1.15rem;
  color: var(--c-ink-soft);
  max-width: 540px;
  margin-bottom: var(--sp-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  color: var(--c-muted);
  font-size: .9rem;
}
.hero-meta span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-meta svg { color: var(--c-gold-2); }

.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  display: grid; place-items: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: var(--grad-gold-soft);
  opacity: .32;
  filter: blur(46px);
}
.hero-art img {
  position: relative;
  width: 105%;
  max-width: none;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 24px 50px rgba(17,36,58,.28));
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-10px) rotate(2deg); }
}
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--rad-md);
  padding: 14px 18px;
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem;
  color: var(--c-petroleo);
  font-weight: 500;
}
.hero-badge svg { color: var(--c-gold-2); width: 22px; height: 22px; }
.hero-badge--1 { top: 8%; left: -4%; }
.hero-badge--2 { bottom: 10%; right: -2%; }

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--sp-8);
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 6px solid #fff;
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: -8% 35% 50% -8%;
  background: var(--grad-gold-soft);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
  opacity: .45;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.2vw, 5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-5);
  line-height: 1;
}
.about-title::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  background: var(--grad-gold);
  margin-top: var(--sp-3);
  border-radius: 2px;
}

/* ---------- Vibracionais cards (verde da marca) ---------- */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.vibe-card {
  background: linear-gradient(160deg, #1e7a78 0%, #0e3a4f 100%);
  color: #e9f3f3;
  border-radius: var(--rad-lg);
  padding: var(--sp-6);
  box-shadow: 0 10px 28px rgba(14,58,79,.18);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.vibe-card::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: var(--grad-gold-soft);
  border-radius: 50%;
  opacity: .15;
  transition: opacity .4s var(--ease), transform .6s var(--ease);
}
/* Borda dourada em volta no hover */
.vibe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--rad-lg);
  padding: 1.5px;
  background: var(--grad-gold);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.vibe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14,58,79,.28), var(--sh-gold);
}
.vibe-card:hover::after { opacity: 1; }
.vibe-card:hover::before { opacity: .28; transform: scale(1.15); }
.vibe-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-gold-soft);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: var(--sp-4);
  position: relative; z-index: 1;
}
.vibe-icon svg { color: var(--c-gold-3); width: 24px; height: 24px; }
.vibe-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fdfaf3;
  letter-spacing: -.005em;
  position: relative; z-index: 1;
}
.vibe-card p {
  margin: 0;
  font-size: .95rem;
  color: #c9dcdf;
  position: relative; z-index: 1;
}

/* ---------- Tipos de mandalas ---------- */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.type-card {
  background: var(--c-bg-card);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
/* Borda dourada em volta no hover */
.type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--rad-lg);
  padding: 1.5px;
  background: var(--grad-gold);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.type-card:hover::after { opacity: 1; }
.type-card-img {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--c-bg-alt);
}
.type-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}
/* Imagem da Mandala Colli (cachoeira) — focar na mandala que fica embaixo */
.type-card-img--bottom img { object-position: center 78%; }
.type-card:hover .type-card-img img { transform: scale(1.06); }
.type-card-body { padding: var(--sp-5); }
.type-tag {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.type-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -.005em;
  margin-bottom: 8px;
}
.type-card p { margin: 0; font-size: .95rem; }

/* ---------- Portfólio ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.filter-btn {
  padding: 9px 18px;
  border-radius: var(--rad-pill);
  font-size: .88rem;
  font-weight: 500;
  background: transparent;
  color: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  transition: all .25s var(--ease);
}
.filter-btn:hover { color: var(--c-petroleo); border-color: var(--c-turquoise); }
.filter-btn.active {
  background: var(--c-petroleo);
  color: #fff;
  border-color: var(--c-petroleo);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.gal-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--rad-md);
  overflow: hidden;
  background: var(--c-bg-alt);
  cursor: zoom-in;
  box-shadow: var(--sh-sm);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,58,79,.7));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gal-item:hover::after { opacity: 1; }
.gal-caption {
  position: absolute;
  left: 16px; bottom: 16px;
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: all .35s var(--ease);
}
.gal-item:hover .gal-caption { transform: none; opacity: 1; }
.gal-caption small {
  display: block;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-gold-1);
  margin-bottom: 2px;
}
.gallery-cta { text-align: center; margin-top: var(--sp-6); }

/* ---------- Formatos / preços ---------- */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.format-card {
  background: var(--c-bg-card);
  border-radius: var(--rad-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
/* Borda dourada em volta no hover */
.format-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--rad-lg);
  padding: 1.5px;
  background: var(--grad-gold);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.format-card:hover::after { opacity: 1; }
.format-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -.005em;
  margin-bottom: 10px;
}
.format-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--c-petroleo);
  letter-spacing: -.01em;
  margin: var(--sp-3) 0;
}
.format-price small {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: block;
  margin-bottom: 4px;
}
.format-list {
  list-style: none;
  padding: 0; margin: var(--sp-3) 0 var(--sp-5);
  font-size: .92rem;
  color: var(--c-ink-soft);
}
.format-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--c-line);
  display: flex; justify-content: space-between; gap: 10px;
}
.format-list li:last-child { border-bottom: 0; }
.format-list b { color: var(--c-petroleo); font-weight: 600; }

.format-table-toggle {
  margin: var(--sp-6) auto 0;
  display: block;
  text-align: center;
}
.format-table-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), margin-top .3s;
}
.format-table-wrap.open { max-height: 2400px; margin-top: var(--sp-6); }
.format-table {
  width: 100%;
  background: var(--c-bg-card);
  border-radius: var(--rad-lg);
  border: 1px solid var(--c-line);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-size: .92rem;
}
.format-table caption {
  text-align: left;
  padding: var(--sp-5);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--c-petroleo);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}
.format-table th, .format-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.format-table th {
  background: var(--c-aqua);
  color: var(--c-petroleo);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.format-table tr:last-child td { border-bottom: 0; }

/* ---------- Como encomendar ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  counter-reset: step;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rad-lg);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--sp-3);
  display: block;
  letter-spacing: -.01em;
}
.step h3 { color: #fdfaf3; margin-bottom: 8px; font-size: 1.2rem; font-weight: 400; letter-spacing: -.005em; }
.step p { color: #b8cdd0; font-size: .92rem; margin: 0; }

/* ---------- Por que escolher ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.why-item {
  text-align: center;
  padding: var(--sp-5);
}
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold-soft);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.why-icon svg { color: var(--c-gold-3); width: 28px; height: 28px; }
.why-item h3 { font-size: 1.2rem; font-weight: 400; letter-spacing: -.005em; margin-bottom: 6px; }
.why-item p { font-size: .94rem; margin: 0; }

/* ---------- Geometria sagrada (mais verde da marca) ---------- */
.section-geometria {
  background:
    radial-gradient(900px 600px at 90% 10%, rgba(42,169,166,.16) 0%, transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(30,122,120,.14) 0%, transparent 60%),
    linear-gradient(180deg, #f1f8f6 0%, #e3efed 100%);
  position: relative;
}
.section-geometria::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(42,169,166,.08) 0 1px, transparent 1.5px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: .5;
}
.section-geometria .container { position: relative; z-index: 1; }
.section-geometria .eyebrow { color: var(--c-turquoise-d); }
.section-geometria .eyebrow::before { background: linear-gradient(90deg, var(--c-turquoise-d), var(--c-gold-2)); }
.geo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.geo-item {
  background: linear-gradient(160deg, #ffffff 0%, #e8f4f2 100%);
  border-radius: var(--rad-md);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  border: 1px solid rgba(42,169,166,.22);
  box-shadow: 0 4px 14px rgba(14,58,79,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.geo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30,122,120,.18);
  border-color: var(--c-turquoise);
}
.geo-symbol {
  width: 60px; height: 60px;
  margin: 0 auto var(--sp-3);
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff, var(--c-aqua));
  box-shadow: inset 0 0 0 1px rgba(42,169,166,.25), 0 2px 8px rgba(14,58,79,.08);
}
.geo-symbol svg { width: 60%; height: 60%; color: var(--c-turquoise-d); }
.geo-item h4 {
  font-size: 1.15rem;
  letter-spacing: -.005em;
  font-weight: 400;
  color: var(--c-petroleo);
  margin-bottom: 6px;
}
.geo-item p {
  font-size: .85rem;
  margin: 0;
  color: var(--c-ink-soft);
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -.005em;
  color: var(--c-petroleo);
  font-family: var(--font-display);
}
.faq-q:hover { color: var(--c-turquoise-d); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-gold-soft);
  display: grid; place-items: center;
  position: relative;
  transition: transform .3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--c-gold-3);
}
.faq-icon::before { width: 12px; height: 1.6px; }
.faq-icon::after  { width: 1.6px; height: 12px; transition: transform .3s var(--ease); }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-a {
  padding: 0 0 24px;
  color: var(--c-ink-soft);
  font-size: .98rem;
  max-width: 720px;
}
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  background: linear-gradient(180deg, #0e3a4f 0%, #0a2c3d 100%);
  color: #fdfaf3;
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  overflow: hidden;
  isolation: isolate;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14,58,79,.78), rgba(30,122,120,.72)),
    url('assets/img/cta-final.jpg') center center / cover no-repeat;
  z-index: -1;
}
.cta-final h2 { color: #fdfaf3; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-final .display-script {
  font-style: italic;
  display: block;
  color: var(--c-gold-1);
}
.cta-final p {
  color: #cfe2e4;
  max-width: 560px;
  margin: 0 auto var(--sp-6);
}
.cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #08222e;
  color: #b6cbce;
  padding: var(--sp-8) 0 var(--sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-name { color: #fdfaf3; }
.footer-brand p { color: #91a8ab; margin-top: var(--sp-3); max-width: 360px; font-size: .92rem; }
.footer h4 {
  color: #fdfaf3;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 5px 0; font-size: .93rem; }
.footer ul a { color: #b6cbce; }
.footer ul a:hover { color: var(--c-gold-1); }
.footer-contact a { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--c-gold-2); flex-shrink: 0; }
.footer-bottom {
  text-align: center;
  padding-top: var(--sp-5);
  font-size: .82rem;
  color: #6b8489;
}
.footer-bottom span { color: var(--c-gold-1); }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  z-index: 40;
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: .3;
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { transform: scale(.9); opacity: .35; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 34, 46, .94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 80;
  padding: var(--sp-5);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: var(--rad-md);
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25);
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: #cfe2e4;
  font-size: .92rem;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.in-1 { transition-delay: .08s; }
.reveal.in-2 { transition-delay: .16s; }
.reveal.in-3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root { --sp-9: 72px; --sp-10: 96px; }
  .hero { padding-top: 120px; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .vibe-grid, .types-grid, .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .geo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-portrait { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
  .section-head--single-line h2 { white-space: normal; }
}
@media (max-width: 720px) {
  :root { --sp-9: 56px; }
  body { font-size: 16px; }
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    background: var(--c-bg);
    padding: var(--sp-5);
    gap: 0;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--sh-md);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links li { border-bottom: 1px solid var(--c-line); }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .vibe-grid, .types-grid, .formats-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .about-portrait { aspect-ratio: 4/5; max-width: 420px; margin: 0 auto; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 10px; } .lightbox-next { right: 10px; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 26px; height: 26px; }
  .format-table th, .format-table td { padding: 10px 12px; font-size: .85rem; }
}

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