/* ============================================================
   FYBER SHOW PISCINAS — style.css (v2)
   Direção: fabricante premium clean. Branco + navy + azul-água.
   Tipografia: Plus Jakarta Sans (escolha do Samuel, 2026-09-01).
   Referências: swimhere.com / leisurepoolsusa.com
   ============================================================ */

:root {
  --navy-950: #06141F;
  --navy-900: #0A1E2F;
  --navy-800: #0F2A40;
  --navy-700: #164059;
  --ink: #0A1B2A;
  --ink-soft: #46596C;
  --paper: #FFFFFF;
  --paper-deep: #F1F6F9;
  --sand: #E3EDF2;
  --white: #FFFFFF;
  --teal: #0FA8CF;
  --teal-deep: #0B84A4;
  --aqua: #6FD8EF;
  --line: rgba(10, 27, 42, 0.13);
  --line-light: rgba(245, 250, 252, 0.2);

  --font-body: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;

  --w-content: 1200px;
  --w-wide: 1440px;
  --gutter: clamp(20px, 4vw, 48px);

  --r-card: 14px;
  --r-btn: 10px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.9s;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection { background: var(--teal); color: var(--white); }

/* ---------- Acessibilidade ---------- */

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--navy-900);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

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

/* modo captura de tela (?shot=1) */
html.shot .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
html.shot .hero-bg img { animation: none !important; }
html.shot .marquee-track { animation: none !important; }
@media (min-width: 900px) {
  html.shot .hero { min-height: 880px; height: 880px; }
  html.shot .g-hero { min-height: 820px; }
}
/* modo miniatura de compartilhamento (?og=1): hero limpo, sem portas nem menu */
html.og .hero { min-height: 100svh; height: 100svh; }
html.og .header,
html.og .doors { display: none; }
html.og .hero-content { justify-content: center; }
html.og .hero-selo { margin-top: 0; }

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

/* ---------- Utilitários ---------- */

.wrap {
  width: min(var(--w-content), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.wrap-wide {
  width: min(var(--w-wide), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--teal);
}
.on-dark .eyebrow { color: var(--aqua); }

h1, h2, h3 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.title-xl { font-size: clamp(36px, 5vw, 68px); }
.title-lg { font-size: clamp(29px, 3.7vw, 48px); }
.title-md { font-size: clamp(22px, 2.5vw, 30px); }

.lead {
  font-size: clamp(17px, 1.55vw, 19.5px);
  color: var(--ink-soft);
  max-width: 58ch;
}
.on-dark .lead { color: rgba(245, 250, 252, 0.8); }

/* ---------- Reveal on scroll ---------- */

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--rv-delay, 0s);
}
.rv.in { opacity: 1; transform: none; }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--r-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.35s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn .arr { transition: transform 0.35s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

.btn-solid {
  background: var(--navy-900);
  color: var(--white);
}
.btn-solid:hover { background: var(--navy-700); box-shadow: 0 14px 30px -14px rgba(6, 20, 31, 0.5); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-deep); box-shadow: 0 14px 30px -14px rgba(11, 132, 164, 0.6); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); }

.on-dark .btn-ghost { border-color: rgba(245, 250, 252, 0.4); color: var(--white); }
.on-dark .btn-ghost:hover { border-color: var(--white); }

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.header .logo img { height: 56px; width: auto; transition: height 0.35s; }
.header .logo .logo-dark { display: none; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.nav a:not(.btn) {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  position: relative;
  padding-block: 6px;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav a:not(.btn):hover::after,
.nav a:not(.btn)[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .btn { padding: 11px 22px; font-size: 14px; }

@media (min-width: 881px) and (max-width: 1180px) {
  .nav { gap: 16px; }
  .nav a:not(.btn) { font-size: 13.5px; }
  .nav .btn { padding: 10px 16px; font-size: 13px; }
}

/* header depois do scroll ou em página clara.
   O fundo com blur vive num pseudo-elemento: backdrop-filter no próprio
   header faria o menu mobile (position fixed) se prender ao header. */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.4s;
}
.header.scrolled,
.header.header-light {
  box-shadow: 0 1px 0 var(--line);
}
.header.scrolled::before,
.header.header-light::before {
  opacity: 1;
}
.header.scrolled .nav a:not(.btn),
.header.header-light .nav a:not(.btn) { color: var(--ink); }
.header.scrolled .logo .logo-light,
.header.header-light .logo .logo-light { display: none; }
.header.scrolled .logo .logo-dark,
.header.header-light .logo .logo-dark { display: block; }
.header.scrolled .logo img { height: 46px; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  margin-block: 6px;
  transition: transform 0.3s, opacity 0.3s;
}
.header .menu-toggle { color: var(--white); }
.header.scrolled .menu-toggle,
.header.header-light .menu-toggle { color: var(--ink); }

@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--navy-950);
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a:not(.btn) { color: var(--white) !important; font-size: 20px; }
  body.nav-locked { overflow: hidden; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .menu-toggle.open { position: relative; z-index: 10; color: var(--white) !important; }
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 60%;
  transform: scale(1.2);
  animation: kenburns 26s var(--ease-out) both;
}
@keyframes kenburns {
  from { transform: scale(1.3) translateY(-1%); }
  to { transform: scale(1.2) translateY(0); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 46% at 50% 62%, rgba(6, 20, 31, 0.44), transparent 70%),
    linear-gradient(to top, rgba(6, 20, 31, 0.92) 0%, rgba(6, 20, 31, 0.5) 36%, rgba(6, 20, 31, 0.16) 62%, rgba(6, 20, 31, 0.42) 100%);
}

.hero-content {
  flex: 1;
  padding-block: 110px 54px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-selo {
  margin-top: auto;
  height: clamp(56px, 6.5vw, 84px);
  width: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 2px 18px rgba(6, 20, 31, 0.5));
}

.hero h1 {
  max-width: 17ch;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--aqua);
}

.hero .lead {
  margin-bottom: 42px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(6, 20, 31, 0.6);
}

/* portas de entrada */
.doors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: auto;
  width: 100%;
  text-align: left;
}

.door {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-radius: var(--r-card);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 20, 31, 0.5);
  backdrop-filter: blur(10px);
  transition: background 0.35s, border-color 0.35s, transform 0.4s var(--ease-out);
}
.door:hover { transform: translateY(-4px); border-color: var(--teal); background: rgba(6, 20, 31, 0.68); }

.door strong {
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}
.door span { font-size: 14.5px; color: rgba(255, 255, 255, 0.75); font-weight: 400; }

.door .door-arr {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: var(--r-btn);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease-out);
}
.door:hover .door-arr { background: var(--teal); border-color: var(--teal); transform: translateX(4px); }

/* ---------- Faixa de números ---------- */

.stats {
  background: var(--navy-950);
  color: var(--white);
  border-top: 1px solid var(--line-light);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  padding-block: 42px;
  gap: 32px;
}
.stat { text-align: left; padding-inline: 8px; }
.stat b {
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.stat b sup { font-size: 0.42em; color: var(--aqua); font-weight: 700; }
.stat span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 250, 252, 0.62);
}

/* ---------- Seções ---------- */

.section { padding-block: clamp(76px, 9.5vw, 132px); }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(42px, 5.5vw, 68px);
}
.section-head .lead { justify-self: end; }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .lead { justify-self: start; }
}

/* ---------- Linhas (grid editorial) ---------- */

.lines-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.line-card:nth-child(1) { grid-column: span 3; }
.line-card:nth-child(2) { grid-column: span 3; }
.line-card:nth-child(3) { grid-column: span 2; }
.line-card:nth-child(4) { grid-column: span 2; }
.line-card:nth-child(5) { grid-column: span 2; }
@media (max-width: 900px) {
  .line-card:nth-child(n) { grid-column: span 6; }
}

.line-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  color: var(--white);
  isolation: isolate;
}
.line-card:nth-child(-n+2) { aspect-ratio: 16 / 12.5; }
@media (max-width: 900px) {
  .line-card:nth-child(n) { aspect-ratio: 4 / 3.4; }
}

.line-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.1s var(--ease-out);
}
.line-card:hover img { transform: scale(1.06); }

.line-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(6, 20, 31, 0.85) 0%, rgba(6, 20, 31, 0.12) 46%, transparent 70%);
  transition: background 0.4s;
}

.line-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.line-card h3 {
  font-size: clamp(21px, 2vw, 27px);
  margin-bottom: 4px;
}
.line-card p {
  font-size: 14px;
  color: rgba(245, 250, 252, 0.8);
  max-width: 34ch;
}
.line-card .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 6px;
}
.line-card .line-arr {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-btn);
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease-out);
}
.line-card:hover .line-arr { background: var(--teal); border-color: var(--teal); transform: translateX(4px); }

/* ---------- Galeria de piscina real ---------- */

.galeria {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.galeria figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
}
.galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.galeria figure:hover img { transform: scale(1.05); }
@media (max-width: 900px) {
  .galeria {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .galeria figure { flex: 0 0 68vw; scroll-snap-align: start; }
}

/* ---------- Marquee de modelos ---------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 18px;
  background: var(--paper-deep);
}
.marquee-track {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee span {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee span i {
  font-style: normal;
  color: var(--teal);
  margin-right: 52px;
  font-size: 11px;
  vertical-align: 2px;
}

/* ---------- Seção fábrica (escura) ---------- */

.factory {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.factory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 900px) {
  .factory-grid { grid-template-columns: 1fr; }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.process-grid figure {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  isolation: isolate;
}
.process-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.9s var(--ease-out);
}
.process-grid figure:hover img { transform: scale(1.05); }
.process-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 20, 31, 0.74), transparent 45%);
}
.process-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.steps { margin-top: 36px; display: grid; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  padding-block: 17px;
  border-top: 1px solid var(--line-light);
  align-items: baseline;
}
.step b {
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--aqua);
  min-width: 34px;
  font-variant-numeric: tabular-nums;
}
.step div strong { display: block; font-size: 16.5px; font-weight: 700; margin-bottom: 2px; }
.step div span { font-size: 14.5px; color: rgba(245, 250, 252, 0.66); }

/* ---------- História ---------- */

.story { background: var(--paper); position: relative; }
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }

.story-years {
  font-size: clamp(60px, 8.5vw, 120px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}
.story-years em {
  display: block;
  font-size: 0.16em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 14px;
}

.story-media {
  border-radius: var(--r-card);
  overflow: hidden;
  margin-top: 34px;
  box-shadow: 0 30px 60px -32px rgba(6, 20, 31, 0.45);
}

.story p + p { margin-top: 18px; }
.story .story-text p { color: var(--ink-soft); }
.story .story-text p strong { color: var(--ink); font-weight: 700; }

/* ---------- Depoimentos ---------- */

.quotes { background: var(--paper-deep); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: var(--r-card);
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px rgba(6, 20, 31, 0.35); }
.quote .qmark { display: none; }
.quote p { font-size: 16px; color: var(--ink-soft); flex: 1; }
.quote footer strong { display: block; font-size: 15px; font-weight: 700; }
.quote footer span { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Depoimentos em vídeo ---------- */

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }
.video-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .video-cards { grid-template-columns: 1fr; } }
.video-card { margin: 0; }
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--r-card);
  background: var(--navy-950);
  display: block;
}
.video-card figcaption { margin-top: 12px; }
.video-card figcaption strong { display: block; font-size: 15px; font-weight: 700; }
.video-card figcaption span { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Faixa Projetos Garden ---------- */

.photo-band .btn { margin-top: 18px; }

/* ---------- Regiões ---------- */

.regions {
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.regions-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
@media (max-width: 820px) { .regions-inner { grid-template-columns: 1fr; } }

.uf-row { display: flex; gap: 10px; flex-wrap: wrap; }
.uf {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  border: 1px solid rgba(245, 250, 252, 0.3);
  border-radius: var(--r-btn);
  padding: 14px 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease-out);
}
.uf:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }

/* ---------- Banner de imagem (faixa) ---------- */

.photo-band {
  position: relative;
  min-height: clamp(320px, 44vw, 540px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(6, 20, 31, 0.72), rgba(6, 20, 31, 0.06) 55%);
}
.photo-band .band-caption {
  padding-bottom: 44px;
}
.photo-band strong {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  display: block;
}
.photo-band span { font-size: 15px; color: rgba(245, 250, 252, 0.85); }

/* ---------- CTA final ---------- */

.cta-final {
  position: relative;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-final .cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-final .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(6, 20, 31, 0.85), rgba(6, 20, 31, 0.92));
}
.cta-final h2 { max-width: 22ch; margin-inline: auto; margin-bottom: 18px; }
.cta-final .lead { margin-inline: auto; margin-bottom: 38px; color: rgba(245, 250, 252, 0.85); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-ghost,
.page-garden .btn-ghost { border-color: rgba(245, 250, 252, 0.45); color: var(--white); }
.cta-final .btn-ghost:hover,
.page-garden .btn-ghost:hover { border-color: var(--white); }

/* ---------- Rodapé ---------- */

.footer {
  background: var(--navy-950);
  color: rgba(245, 250, 252, 0.72);
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 66px 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer img.flogo { height: 60px; width: auto; margin-bottom: 18px; }
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: var(--aqua); }
.footer-base {
  border-top: 1px solid var(--line-light);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245, 250, 252, 0.45);
}

.footer-base .credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.footer-base .credit:hover { opacity: 1; }
.footer-base .credit img { height: 18px; width: auto; display: inline-block; }

/* ============================================================
   Páginas internas
   ============================================================ */

.page-hero {
  background: var(--navy-950);
  color: var(--white);
  padding-top: 150px;
  padding-bottom: clamp(54px, 6.5vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--aqua);
  margin-bottom: 26px;
  transition: color 0.3s, gap 0.3s var(--ease-out);
}
.page-back:hover { color: var(--white); gap: 12px; }

.page-hero h1 { max-width: 20ch; margin-bottom: 18px; }
.page-hero .lead { color: rgba(245, 250, 252, 0.78); }

/* ---- linhas.html ---- */

.linha-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(54px, 6.5vw, 90px);
  border-top: 1px solid var(--line);
}
.linha-block:first-of-type { border-top: 0; }
.linha-block:nth-of-type(even) .linha-media { order: 2; }
@media (max-width: 900px) {
  .linha-block { grid-template-columns: 1fr; }
  .linha-block:nth-of-type(even) .linha-media { order: 0; }
}

.linha-media {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 56px -32px rgba(6, 20, 31, 0.45);
}
.linha-media img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.linha-media:hover img { transform: scale(1.04); }
.linha-media .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 6px;
}

.linha-body .lead { margin-bottom: 26px; }

.models {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.models th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 14px 10px 0;
  border-bottom: 2px solid var(--ink);
}
.models td {
  padding: 12px 14px 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.models td:first-child {
  font-weight: 700;
  color: var(--ink);
}
.models td:first-child::after {
  display: inline-block;
  white-space: nowrap;
}
.models .top td:first-child::after {
  content: "Mais vendido";
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  border-radius: 5px;
  padding: 4px 9px;
  margin-left: 10px;
  vertical-align: middle;
}
.models .new td:first-child::after {
  content: "Lançamento";
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  border: 1px solid var(--teal);
  border-radius: 5px;
  padding: 3px 8px;
  margin-left: 10px;
  vertical-align: middle;
}

.models .soon td:first-child::after {
  content: "Em breve";
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 3px 8px;
  margin-left: 10px;
  vertical-align: middle;
}

.models th:last-child,
.models td:last-child { text-align: right; padding-right: 0; }
.models td:nth-child(2) { white-space: nowrap; }
.dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  border: 1.5px solid var(--teal);
  border-radius: 7px;
  padding: 6px 10px 6px 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.dl::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2v8M4.5 6.5 8 10l3.5-3.5M3 13.5h10' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2v8M4.5 6.5 8 10l3.5-3.5M3 13.5h10' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.dl:hover { background: var(--teal); color: var(--white); }
.dl-none { font-size: 12.5px; color: var(--ink-soft); white-space: nowrap; }
.solo .dl { margin-top: 14px; }
@media (max-width: 600px) {
  .linha-body { min-width: 0; }
  .models { font-size: 14px; }
  .models th { font-size: 9.5px; letter-spacing: 0.06em; padding-right: 6px; }
  .models td { padding-right: 6px; }
  .models td:nth-child(2) { white-space: normal; }
  .models td:first-child::after { display: block; width: max-content; margin: 4px 0 0; }
  .models th:last-child { font-size: 0; }
  .models th:last-child::after { content: "PDF"; font-size: 9.5px; letter-spacing: 0.06em; }
  .models .dl { font-size: 0; gap: 0; padding: 7px; }
  .models .dl::before { width: 15px; height: 15px; }
  .dl-none { white-space: normal; font-size: 11.5px; }
}

.linha-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border-left: 3px solid var(--teal);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
}

.page-hero .lead a {
  color: var(--aqua);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tabela-nota {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding-block: 28px 8px;
  border-top: 1px solid var(--line);
}

/* ---- modelos avulsos (Cancún, Kids) ---- */

.solo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 820px) { .solo-grid { grid-template-columns: 1fr; } }
.solo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 480px) { .solo { grid-template-columns: 1fr; } }
.solo figure {
  background: var(--paper-deep);
  border-radius: 12px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.solo figure img { max-width: 82%; max-height: 82%; object-fit: contain; }
.solo h3 { font-size: 21px; margin-bottom: 8px; }
.solo p { font-size: 14.5px; color: var(--ink-soft); }
.solo .spec {
  margin-top: 12px;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 600;
}
.solo .spec span { color: var(--ink-soft); font-weight: 400; }

/* ---- pastilhas ---- */

.pastilhas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px) { .pastilhas-grid { grid-template-columns: 1fr; } }
.pastilhas-grid figure {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.pastilhas-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.pastilhas-grid figure:hover img { transform: scale(1.05); }

/* ---- sobre.html: timeline ---- */

.timeline { position: relative; max-width: 760px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}
.t-item { position: relative; padding-left: 44px; padding-block: 22px; }
.t-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--teal);
}
.t-item b {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: block;
  margin-bottom: 6px;
}
.t-item h3 { font-size: 22px; margin-bottom: 8px; }
.t-item p { color: var(--ink-soft); font-size: 16px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 26px;
}
.pillar h3 { font-size: 19px; margin-bottom: 10px; }
.pillar p { font-size: 15px; color: var(--ink-soft); }
.pillar .p-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-btn);
  background: var(--navy-900);
  color: var(--aqua);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}

/* ---- lojistas.html / onde-comprar.html ---- */

.material {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: center;
}
.material h3 { font-size: 19px; margin-bottom: 6px; }
.material p { font-size: 15px; color: var(--ink-soft); }
.material-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
@media (max-width: 820px) {
  .material { grid-template-columns: 1fr; }
  .material-actions { justify-content: flex-start; }
}

.micro {
  font-size: 14px;
  color: var(--ink-soft);
}

.steps-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  counter-reset: passo;
}
.steps-cards .sc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 24px;
  counter-increment: passo;
}
.steps-cards .sc::before {
  content: "0" counter(passo);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}
.steps-cards .sc strong { display: block; margin-bottom: 6px; font-size: 16px; font-weight: 700; }
.steps-cards .sc span { font-size: 14.5px; color: var(--ink-soft); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 46px);
  max-width: 720px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper-deep);
  border: 1.5px solid var(--line);
  border-radius: var(--r-btn);
  padding: 13px 16px;
  transition: border-color 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-ok {
  display: none;
  background: #E8F4EC;
  border: 1px solid #BFE0C9;
  color: #1E5B34;
  border-radius: var(--r-btn);
  padding: 16px 20px;
  font-size: 15px;
  margin-top: 16px;
}
.form-ok.show { display: block; }

.faq { max-width: 780px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: 6px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
  padding-block: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.3s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; color: var(--ink-soft); font-size: 15.5px; max-width: 62ch; }

/* ============================================================
   Projetos Garden (página escura, editorial)
   ============================================================ */

.page-garden { background: var(--navy-950); color: var(--white); }
.page-garden .section { padding-block: clamp(70px, 9vw, 120px); }
.page-garden .lead { color: rgba(245, 250, 252, 0.78); }
.page-garden .eyebrow { color: var(--aqua); }
.page-garden .eyebrow::before { background: var(--aqua); }

.g-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.g-hero img.g-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.g-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(6, 20, 31, 0.96) 0%, rgba(6, 20, 31, 0.55) 45%, rgba(6, 20, 31, 0.25) 100%);
}
.g-hero .wrap { padding-block: 150px 70px; }
.g-hero h1 { max-width: 14ch; font-size: clamp(40px, 6vw, 84px); letter-spacing: -0.03em; margin-bottom: 22px; }
.g-hero .lead { max-width: 52ch; font-size: clamp(17px, 1.7vw, 21px); margin-bottom: 36px; }

.g-aviso {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 250, 252, 0.6);
  border: 1px dashed rgba(245, 250, 252, 0.35);
  border-radius: 6px;
  padding: 6px 12px;
  margin-top: 26px;
}

.g-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
@media (max-width: 820px) { .g-cols { grid-template-columns: 1fr; } }
.g-col { padding: 40px 32px 40px 0; }
.g-col + .g-col { border-left: 1px solid var(--line-light); padding-left: 32px; }
@media (max-width: 820px) {
  .g-col + .g-col { border-left: 0; border-top: 1px solid var(--line-light); padding-left: 0; }
}
.g-col b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 14px;
}
.g-col h3 { font-size: 24px; margin-bottom: 10px; }
.g-col p { font-size: 15.5px; color: rgba(245, 250, 252, 0.72); }

.g-list { list-style: none; display: grid; gap: 14px; margin-top: 26px; }
.g-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17px;
  color: rgba(245, 250, 252, 0.88);
}
.g-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  margin-top: 10px;
}

.g-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
@media (max-width: 820px) { .g-gallery { grid-template-columns: 1fr; } }
.g-gallery figure {
  margin: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.g-gallery figure:first-child { aspect-ratio: 16 / 10; grid-row: span 2; }
.g-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.g-gallery figure:hover img { transform: scale(1.04); }
.g-legenda { margin-top: 16px; font-size: 13.5px; color: rgba(245, 250, 252, 0.55); }

.g-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: gpasso; }
@media (max-width: 820px) { .g-steps { grid-template-columns: 1fr; } }
.g-step {
  border: 1px solid var(--line-light);
  border-radius: var(--r-card);
  padding: 30px 28px;
  counter-increment: gpasso;
}
.g-step::before {
  content: "0" counter(gpasso);
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--aqua);
  margin-bottom: 16px;
}
.g-step strong { display: block; font-size: 18px; margin-bottom: 8px; }
.g-step span { font-size: 15px; color: rgba(245, 250, 252, 0.7); }

.page-garden .form-card { background: var(--navy-800); border-color: var(--line-light); }
.page-garden .field label { color: rgba(245, 250, 252, 0.85); }
.page-garden .field input,
.page-garden .field select,
.page-garden .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 250, 252, 0.2);
  color: var(--white);
}
.page-garden .field input:focus,
.page-garden .field select:focus,
.page-garden .field textarea:focus { background: rgba(255, 255, 255, 0.1); border-color: var(--aqua); }
.page-garden .field select option { color: var(--ink); }

/* buscador de lojistas */
.finder-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.finder-bar .field { min-width: 210px; }

.dealers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.dealer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 24px;
  display: grid;
  gap: 6px;
}
.dealer strong { font-size: 17px; font-weight: 700; }
.dealer span { font-size: 14.5px; color: var(--ink-soft); }
.dealer .btn { margin-top: 14px; justify-self: start; padding: 10px 20px; font-size: 13.5px; }
.dealer-end, .dealer-fone { font-size: 13.5px; color: var(--ink-soft); }
.dealer-fone a { color: inherit; text-decoration: none; }
.dealer-fone a:hover { color: var(--teal-deep); }
.dealers-empty {
  background: var(--paper-deep);
  border-radius: var(--r-card);
  padding: 34px;
  text-align: center;
  color: var(--ink-soft);
  display: none;
}
.dealers-empty.show { display: block; }
