/* ==========================================================================
   Caixa Pra Você — style.css
   Base clara (off-white + branco), verde estratégico, champagne nos acabamentos.
   ========================================================================== */

:root {
  --green: #123F2B;
  --green-deep: #0B3021;
  --champ: #C99A5B;
  --champ-light: #DDB77E;
  --paper: #F5F0E8;
  --white: #FFFFFF;

  --text: #2B4236;
  --text-soft: #4A5E53;
  --line: rgba(18, 63, 43, .14);
  --line-champ: rgba(201, 154, 91, .45);
  --ph: linear-gradient(155deg, #EFE8DC 0%, #E6DCCB 100%);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1320px;
  --hh: 92px;
  --logo-w: 112px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-io: cubic-bezier(.7, 0, .2, 1);
  --shadow: 0 24px 60px -30px rgba(11, 48, 33, .35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hh) + 12px);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.16rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; color: inherit; }
address { font-style: normal; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
.producao :focus-visible,
.contact__card :focus-visible,
.site-footer :focus-visible,
.wa-float:focus-visible { outline-color: var(--champ-light); }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: .8rem 1.2rem;
  background: var(--green);
  color: var(--paper);
  font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.wrap {
  width: min(100% - 2 * var(--gutter), var(--maxw));
  margin-inline: auto;
}
.section {
  position: relative;
  padding-block: clamp(4.5rem, 3rem + 7vw, 9.5rem);
}
.section--white { background: var(--white); }
.section--paper { background: var(--paper); }

/* ---------- Tipografia ---------- */
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.05rem, 1.35rem + 2.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--green);
  text-wrap: balance;
}
.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem);
  line-height: 1.12;
  color: var(--green);
  text-wrap: balance;
}
.h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.4rem + .4vw, 1.75rem);
  line-height: 1.2;
  color: var(--green);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75em;
  margin: 0 0 1.4rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--champ);
}
.eyebrow--light { color: var(--champ-light); }
.eyebrow--light::after { background: var(--champ-light); opacity: .6; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--champ);
  order: -1;
}

.star { width: .62em; height: .82em; fill: var(--champ); flex: none; }
.eyebrow .star { width: 1.1em; height: 1.45em; }
.icon { width: 1.2em; height: 1.2em; fill: currentColor; flex: none; }

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  min-height: 54px;
  padding: 0 1.7em;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
/* “caixa dentro da caixa”: moldura champagne interna no hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--champ-light);
  border-radius: 2px;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.btn:hover::after, .btn:focus-visible::after { opacity: .85; transform: scale(1); }
.btn .icon { width: 1.25em; height: 1.25em; }
.btn--green { background: var(--green); color: var(--paper); }
.btn--green:hover { background: var(--green-deep); }
.btn--paper { background: var(--paper); color: var(--green); }
.btn--paper::after { border-color: var(--champ); }
.btn--paper:hover { background: var(--white); }
.btn--outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn--outline:hover { background: var(--green); color: var(--paper); }
.btn--lg { min-height: 60px; padding: 0 2em; font-size: 1.04rem; }
.btn--sm { min-height: 46px; padding: 0 1.25em; font-size: .92rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  min-height: 44px;
  font-weight: 500;
  color: var(--green);
  background: linear-gradient(var(--champ), var(--champ)) left calc(100% - 8px) / 100% 1px no-repeat;
  transition: background-size .4s var(--ease), color .3s;
}
.link-arrow .icon { transition: transform .4s var(--ease); }
.link-arrow:hover { color: var(--green-deep); background-image: linear-gradient(var(--green), var(--green)); }
.link-arrow:hover .icon { transform: translateX(5px); }

/* ---------- Placeholders de imagem ---------- */
.media { position: relative; }
.media__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--ratio, 4 / 5);
  background: var(--ph);
  isolation: isolate;
}
/* moldura interna fina + textura de papel */
.media__frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 154, 91, .28);
  background:
    linear-gradient(135deg, transparent 49.6%, rgba(201, 154, 91, .14) 50%, transparent 50.4%),
    repeating-linear-gradient(90deg, rgba(18, 63, 43, .018) 0 1px, transparent 1px 6px);
  z-index: 0;
}
/* estrela da marca ao centro */
.media__frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 30px;
  translate: -50% -50%;
  background: var(--champ);
  opacity: .45;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath d='M12 0c.7 9.6 3.4 14.6 12 16-8.6 1.4-11.3 6.4-12 16-.7-9.6-3.4-14.6-12-16C8.6 14.6 11.3 9.6 12 0Z'/%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 24 32'%3E%3Cpath d='M12 0c.7 9.6 3.4 14.6 12 16-8.6 1.4-11.3 6.4-12 16-.7-9.6-3.4-14.6-12-16C8.6 14.6 11.3 9.6 12 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
  z-index: 0;
}
.media__frame > img,
.media__frame > picture,
.media__frame > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.4s var(--ease);
}
.media:hover .media__frame > img,
.media:hover .media__frame > picture > img { transform: scale(1.035); }

.media--hero    { --ratio: 1086 / 1448; }
.media--hero-detail { --ratio: 1351 / 1164; }
.media--wide    { --ratio: 3 / 2; }
.media--tall    { --ratio: 4 / 5; }
.media--square  { --ratio: 1 / 1; }
.media--label   { --ratio: 5 / 4; }
.media--banner  { --ratio: 16 / 9; }
.media--fold    { --ratio: 1 / 1; }
.media--portrait{ --ratio: 3 / 4; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 232, .8);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  --hh: 78px;
  --logo-w: 92px;
  background: rgba(245, 240, 232, .94);
  border-bottom-color: rgba(201, 154, 91, .35);
  box-shadow: 0 10px 30px -24px rgba(11, 48, 33, .5);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--hh);
  transition: height .4s var(--ease);
}
.brand { display: block; flex: none; }
.logo-crop {
  display: block;
  width: var(--logo-w);
  aspect-ratio: 482 / 390;
  overflow: hidden;
  transition: width .4s var(--ease);
}
.logo-crop img {
  width: 106.23%;
  max-width: none;
  margin: -10.37% 0 0 -2.9%;
}

.nav { margin-left: auto; }
.nav__list { display: flex; gap: clamp(1.1rem, 1.9vw, 2.2rem); }
.nav__list a {
  position: relative;
  display: inline-block;
  padding: .6rem 0;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--green);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .3rem;
  height: 1px;
  background: var(--champ);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-cta { margin-left: clamp(1rem, 2vw, 2rem); min-height: 52px; padding: 0 1.5em; font-size: 1.02rem; }

.burger { display: none; }
.burger {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--green);
  border-radius: 2px;
  transition: transform .45s var(--ease-io), opacity .3s, top .45s var(--ease-io);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22.5px; right: 17px; }
.burger span:nth-child(3) { top: 29px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22.5px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22.5px; transform: rotate(-45deg); }

/* Menu mobile */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  background: var(--paper);
  padding: calc(var(--hh) + 1.5rem) var(--gutter) max(1.5rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .65s var(--ease-io), visibility 0s linear .65s;
}
.mnav::before {
  content: "";
  position: absolute;
  inset: calc(var(--hh) + .5rem) 12px 12px;
  border: 1px solid rgba(201, 154, 91, .3);
  pointer-events: none;
}
.mnav.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path .65s var(--ease-io), visibility 0s;
}
.mnav__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.mnav__list li {
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mnav.is-open .mnav__list li { opacity: 1; transform: none; }
.mnav.is-open .mnav__list li:nth-child(1) { transition-delay: .18s; }
.mnav.is-open .mnav__list li:nth-child(2) { transition-delay: .23s; }
.mnav.is-open .mnav__list li:nth-child(3) { transition-delay: .28s; }
.mnav.is-open .mnav__list li:nth-child(4) { transition-delay: .33s; }
.mnav.is-open .mnav__list li:nth-child(5) { transition-delay: .38s; }
.mnav.is-open .mnav__list li:nth-child(6) { transition-delay: .43s; }
.mnav__list a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .85rem .25rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 1.5rem + 2vw, 2.4rem);
  line-height: 1.15;
  color: var(--green);
}
.mnav__num {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .15em;
  color: var(--champ);
  min-width: 1.8rem;
}
.mnav__foot {
  opacity: 0;
  transition: opacity .5s var(--ease) .45s;
}
.mnav.is-open .mnav__foot { opacity: 1; }
.mnav__hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  margin-top: 1rem;
  font-size: .95rem;
  color: var(--text-soft);
}
.mnav__hours .icon { color: var(--champ); }
html.menu-open { overflow: hidden; }
html.menu-open .site-header { background: var(--paper); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(1.25rem, .5rem + 2.5vw, 2.75rem) 0 clamp(4.5rem, 2rem + 7vw, 8.5rem);
  overflow: hidden;
}
.hero__green {
  position: absolute;
  top: clamp(4rem, 9vw, 7.5rem);
  bottom: clamp(3rem, 6vw, 5rem);
  right: 0;
  width: 31%;
  background: var(--green);
}
.hero__green::before {
  content: "";
  position: absolute;
  inset: 16px 16px 16px 16px;
  border: 1px solid rgba(221, 183, 126, .3);
  border-right: 0;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}
.hero__copy { max-width: 720px; padding-top: clamp(.5rem, 1.6vw, 2rem); }
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 1.3rem + 4.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.018em;
  color: var(--green);
  margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
}
.hero__title em {
  position: relative;
  display: inline-block;
  font-style: italic;
  white-space: nowrap;
}
.ribbon-line {
  position: absolute;
  left: 0;
  bottom: -.08em;
  width: 100%;
  height: .2em;
  overflow: visible;
}
.ribbon-line path {
  fill: none;
  stroke: var(--champ);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 1.4s var(--ease) .9s forwards;
}
.hero__lead {
  max-width: 33em;
  font-size: clamp(1.14rem, 1.05rem + .35vw, 1.3rem);
  color: var(--text);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.8rem;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}
.hours {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin: 0;
  font-size: .95rem;
  color: var(--text-soft);
}
.hours .icon { color: var(--champ); }

/* entrada da hero (CSS puro) */
.hero__eyebrow, .hero__title, .hero__lead, .hero__actions {
  animation: rise 1s var(--ease) both;
}
.hero__title   { animation-delay: .1s; }
.hero__lead    { animation-delay: .25s; }
.hero__actions { animation-delay: .4s; }

.hero__visual {
  --hero-w: min(90%, max(300px, (100svh - 250px) * .75));
  position: relative;
  padding: 2.4rem 0 3.5rem;
}
.media--hero {
  /* limita pela altura da tela para as fotos caberem na primeira dobra */
  width: var(--hero-w);
  margin-left: auto;
  box-shadow: var(--shadow);
  animation: unveil 1.3s var(--ease-io) .15s both;
}
.media--hero .media__frame { border-radius: 2px; }
/* tampa da caixa */
.hero__lid {
  position: absolute;
  top: calc(2.4rem - 20px);
  right: -10px;
  width: calc(var(--hero-w) + 20px);
  height: 12px;
  border: 1px solid var(--champ);
  border-bottom-color: transparent;
  background: var(--paper);
  transform-origin: 100% 100%;
  animation: lid 1.6s var(--ease) .9s both;
  z-index: 2;
}
.media--hero-detail {
  position: absolute;
  left: 4%;
  bottom: 0;
  width: 52%;
  z-index: 3;
  padding: 4px;
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: rise 1.1s var(--ease) .75s both;
}
.media--hero-detail .media__frame::before { inset: 8px; }
.hang-tag {
  position: absolute;
  top: 2.4rem;
  right: calc(var(--hero-w) * .48 + 90px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: 50% 0;
  animation: rise 1s var(--ease) 1.1s both, swing 7s ease-in-out 2.2s infinite;
}
.hang-tag__string {
  width: 1px;
  height: 46px;
  background: var(--champ);
}
.hang-tag__body {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .85em 1.2em .85em 1.2em;
  margin-top: -4px;
  background: var(--white);
  border: 1px solid var(--line-champ);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
  box-shadow: 0 14px 30px -18px rgba(11, 48, 33, .45);
}
.hang-tag__body::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 7px;
  height: 7px;
  translate: -50% 0;
  border: 1px solid var(--champ);
  border-radius: 50%;
  background: var(--paper);
}
.hang-tag__body { padding-top: 1.35em; }

/* ==========================================================================
   BRINDES — composição editorial
   ========================================================================== */
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
}
.split-head__title .h2 { max-width: 13em; }
.split-head__text {
  position: relative;
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
  border-left: 1px solid var(--line-champ);
  color: var(--text);
  max-width: 34em;
}

.cats__list {
  display: grid;
  gap: clamp(5rem, 3rem + 7vw, 10rem);
  margin-top: clamp(3.5rem, 2rem + 5vw, 7rem);
}
.cat {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
}
.cat__num {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--champ);
}
.cat__num::after { content: ""; width: 42px; height: 1px; background: var(--line-champ); }
.cat__body p { margin: 1rem 0 1.3rem; max-width: 30em; }
.cat__body .h3 { max-width: 12em; }

/* 01 — horizontal, canto arredondado */
.cat--a .cat__media { grid-column: 1 / 7; --ratio: 1351 / 1164; }
.cat--a .cat__media .media__frame { border-radius: 110px 2px 2px 2px; }
.cat--a .cat__body { grid-column: 8 / 12; }
@media (min-width: 1024px) {
  .cats .cat--a .cat__media { width: 88%; }
  .cats .cat--b .cat__media { width: 60%; }
  .cats .cat--b .cat__media-small { width: 42%; left: -4%; }
  .cats .cat--c .cat__media { width: 66%; }
  .cats .cat--d .cat__media { width: 56%; margin-left: 14%; }
  /* textos mais próximos das imagens */
  .cats .cat--a .cat__body { grid-column: 7 / 11; }
  .cats .cat--c .cat__body { grid-column: 6 / 11; }
  .cats .cat--d .cat__body { grid-column: 2 / 6; }
}

/* textos dos cards maiores */
.cats .cat__body .h3 { font-size: clamp(2rem, 1.5rem + 1.5vw, 2.95rem); }
.cats .cat__body p { font-size: clamp(1.15rem, 1.05rem + .35vw, 1.32rem); max-width: 28em; }
.cats .cat__body .link-arrow { font-size: 1.18rem; }
.cats .closures li { font-size: .84rem; }

/* 02 — texto + vertical em arco com sobreposição */
.cat--b .cat__body { grid-column: 2 / 6; grid-row: 1; }
.cat--b .cat__stack { grid-column: 7 / 13; grid-row: 1; position: relative; padding-bottom: 12%; }
.cat--b .cat__media { width: 70%; margin-left: auto; }
.cat--b .cat__media .media__frame { border-radius: 999px 999px 2px 2px; }
.cat--b .cat__media .media__frame::before { border-radius: 999px 999px 0 0; }
.cat__media-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cat__media-small .media__frame::before { inset: 8px; }
.cat--b .cat__media-small { --ratio: 1214 / 1295; }

/* 03 — painel off-white, imagem sai do painel */
.cat--c { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.cat__panel {
  grid-column: 3 / 13;
  grid-row: 1;
  align-self: stretch;
  margin-block: calc(-1 * clamp(2.5rem, 5vw, 4.5rem));
  background: var(--paper);
  position: relative;
}
.cat__panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 154, 91, .3);
}
.cat--c .cat__media { grid-column: 1 / 7; grid-row: 1; z-index: 1; box-shadow: var(--shadow); --ratio: 1014 / 1551; }
.cat--c .cat__body { grid-column: 8 / 12; grid-row: 1; z-index: 1; padding-block: 2rem; }
.closures { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.4rem; }
.closures li {
  position: relative;
  padding: .35rem .8rem .35rem 1.5rem;
  border: 1px solid var(--line-champ);
  border-radius: 2px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--white);
}
.closures li::before {
  content: "";
  position: absolute;
  left: .6rem;
  top: 50%;
  width: 5px;
  height: 5px;
  translate: 0 -50%;
  border-radius: 50%;
  border: 1px solid var(--champ);
}

/* 04 — etiqueta (cantos chanfrados) */
.cat--d .cat__body { grid-column: 1 / 5; grid-row: 1; }
.cat--d .cat__media { grid-column: 6 / 13; grid-row: 1; --ratio: 1086 / 1448; }
.media--label .media__frame {
  clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 28px, 100% calc(100% - 28px), calc(100% - 28px) 100%, 28px 100%, 0 calc(100% - 28px), 0 28px);
}
.media--label::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--champ);
  border-radius: 50%;
  background: var(--white);
  z-index: 2;
}

/* ==========================================================================
   PRODUÇÃO — bloco verde
   ========================================================================== */
.producao {
  background: var(--green);
  color: var(--paper);
  overflow: hidden;
  --ph: linear-gradient(155deg, #1A4A35 0%, #0F3726 100%);
}
.producao__depth {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 36%;
  background: var(--green-deep);
}
.producao__depth::before {
  content: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(221, 183, 126, .5) 30%, rgba(221, 183, 126, .5) 70%, transparent);
}
.producao .wrap { position: relative; }
.producao__title { color: var(--paper); max-width: 15em; font-size: clamp(1.85rem, 1.25rem + 2vw, 2.9rem); }
.statement {
  margin: clamp(1.25rem, 2.5vw, 2.25rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, .5rem + 4.8vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.02em;
}
.statement__a { display: block; color: var(--paper); }
.statement__b {
  display: flex;
  align-items: center;
  gap: .25em;
  padding-left: clamp(0rem, 8vw, 10rem);
  font-style: italic;
  color: var(--champ-light);
}
.statement__rule {
  flex: 0 0 clamp(36px, 9vw, 170px);
  height: 1px;
  background: var(--champ);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease) .4s;
}
.statement.is-visible .statement__rule,
html:not(.js) .statement__rule { transform: scaleX(1); }

.producao__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}
.producao__text { grid-column: 1 / 6; }
.producao__text p { color: rgba(245, 240, 232, .88); font-size: clamp(1.12rem, 1.05rem + .3vw, 1.26rem); }
.producao__visual { grid-column: 7 / 13; position: relative; padding-bottom: 10%; }
@media (min-width: 1024px) {
  /* imagens sobem ao lado da frase grande */
  .producao__visual { margin-top: calc(-1 * clamp(12rem, 21vw, 22rem)); padding-bottom: clamp(3rem, 6vw, 5rem); }
  .producao__main { margin-top: calc(-1 * clamp(4rem, 8vw, 9rem)); }
  /* sobreposta ao canto inferior esquerdo da foto maior, longe da frase grande */
  .producao .producao__small { bottom: -2.5rem; left: 18%; width: 30%; }
  .section.producao { padding-bottom: clamp(3.5rem, 5vw, 5rem); }
}
.producao__main { width: 58%; margin-left: auto; --ratio: 941 / 1672; }
.producao__main::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(221, 183, 126, .45);
  pointer-events: none;
}
.producao__small {
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 38%;
  padding: 10px;
  background: var(--green);
  z-index: 2;
}
.producao__small { --ratio: 941 / 1672; }
.producao__small .media__frame::before { inset: 8px; }


/* ==========================================================================
   PROJETOS — carrossel
   ========================================================================== */
.projects__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.projects__head .h2 { max-width: 12em; }
.projects__text {
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
  border-left: 1px solid var(--line-champ);
  max-width: 34em;
}
.carousel { position: relative; }
.carousel__track {
  --h: clamp(340px, 36vw, 540px);
  --gap: clamp(.9rem, 1.6vw, 1.5rem);
  position: relative;
  overflow: hidden;
  padding-block: 4px 28px;
}
.carousel__rail {
  display: flex;
  width: max-content;
}
/* rolagem automática contínua (as fotos são duplicadas pelo script) */
.carousel__track.is-auto .carousel__rail {
  animation: marquee var(--dur, 90s) linear infinite;
}
.carousel__track.is-auto:hover .carousel__rail,
.carousel__track.is-auto:focus-within .carousel__rail { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* sem animação: rolagem manual */
@media (prefers-reduced-motion: reduce) {
  .carousel__track { overflow-x: auto; }
}
.carousel__item {
  position: relative;
  flex: none;
  height: var(--h);
  margin-right: var(--gap);
  overflow: hidden;
  border-radius: 4px;
  background: var(--ph);
  box-shadow: 0 22px 44px -30px rgba(11, 48, 33, .45);
}
/* moldura interna, no estilo das demais imagens */
.carousel__item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 240, 232, .55);
  pointer-events: none;
  transition: inset .5s var(--ease), border-color .5s var(--ease);
}
.carousel__item img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  transition: transform 1.2s var(--ease);
}
.carousel__item:hover img { transform: scale(1.04); }
.carousel__item:hover::after { inset: 14px; border-color: rgba(221, 183, 126, .9); }
.projects__cta { display: flex; justify-content: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

@media (max-width: 859px) {
  .projects__head { grid-template-columns: 1fr; align-items: start; }
  .carousel__track { --h: clamp(300px, 80vw, 440px); }
}
@media (max-width: 599px) {
  .projects__text { padding-left: 1rem; }
  .projects__cta .btn { width: 100%; }
}

/* ==========================================================================
   COMO FUNCIONA — timeline
   ========================================================================== */
/* Como funciona — foto fixa no fundo (parallax) com véu off-white */
.section.steps {
  background:
    linear-gradient(rgba(245, 240, 232, .9), rgba(245, 240, 232, .9)),
    url("d-como-funciona.webp") center / cover fixed;
}
.section.steps { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
/* celulares/tablets (iOS não suporta fundo fixo) */
@media (hover: none), (max-width: 1023px) {
  .section.steps { background-attachment: scroll; }
}
/* mobile: versão vertical da foto */
@media (max-width: 859px) {
  .section.steps {
    background:
      linear-gradient(rgba(245, 240, 232, .9), rgba(245, 240, 232, .9)),
      url("m-como-funciona.webp") center / cover scroll;
  }
}

.steps__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}
.steps__head .h2 { max-width: 12em; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  --tl-gap: clamp(1.25rem, 2.2vw, 2.5rem);
  gap: var(--tl-gap);
}
.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 1px;
  background: rgba(18, 63, 43, .16);
}
.timeline::after {
  background: var(--champ);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s var(--ease) .2s;
}
.timeline.is-visible::after, html:not(.js) .timeline::after { transform: scaleX(1); }
@media (min-width: 1180px) {
  .timeline::before, .timeline::after { display: none; }
  /* fio apenas entre as etapas, desenhado depois que cada uma entra */
  .timeline__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(44px + 14px);
    width: calc(100% + var(--tl-gap) - 44px - 28px);
    height: 1px;
    background: var(--champ);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s var(--ease);
  }
  .timeline.is-visible .timeline__item::after,
  html:not(.js) .timeline__item::after { transform: scaleX(1); }
  .timeline__item:nth-child(1)::after { transition-delay: .9s; }
  .timeline__item:nth-child(2)::after { transition-delay: 1.25s; }
  .timeline__item:nth-child(3)::after { transition-delay: 1.6s; }
  .timeline__item:nth-child(4)::after { transition-delay: 1.95s; }
}
.timeline__item { position: relative; }
/* etapas entram de baixo para cima, uma a uma */
html.js .timeline__item {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
}
html.js .timeline.is-visible .timeline__item { opacity: 1; transform: none; }
html.js .timeline__item:nth-child(1) { transition-delay: .15s; }
html.js .timeline__item:nth-child(2) { transition-delay: .5s; }
html.js .timeline__item:nth-child(3) { transition-delay: .85s; }
html.js .timeline__item:nth-child(4) { transition-delay: 1.2s; }
html.js .timeline__item:nth-child(5) { transition-delay: 1.55s; }
.timeline__node {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  background: var(--paper);
  border: 1px solid rgba(18, 63, 43, .25);
  border-radius: 2px;
  transition: background-color .5s var(--ease), border-color .5s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
/* fita (laço) que aparece quando a etapa “acende” */
.timeline__node::before,
.timeline__node::after {
  content: "";
  position: absolute;
  background: var(--champ);
  transition: transform .5s var(--ease);
}
.timeline__node::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: scaleY(0); }
.timeline__node::after  { top: 50%; left: 0; right: 0; height: 1px; transform: scaleX(0); }
.timeline.is-visible .timeline__node,
html:not(.js) .timeline__node { background: var(--white); border-color: var(--green); }
.timeline.is-visible .timeline__node::before,
html:not(.js) .timeline__node::before { transform: scaleY(1); }
.timeline.is-visible .timeline__node::after,
html:not(.js) .timeline__node::after { transform: scaleX(1); }
.timeline__item:nth-child(1) .timeline__node, .timeline__item:nth-child(1) .timeline__node::before, .timeline__item:nth-child(1) .timeline__node::after { transition-delay: .2s; }
.timeline__item:nth-child(2) .timeline__node, .timeline__item:nth-child(2) .timeline__node::before, .timeline__item:nth-child(2) .timeline__node::after { transition-delay: .6s; }
.timeline__item:nth-child(3) .timeline__node, .timeline__item:nth-child(3) .timeline__node::before, .timeline__item:nth-child(3) .timeline__node::after { transition-delay: 1s; }
.timeline__item:nth-child(4) .timeline__node, .timeline__item:nth-child(4) .timeline__node::before, .timeline__item:nth-child(4) .timeline__node::after { transition-delay: 1.4s; }
.timeline__item:nth-child(5) .timeline__node, .timeline__item:nth-child(5) .timeline__node::before, .timeline__item:nth-child(5) .timeline__node::after { transition-delay: 1.8s; }
.timeline__item:hover .timeline__node {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -14px rgba(11, 48, 33, .5);
  transition-delay: 0s;
}
.timeline__num {
  display: block;
  margin: 1.6rem 0 .5rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 2rem + 1.2vw, 3.2rem);
  line-height: 1;
  color: var(--green);
  opacity: .9;
}
.timeline__item .h4 { margin-bottom: .6rem; }
.timeline__item p { font-size: 1.1rem; color: var(--text-soft); }

/* ==========================================================================
   SOBRE
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
}
.about__visual { grid-column: 1 / 7; position: relative; padding-bottom: 12%; }
.about__media { width: 70%; --ratio: 1086 / 1448; }
.media--fold .media__frame {
  clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 72px, 100% 100%, 0 100%);
}
/* dobra no canto */
.media--fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(to bottom left, transparent 50%, var(--champ-light) 50%);
  filter: drop-shadow(-4px 4px 6px rgba(11, 48, 33, .15));
  z-index: 2;
}
.dieline {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: auto;
  overflow: visible;
}
.dieline path { fill: none; stroke: var(--champ); stroke-width: 1.2; vector-effect: non-scaling-stroke; }
.dieline__cut path { stroke-dasharray: 1200; stroke-dashoffset: 0; }
.dieline__fold path { stroke-dasharray: 4 5; opacity: .7; }
html.js .dieline.will-reveal .dieline__cut path { stroke-dashoffset: 1200; transition: stroke-dashoffset 2.4s var(--ease) .2s; }
html.js .dieline.will-reveal.is-visible .dieline__cut path { stroke-dashoffset: 0; }
.dieline.will-reveal { transform: none !important; }

.about__copy { grid-column: 8 / 13; }
.about__lead {
  margin-top: 1.8rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.25rem + .8vw, 1.95rem);
  line-height: 1.4;
  color: var(--green);
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diffs__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}
.diffs__aside { grid-column: 1 / 6; align-self: stretch; }
.diffs__sticky { position: sticky; top: calc(var(--hh) + 2.5rem); }
.diffs__aside .h2 { max-width: 11em; }
.diffs__media { width: 72%; margin-top: clamp(2rem, 4vw, 3rem); --ratio: 1197 / 1314; }
.diffs__media .media__frame { border-radius: 4px; }
/* furo de etiqueta */
.diffs__media::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 16px;
  height: 16px;
  translate: -50% 0;
  border: 1px solid var(--champ);
  border-radius: 50%;
  background: var(--paper);
  z-index: 2;
}
.diffs__media::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 30px);
  left: 50%;
  width: 1px;
  height: 58px;
  background: var(--champ);
  z-index: 3;
}
.diffs__list { grid-column: 7 / 13; border-bottom: 1px solid var(--line); }
.diff {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 1.25rem;
  padding: clamp(1.7rem, 3vw, 2.4rem) 0;
  border-top: 1px solid var(--line);
}
.diff::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--champ);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}
.diff:hover::before { transform: scaleX(1); }
.diff__mark {
  width: 16px;
  height: 22px;
  margin-top: .45rem;
  fill: var(--champ);
  transition: transform .6s var(--ease);
}
.diff:hover .diff__mark { transform: rotate(90deg) scale(1.1); }
.diff .h3 { font-size: clamp(1.65rem, 1.4rem + .7vw, 2.05rem); margin-bottom: .5rem; }
.diff p { color: var(--text-soft); max-width: 32em; }
.diff--feature {
  margin-inline: calc(-1 * clamp(1.25rem, 2.5vw, 2.5rem));
  padding-inline: clamp(1.25rem, 2.5vw, 2.5rem);
  background: var(--white);
  border-top-color: transparent;
  box-shadow: 0 20px 50px -34px rgba(11, 48, 33, .45);
}
.diff--feature + .diff { border-top-color: transparent; }
.diff--feature::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green);
}
.diff--feature .h3 { font-size: clamp(1.75rem, 1.4rem + 1vw, 2.3rem); }

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.reviews__head { max-width: 40rem; margin-inline: auto; text-align: center; }
.reviews__head .h2 { margin-bottom: 1rem; }
.reviews__head p:last-child { color: var(--text-soft); }
.reviews__box {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(10px, 1.5vw, 16px);
  border: 1px solid var(--line);
}
.crop {
  position: absolute;
  inset: -14px;
  pointer-events: none;
  --c: var(--champ);
  --l: 22px;
  background:
    linear-gradient(var(--c), var(--c)) top left / var(--l) 1px,
    linear-gradient(var(--c), var(--c)) top left / 1px var(--l),
    linear-gradient(var(--c), var(--c)) top right / var(--l) 1px,
    linear-gradient(var(--c), var(--c)) top right / 1px var(--l),
    linear-gradient(var(--c), var(--c)) bottom left / var(--l) 1px,
    linear-gradient(var(--c), var(--c)) bottom left / 1px var(--l),
    linear-gradient(var(--c), var(--c)) bottom right / var(--l) 1px,
    linear-gradient(var(--c), var(--c)) bottom right / 1px var(--l);
  background-repeat: no-repeat;
  z-index: 2;
}
.reviews__embed {
  position: relative;
  min-height: 200px;
  padding: .5rem clamp(.5rem, 1.5vw, 1rem);
  background: var(--paper);
}
/* corta o rodapé do widget (selo) e o espaço abaixo dos pontinhos */
.reviews__embed { overflow: hidden; }
.reviews__embed > [class^="elfsight-app-"] { margin-bottom: -80px; }
.reviews__embed:empty {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(201, 154, 91, .12) 47px 48px),
    var(--paper);
}
.reviews__embed:empty::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: clamp(7rem, 12vw, 11rem);
  line-height: .6;
  padding-top: .35em;
  color: var(--champ-light);
  opacity: .7;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}
.faq__aside { grid-column: 1 / 5; position: sticky; top: calc(var(--hh) + 2.5rem); }
.faq__aside .h2 { margin-bottom: 2rem; }
.accordion { grid-column: 6 / 13; border-bottom: 1px solid var(--line); }
.acc { position: relative; border-top: 1px solid var(--line); }
.acc::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--champ);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.acc.is-open::before { transform: scaleX(1); }
.acc__h { font: inherit; margin: 0; }
.acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  min-height: 72px;
  padding: 1.4rem 0;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.15rem + .55vw, 1.65rem);
  line-height: 1.25;
  color: var(--green);
  cursor: pointer;
}
.acc__icon {
  position: relative;
  flex: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-champ);
  border-radius: 2px;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  margin: -.75px 0 0 -6px;
  background: var(--green);
  transition: transform .4s var(--ease), background-color .4s;
}
.acc__icon::after { transform: rotate(90deg); }
.acc__btn:hover .acc__icon { border-color: var(--champ); transform: rotate(-6deg); }
.acc__btn[aria-expanded="true"] .acc__icon { background: var(--green); border-color: var(--green); transform: none; }
.acc__btn[aria-expanded="true"] .acc__icon::before,
.acc__btn[aria-expanded="true"] .acc__icon::after { background: var(--paper); }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: rotate(0deg); }
.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .5s var(--ease), visibility 0s linear .5s;
}
.acc.is-open .acc__panel {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows .5s var(--ease), visibility 0s;
}
.acc__inner { overflow: hidden; }
.acc__inner p {
  max-width: 38em;
  padding: 0 3.5rem 1.8rem 0;
  color: var(--text);
}
.acc__inner a { color: var(--green); text-decoration: underline; text-decoration-color: var(--champ); text-underline-offset: 3px; }

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.contact__card {
  position: relative;
  padding: clamp(2.25rem, 5vw, 4.5rem);
  background: var(--green);
  color: var(--paper);
  border-radius: 4px 0 0 4px;
}
.contact__card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(221, 183, 126, .25);
  pointer-events: none;
}
.contact__card .h2 { color: var(--paper); }
.contact__lead { margin: 1.1rem 0 0; font-size: 1.2rem; color: rgba(245, 240, 232, .9); max-width: 30em; }
.contact__list { margin: 2.2rem 0 1.8rem; }
.contact__list > div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, .14);
}
.contact__list > div:first-child { border-top: 1px solid rgba(245, 240, 232, .14); }
.contact__list dt {
  display: flex;
  align-items: center;
  gap: .6em;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--champ-light);
  padding-top: .2em;
  align-self: start;
}
.contact__list dt .icon { width: 1.35em; height: 1.35em; }
.contact__list dd { margin: 0; color: var(--paper); overflow-wrap: anywhere; }
.contact__list dd a {
  background: linear-gradient(var(--champ), var(--champ)) left bottom / 100% 1px no-repeat;
  padding-bottom: 2px;
  transition: color .3s;
}
.contact__list dd a:hover { color: var(--champ-light); }
/* a linha inteira (rótulo + valor) é clicável */
.contact__list > div { position: relative; }
.contact__list dd a::after { content: ""; position: absolute; inset: 0; }
.contact__list > div:has(a):hover dt { color: var(--paper); }
.contact__list > div:has(a):hover dd a { color: var(--champ-light); }
.contact__note { font-size: 1.08rem; color: rgba(245, 240, 232, .8); margin: 0 auto 2rem; max-width: 30em; text-align: center; }
.contact__card > .btn { display: flex; width: fit-content; margin-inline: auto; }

.contact__map { position: relative; }
@media (min-width: 860px) {
  /* mapa mais baixo que o cartão verde, centralizado na altura */
  .contact__map { align-self: center; }
  .contact__map .map-frame { height: clamp(360px, 32vw, 460px); min-height: 0; }
}
.map-frame {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--champ);
  border-radius: 0 4px 4px 0;
}
.map-frame iframe {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 0;
  filter: grayscale(.35) sepia(.12) contrast(.96);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--green-deep);
  color: rgba(245, 240, 232, .82);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  font-size: 1.1rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champ) 20%, var(--champ) 80%, transparent);
  opacity: .6;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .8fr) minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.footer__about {
  margin: 1.6rem 0 0;
  max-width: 24em;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, .72);
}
.footer__title {
  display: flex;
  align-items: center;
  gap: .7em;
  margin: .35rem 0 1.3rem;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champ-light);
}
.footer__title::after { content: ""; width: 26px; height: 1px; background: var(--champ); opacity: .6; }
.footer__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(245, 240, 232, .88);
  transition: color .3s, transform .3s var(--ease);
}
.footer__links a:hover { color: var(--champ-light); }
.footer__services li {
  position: relative;
  padding: .5rem 0;
  color: rgba(245, 240, 232, .88);
  line-height: 1.45;
}
.footer__contact li { overflow-wrap: anywhere; }
.footer__contact a, .footer__gmn {
  display: inline-flex;
  align-items: flex-start;
  gap: .75em;
  padding: .5rem 0;
  min-height: 40px;
  line-height: 1.5;
  color: rgba(245, 240, 232, .88);
  transition: color .3s;
}
.footer__contact a:hover { color: var(--champ-light); }
.footer__label { color: var(--paper); font-weight: 500; margin-right: -.35em; }
.footer__contact a.footer__address { display: block; }
.footer__address .footer__label { margin-right: 0; }
.footer__contact .icon { flex: none; width: 1.15em; height: 1.15em; margin-top: .2em; color: var(--champ-light); fill: currentColor; }
.footer__gmn { color: var(--paper); font-weight: 500; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer__social a {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(221, 183, 126, .45);
  border-radius: 50%;
  color: var(--champ-light);
  transition: background-color .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.footer__social .icon { width: 25px; height: 25px; }
.footer__social a:hover { background: var(--champ-light); border-color: var(--champ-light); color: var(--green-deep); transform: translateY(-2px); }
.footer__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 16px 26px 16px 50px;
  background: var(--paper);
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 22px 100%, 0 50%);
  --logo-w: 128px;
  transition: transform .5s var(--ease);
}
.footer__tag:hover { transform: rotate(-2deg); }
.footer__hole {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  translate: 0 -50%;
  border-radius: 50%;
  border: 1px solid var(--champ);
  background: var(--green-deep);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(221, 183, 126, .18);
  font-size: 1rem;
  color: rgba(245, 240, 232, .65);
}
.footer__bottom p { margin: 0; }
.footer__credit a {
  color: var(--champ-light);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(221, 183, 126, .4);
  text-underline-offset: 3px;
  transition: color .3s, text-decoration-color .3s;
}
.footer__credit a:hover { color: var(--champ); text-decoration-color: currentColor; }

/* ==========================================================================
   WHATSAPP FLUTUANTE — etiqueta
   ========================================================================== */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.4vw, 32px);
  bottom: calc(clamp(16px, 2.4vw, 32px) + env(safe-area-inset-bottom));
  z-index: 40;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(11, 48, 33, .32));
  transform-origin: 100% 50%;
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s;
}
html.js .wa-float:not(.is-shown) {
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s linear .4s;
}
.wa-float__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  height: 58px;
  padding: 0 1.4rem 0 2.35rem;
  background: var(--green);
  color: var(--paper);
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
  border-radius: 0 4px 4px 0;
  transition: background-color .3s var(--ease);
}
.wa-float__tag::after {
  content: "";
  position: absolute;
  inset: 4px 4px 4px 12px;
  border: 1px solid rgba(221, 183, 126, .35);
  border-left: 0;
  pointer-events: none;
}
.wa-float__hole {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  translate: 0 -50%;
  border-radius: 50%;
  border: 1.5px solid var(--champ-light);
  background: var(--paper);
}
.wa-float .icon { width: 25px; height: 25px; }
.wa-float__label { font-size: .92rem; font-weight: 500; letter-spacing: .05em; }
.wa-float:hover .wa-float__tag { background: var(--green-deep); }
.wa-float:hover { transform: rotate(-3deg); }

/* ==========================================================================
   REVEAL
   ========================================================================== */
html.js .will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js .will-reveal.is-visible { opacity: 1; transform: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes unveil {
  from { clip-path: inset(12% 0 0 0); opacity: 0; }
  to   { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes lid {
  from { opacity: 0; transform: translateY(20px); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: translateY(-3px) rotate(-.8deg); }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes swing {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(2.5deg); }
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

/* ≥ 1600px — telas amplas */
@media (min-width: 1600px) {
  :root { --maxw: 1400px; }
  .hero__green { width: 33%; }
}

/* ≤ 1179px — timeline vertical */
@media (max-width: 1179px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 760px;
  }
  /* como no desktop: fio champagne só entre as etapas, desenhado após cada uma entrar */
  .timeline::before, .timeline::after { display: none; }
  .timeline__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: calc(44px + 12px);
    bottom: 12px;
    width: 1px;
    background: var(--champ);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s var(--ease);
  }
  .timeline.is-visible .timeline__item::after,
  html:not(.js) .timeline__item::after { transform: scaleY(1); }
  .timeline__item:nth-child(1)::after { transition-delay: .9s; }
  .timeline__item:nth-child(2)::after { transition-delay: 1.25s; }
  .timeline__item:nth-child(3)::after { transition-delay: 1.6s; }
  .timeline__item:nth-child(4)::after { transition-delay: 1.95s; }
  .timeline__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: clamp(1.25rem, 3vw, 2.25rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
  }
  .timeline__item:last-child { padding-bottom: 0; }
  .timeline__node { grid-row: 1 / span 3; }
  .timeline__num { grid-column: 2; margin: 0 0 .35rem; font-size: 2.2rem; }
  .timeline__item .h4, .timeline__item p { grid-column: 2; }
  .timeline__item:hover .timeline__node { transform: translateX(3px); }
}

/* ≤ 1099px — header compacto */
@media (max-width: 1199px) {
  .nav, .header-cta { display: none; }
  .burger { display: inline-flex; margin-left: auto; }
  .burger { display: block; }
}
@media (min-width: 1200px) {
  .mnav { display: none; }
  /* “Brindes personalizados” sempre na mesma linha */
  .hero__title { font-size: clamp(3.4rem, 5.1vw, 5rem); }
  .hero__line { white-space: nowrap; }
}

/* ≤ 1023px — tablet */
@media (max-width: 1023px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
  .hero__green { width: 36%; }
  .cat--a .cat__media { grid-column: 1 / 8; }
  .cat--a .cat__body { grid-column: 8 / 13; }
  .cat--b .cat__body { grid-column: 1 / 6; }
  .cat--c .cat__body { grid-column: 7 / 13; padding-right: 1.5rem; }
  .cat--c .cat__panel { grid-column: 4 / 13; }
  .cat--d .cat__body { grid-column: 1 / 6; }
  .about__copy { grid-column: 7 / 13; }
  .diffs__aside { grid-column: 1 / 6; }
  .diffs__media { width: 78%; }
  .faq__aside { grid-column: 1 / 13; position: static; margin-bottom: 2.5rem; }
  .faq__aside .h2 { max-width: 14em; }
  .accordion { grid-column: 1 / 13; }
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 3rem; }
  .footer__brand { grid-column: 1 / -1; display: flex; align-items: center; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(221, 183, 126, .15); }
  .footer__brand .footer__about { margin: 0; }
}

/* ≤ 859px — mobile grande / tablet retrato: reorganização completa */
@media (max-width: 859px) {
  :root { --hh: 72px; --logo-w: 70px; }
  .site-header.is-scrolled { --hh: 64px; --logo-w: 62px; }

  /* Hero: texto primeiro, composição de imagens embaixo */
  .hero { padding-top: 1.25rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  /* mobile: imagem entre o texto e o botão/horário */
  .hero__copy { display: contents; }
  .hero__visual { order: 1; margin-top: 0; }
  .hero__actions { order: 2; margin-top: 1.5rem; }
  /* bloco verde só atrás das imagens (não atrás do botão) */
  .hero__green { display: none; }
  .hero__visual { isolation: isolate; }
  .hero__visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 38%;
    bottom: 0;
    right: calc(-1 * var(--gutter));
    width: 78%;
    background: var(--green);
  }
  .hero__copy { max-width: 36rem; padding-top: 0; }
  .hero__green {
    top: auto;
    bottom: 0;
    height: 42%;
    width: 72%;
  }
  .hero__visual { width: min(100%, 520px); margin-left: auto; padding: 2rem 0 2.5rem; }
  .media--hero { width: 82%; }
  .media--hero-detail { left: 0; }
  .hero__lid { top: calc(2rem - 18px); width: calc(82% + 16px); right: -8px; }
  .hang-tag { top: 2rem; right: 40%; }

  /* Brindes */
  .split-head { grid-template-columns: 1fr; align-items: start; }
  .cats__list { gap: clamp(4rem, 12vw, 6rem); }
  .cat { grid-template-columns: 1fr; row-gap: 1.75rem; }
  .cat .cat__media,
  .cat .cat__body,
  .cat .cat__stack { grid-column: 1 !important; grid-row: auto !important; }
  /* mobile: título → imagem → texto → link, nos quatro cards */
  .cat { row-gap: 0; }
  .cat .cat__body { display: contents; }
  .cat > .cat__media, .cat > .cat__stack { order: 1; margin-block: 1.25rem 1.5rem; }
  .cat .cat__body p, .cat .closures { order: 2; }
  .cat .cat__body p { margin: 0 0 1.3rem; }
  .cat .cat__body .link-arrow { order: 3; justify-self: start; }
  .cat--c { isolation: isolate; }
  .cat--c .cat__panel { z-index: -1; }
  .cat__body { max-width: 36rem; }
  .cat--a .cat__media { margin-right: calc(-1 * var(--gutter)); }
  .cat--a .cat__media .media__frame { border-radius: 72px 0 0 2px; }
  .cat--b .cat__media { width: 78%; }
  .cat--c { padding-block: 0 2.5rem; }
  .cat--c .cat__panel {
    position: absolute;
    inset: 22% calc(-1 * var(--gutter)) 0;
    margin: 0;
  }
  .cat--c .cat__media { width: 88%; }
  .cat--c .cat__body { padding: 0 .25rem; }
  .cat--d .cat__media { margin-left: calc(-1 * var(--gutter) / 2); }

  /* Produção */
  .producao__depth { width: 100%; top: auto; height: 34%; }
  .producao__depth::before { width: 100%; height: 1px; bottom: auto; background: linear-gradient(90deg, transparent, rgba(221, 183, 126, .5), transparent); }
  .producao__grid { grid-template-columns: 1fr; row-gap: 3.5rem; }
  .producao__text, .producao__visual { grid-column: 1; }
  .producao__visual { width: min(100%, 520px); margin-left: auto; padding-bottom: 14%; }

  /* Como funciona */
  .steps__head { grid-template-columns: 1fr; gap: 2.25rem; }

  /* Sobre */
  .about__grid { grid-template-columns: 1fr; row-gap: 3rem; }
  .about__visual, .about__copy { grid-column: 1; }
  .about__visual { width: min(100%, 520px); padding-bottom: 16%; order: 1; }
  .about__media { width: 80%; }
  .dieline { width: 38%; }

  /* Diferenciais */
  .diffs__grid { grid-template-columns: 1fr; }
  .diffs__aside, .diffs__list { grid-column: 1; }
  .diffs__sticky { position: static; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .7fr); gap: 0 1.5rem; align-items: end; margin-bottom: 2.5rem; }
  .diffs__sticky .eyebrow, .diffs__sticky .h2 { grid-column: 1; }
  .diffs__media { grid-column: 2; grid-row: 1 / span 2; width: 100%; margin-top: 2rem; }
  .diff--feature { margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }

  /* Contato */
  /* FAQ: botão depois das perguntas */
  .faq__grid { grid-template-columns: 1fr; }
  .faq__aside { display: contents; }
  .faq__aside .eyebrow { justify-self: start; }
  .accordion { grid-column: 1; order: 1; }
  .faq__aside .btn { order: 2; margin-top: 2rem; justify-self: start; }
  .faq__aside .btn--outline { background: var(--green); border-color: var(--green); color: var(--paper); }
  .faq__aside .btn--outline::after { opacity: .85; transform: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { border-radius: 4px; }
  /* mapa oculto no mobile (o endereço já abre o Google Maps) */
  .contact__map { display: none; }
  .map-frame { min-height: 0; height: auto; aspect-ratio: 4 / 3; border-radius: 0 0 4px 4px; }
}

/* ≤ 599px — celulares */
@media (max-width: 599px) {
  body { font-size: 1.08rem; }
  .section { padding-block: clamp(4rem, 16vw, 5rem); }
  .eyebrow { font-size: .74rem; letter-spacing: .2em; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hours { justify-content: center; }
  .hero__visual { width: 100%; }
  .media--hero { width: 86%; }
  .hero__lid { width: calc(86% + 12px); right: -6px; height: 10px; top: calc(2rem - 16px); }
  .media--hero-detail { width: 44%; padding: 4px; }
  .hang-tag { right: 44%; }
  .hang-tag__string { height: 30px; }
  .hang-tag__body { font-size: .64rem; letter-spacing: .16em; padding-inline: .9em; }

  .split-head__text { padding-left: 1rem; }
  .cat--b .cat__stack { padding-bottom: 16%; }
  .cat--b .cat__media { width: 80%; }
  .cat__media-small { width: 46%; padding: 7px; }
  .media--label .media__frame { clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px); }
  .media--label::after { top: 18px; right: 18px; width: 11px; height: 11px; }

  .statement { font-size: clamp(2.5rem, 1.6rem + 3.5vw, 2.8rem); }
  .statement__b { padding-left: 0; flex-wrap: wrap; }
  .producao__small { width: 44%; padding: 7px; left: 0; }
  .producao__main { width: 78%; }
  .producao__main::before { inset: 14px -12px -12px 14px; }

  .media--fold .media__frame { clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%); }
  .media--fold::after { width: 48px; height: 48px; }

  .diffs__sticky { display: block; }
  .diffs__media { width: 62%; margin: 2.5rem auto 0; }
  .diff { grid-template-columns: 20px minmax(0, 1fr); gap: 1rem; }
  .diff__mark { width: 13px; height: 18px; }

  .acc__btn { min-height: 64px; gap: 1rem; padding: 1.2rem 0; }
  .acc__icon { width: 34px; height: 34px; }
  .acc__inner p { padding-right: 0; }
  .faq__aside .btn { width: 100%; }

  .contact__grid { width: calc(100% - 16px); }
  .contact__card { padding: 2.5rem 1.6rem; }
  .contact__card::before { inset: 8px; }
  .contact__list > div { grid-template-columns: 1fr; gap: .35rem; }
  .contact__card .btn { width: 100%; }
  .map-frame { aspect-ratio: 4 / 3; }
  .contact__note { font-size: 1.14rem; }
  .crop { inset: -8px; --l: 16px; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer { font-size: 1.2rem; }
  .footer__about { font-size: 1.14rem; }
  .footer__title { font-size: .9rem; }
  .footer__bottom { font-size: 1.06rem; }
  .footer__brand { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .footer__grid > .footer__col:last-child { grid-column: 1 / -1; }

  .site-footer { padding-bottom: calc(6rem + env(safe-area-inset-bottom)); }


  .wa-float__tag { height: 54px; padding: 0 1.05rem 0 2.1rem; }
  .wa-float__label { display: none; }
  .wa-float .icon { width: 26px; height: 26px; }
}

/* ≤ 359px — telas muito estreitas */
@media (max-width: 359px) {
  :root { --gutter: 16px; }
  .hero__title { font-size: 2.35rem; }
  .h2 { font-size: 1.9rem; }
  .btn { padding: 0 1.2em; }
  .btn--lg { padding: 0 1.3em; }
  .hang-tag { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  html.js .will-reveal { opacity: 1; transform: none; }
  .ribbon-line path { stroke-dashoffset: 0; }
}
