/* ============================================================
   Grupo AD Lucram | Home
   Mundo visual: dourado bronze da marca + verde-petroleo profundo.
   Base estrutural derivada do template Ensaf (referencia do cliente).
   ============================================================ */

@property --shiny-angle        { syntax: "<angle>";      initial-value: 0deg;    inherits: false; }
@property --shiny-angle-offset { syntax: "<angle>";      initial-value: 0deg;    inherits: false; }
@property --shiny-percent      { syntax: "<percentage>"; initial-value: 5%;      inherits: false; }
@property --shiny-shine        { syntax: "<color>";      initial-value: #ffffff; inherits: false; }

/* ------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------ */
:root {
  /* Marca */
  --gold:          #B68C5A;
  --gold-bright:   #D6AC74;
  /* Dourado claro para texto pequeno sobre o verde-petróleo (4.97:1) */
  --gold-on-petrol: #E0BB8B;
  /* Bronze escuro calibrado para 4.5:1 sobre creme, paper e branco */
  --gold-deep:     #87643B;
  --petrol:        #314E52;
  --petrol-deep:   #223A3D;
  --ink:           #011C1A;
  --ink-deep:      #000F0E;

  /* Superficies */
  --cream:         #FFF6EE;
  --paper:         #F6F1EA;
  --white:         #FFFFFF;

  /* Texto */
  --text:          #5C5C5C;
  --text-on-dark:  #B9C6C4;
  --text-on-gold:  #011C1A;

  --line:          #E3DAD0;
  --line-dark:     rgba(214, 172, 116, 0.22);

  /* Tipografia */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body:    "Poppins", "Segoe UI", system-ui, sans-serif;

  /* Ritmo */
  --container:     1320px;
  --gutter:        30px;
  --section:       120px;
  --radius:        24px;
  --radius-sm:     14px;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:     cubic-bezier(0.25, 1, 0.5, 1);

  --shadow-sm:     0 2px 8px rgba(1, 28, 26, 0.06);
  --shadow-md:     0 14px 34px -18px rgba(1, 28, 26, 0.35);
  --shadow-lg:     0 32px 70px -34px rgba(1, 28, 26, 0.55);
}

@media (max-width: 991px) {
  :root { --section: 80px; }
}

/* ------------------------------------------------------------
   2. Reset e base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   3. Titulos de secao
   ------------------------------------------------------------ */
.sec-head { max-width: 760px; margin-bottom: 60px; }
.sec-head--center { margin-inline: auto; text-align: center; }

.sec-title {
  font-size: clamp(2.1rem, 1.35rem + 2.4vw, 3.25rem);
  margin: 0 0 18px;
}
.sec-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.sec-lead {
  font-size: 1.0625rem;
  max-width: 62ch;
  margin: 0;
}
.sec-head--center .sec-lead { margin-inline: auto; }

/* Regra dourada curta acima do titulo, no lugar de eyebrow textual */
.rule {
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(182, 140, 90, 0));
  margin-bottom: 26px;
  border: 0;
}
.sec-head--center .rule {
  margin-inline: auto;
  background: linear-gradient(90deg, rgba(182, 140, 90, 0), var(--gold), rgba(182, 140, 90, 0));
}

/* Variante escura */
.on-dark { color: var(--text-on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark .sec-title em { color: var(--gold-bright); }

/* ------------------------------------------------------------
   4. Botoes
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color .4s var(--ease-soft), color .4s var(--ease-soft),
              border-color .4s var(--ease-soft), transform .4s var(--ease-soft),
              box-shadow .4s var(--ease-soft);
}
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px -16px rgba(182, 140, 90, .9);
}
.btn--gold:hover { background: var(--gold-bright); box-shadow: 0 18px 38px -16px rgba(182, 140, 90, .95); }

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

.on-dark .btn--ghost,
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(214, 172, 116, .45);
}
.on-dark .btn--ghost:hover,
.btn--ghost-light:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

/* Link com seta */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--gold-deep);
  transition: gap .4s var(--ease-soft), color .4s var(--ease-soft);
}
.arrow-link svg { transition: transform .4s var(--ease-soft); }
.arrow-link:hover { gap: 16px; color: var(--ink); }

/* ------------------------------------------------------------
   5. Botao WhatsApp brilhante (padrao WebFormas, contraste AA)
   ------------------------------------------------------------ */
.btn-shiny-wa {
  --wa-bg-from: #075E54;
  --wa-bg-to: #0E7A6B;
  --wa-bg-subtle: #04443D;
  --wa-fg: #ffffff;
  --wa-highlight: #4ade80;
  --wa-highlight-subtle: #bbf7d0;
  --shiny-duration: 3s;
  --shiny-shadow-size: 2px;
  --shiny-transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--wa-fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  background:
    linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.7) 50%, transparent 75%, transparent 100%) padding-box,
    linear-gradient(135deg, var(--wa-bg-from), var(--wa-bg-to)) padding-box,
    conic-gradient(
      from calc(var(--shiny-angle) - var(--shiny-angle-offset)),
      transparent,
      var(--wa-highlight) var(--shiny-percent),
      var(--shiny-shine) calc(var(--shiny-percent) * 2),
      var(--wa-highlight) calc(var(--shiny-percent) * 3),
      transparent calc(var(--shiny-percent) * 4)
    ) border-box;
  background-size: 250% 250%, 100% 100%, 100% 100%;
  background-position: 200% 0, 0 0, 0 0;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px var(--wa-bg-subtle), 0 8px 22px rgba(7, 94, 84, 0.35);
  transition:
    --shiny-angle-offset var(--shiny-transition),
    --shiny-percent var(--shiny-transition),
    --shiny-shine var(--shiny-transition),
    box-shadow var(--shiny-transition),
    transform var(--shiny-transition),
    background-position 1000ms ease;
}

.btn-shiny-wa::before,
.btn-shiny-wa::after,
.btn-shiny-wa > span::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.btn-shiny-wa:active { translate: 0 1px; }

.btn-shiny-wa::before {
  --size: calc(100% - var(--shiny-shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle at var(--position) var(--position),
    #ffffff calc(var(--position) / 4),
    transparent 0
  ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  -webkit-mask-image: conic-gradient(from calc(var(--shiny-angle) + 45deg), black, transparent 10% 90%, black);
          mask-image: conic-gradient(from calc(var(--shiny-angle) + 45deg), black, transparent 10% 90%, black);
  border-radius: inherit;
  opacity: 0.35;
  z-index: -1;
}

.btn-shiny-wa::after {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--wa-highlight), transparent);
  -webkit-mask-image: radial-gradient(circle at bottom, transparent 40%, black);
          mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.4;
}

.btn-shiny-wa > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 3px 0;
}
.btn-shiny-wa > span svg { flex-shrink: 0; }

.btn-shiny-wa > span::before {
  width: 300%;
  height: 300%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 90%,
    var(--wa-highlight) 0%,
    rgba(74, 222, 128, 0.35) 30%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--shiny-transition);
  animation: calc(var(--shiny-duration) * 1.5) shiny-breathe linear infinite;
}

.btn-shiny-wa,
.btn-shiny-wa::before,
.btn-shiny-wa::after {
  animation: shiny-angle linear infinite var(--shiny-duration),
             shiny-angle calc(var(--shiny-duration) / 0.4) linear infinite reverse paused;
  animation-composition: add;
}

.btn-shiny-wa:is(:hover, :focus-visible) {
  --shiny-percent: 20%;
  --shiny-angle-offset: 95deg;
  --shiny-shine: var(--wa-highlight-subtle);
  background-position: -100% 0, 0 0, 0 0;
  box-shadow: inset 0 0 0 1px var(--wa-bg-subtle), 0 12px 28px rgba(14, 122, 107, 0.45);
}
.btn-shiny-wa:is(:hover, :focus-visible),
.btn-shiny-wa:is(:hover, :focus-visible)::before,
.btn-shiny-wa:is(:hover, :focus-visible)::after { animation-play-state: running; }
.btn-shiny-wa:is(:hover, :focus-visible) > span::before { opacity: 1; }

@keyframes shiny-angle   { to { --shiny-angle: 360deg; } }
@keyframes shiny-breathe { from, to { scale: 1; } 50% { scale: 1.2; } }

.btn-shiny-wa--sm { padding: 11px 22px; }
.btn-shiny-wa--sm > span { font-size: 0.875rem; }
.btn-shiny-wa--lg { padding: 19px 40px; }
.btn-shiny-wa--lg > span { font-size: 1rem; }

/* ------------------------------------------------------------
   6. Topbar
   ------------------------------------------------------------ */
.topbar {
  background: var(--ink-deep);
  color: var(--text-on-dark);
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
  flex-wrap: wrap;
}
.topbar__list {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color .3s var(--ease-soft);
}
.topbar__item svg { color: var(--gold); flex-shrink: 0; }
a.topbar__item:hover { color: var(--gold-bright); }
.topbar__hours { color: rgba(185, 198, 196, .72); }

@media (max-width: 991px) {
  .topbar { display: none; }
}

/* ------------------------------------------------------------
   7. Header
   ------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .4s var(--ease-soft), background-color .4s var(--ease-soft);
}
.header.is-stuck { box-shadow: 0 12px 34px -22px rgba(0, 0, 0, .9); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
}
.header__logo img { width: 218px; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  position: relative;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  padding-block: 6px;
  transition: color .35s var(--ease-soft);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease-out);
}
.nav__link:hover { color: var(--gold-bright); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--gold-bright); }

.header__actions { display: flex; align-items: center; gap: 14px; }

/* O CTA dentro do nav existe só para o menu mobile */
.nav__cta { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .3s var(--ease-soft), background-color .3s var(--ease-soft);
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(182, 140, 90, .1); }
.nav-toggle__bar {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  position: relative;
  transition: background-color .3s var(--ease-soft);
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: currentColor;
  transition: transform .4s var(--ease-out), top .3s var(--ease-out);
}
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1199px) {
  .nav__list { gap: 24px; }
  .header__logo img { width: 190px; }
}

@media (max-width: 991px) {
  .nav-toggle { display: inline-flex; }
  .header__inner { min-height: 72px; }
  .header__actions .btn-shiny-wa { display: none; }

  .nav {
    position: fixed;
    inset: 72px 0 auto;
    background: var(--ink-deep);
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .5s var(--ease-out);
  }
  .nav.is-open {
    grid-template-rows: 1fr;
    border-bottom: 1px solid var(--line-dark);
  }
  /* O <ul> é o item da grid: sem padding próprio ele consegue colapsar até 0 */
  .nav > ul { min-height: 0; overflow: hidden; }
  .nav.is-open > ul { max-height: calc(100dvh - 72px); overflow-y: auto; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }
  .nav__list li { border-bottom: 1px solid var(--line-dark); }
  .nav__link { display: block; padding: 16px var(--gutter); font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__cta {
    display: list-item;
    padding: 24px var(--gutter) 30px;
    border-bottom: 0 !important;
  }
  .nav__cta .btn-shiny-wa { width: 100%; }
}

/* ------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(49, 78, 82, .85) 0%, rgba(1, 28, 26, 0) 62%),
    radial-gradient(90% 70% at 8% 92%, rgba(182, 140, 90, .16) 0%, rgba(1, 28, 26, 0) 60%),
    var(--ink);
}
/* Trama diagonal fina que ecoa as barras do logotipo */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    118deg,
    rgba(214, 172, 116, .07) 0 1px,
    transparent 1px 74px
  );
  -webkit-mask-image: linear-gradient(200deg, #000 0%, transparent 62%);
          mask-image: linear-gradient(200deg, #000 0%, transparent 62%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 70px;
  padding-block: clamp(70px, 8vw, 128px) clamp(120px, 10vw, 168px);
}

.hero__slides { position: relative; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease-out), visibility .9s;
}
.hero__slide.is-active { position: relative; opacity: 1; visibility: visible; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.hero__kicker::before {
  content: "";
  width: 42px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(2.4rem, 1.1rem + 4.2vw, 4.6rem);
  color: var(--white);
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--gold-bright); }

.hero__text {
  font-size: 1.0625rem;
  color: var(--text-on-dark);
  max-width: 58ch;
  margin: 0 0 34px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Controles do slider */
.hero__dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
}
.hero__dot {
  width: 56px; height: 4px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(214, 172, 116, .28);
  cursor: pointer;
  transform: scaleX(.6);
  transform-origin: left center;
  transition: background-color .4s var(--ease-soft), transform .4s var(--ease-out);
}
.hero__dot[aria-selected="true"] { background: var(--gold-bright); transform: scaleX(1); }

/* Retrato: o wrapper não recorta, para o selo poder escapar da moldura */
.hero__media { position: relative; }

.hero__figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 470 / 550;
  object-fit: cover;
}
.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(214, 172, 116, .3);
  background: linear-gradient(190deg, rgba(1, 28, 26, 0) 55%, rgba(1, 28, 26, .55) 100%);
  pointer-events: none;
}

/* Selo sobreposto no retrato: prova real, nao ornamento */
.hero__badge {
  position: absolute;
  left: -34px;
  bottom: 44px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  box-shadow: var(--shadow-md);
  max-width: 268px;
}
.hero__badge svg { color: var(--gold-deep); flex-shrink: 0; }
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--ink);
  line-height: 1.1;
}
.hero__badge span {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #63615E;
}

@media (max-width: 1199px) {
  .hero__inner { grid-template-columns: 1fr 400px; gap: 48px; }
  .hero__badge { left: -20px; max-width: 240px; }
}
@media (max-width: 991px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 60px 120px;
  }
  .hero__media { max-width: 460px; }
  .hero__badge { left: auto; right: -14px; bottom: 24px; }
}
@media (max-width: 575px) {
  .hero__badge {
    position: static;
    margin-top: 18px;
    max-width: none;
  }
  .hero__figure { box-shadow: var(--shadow-md); }
}

/* ------------------------------------------------------------
   9. Faixa do contador
   ------------------------------------------------------------ */
.counter-band {
  position: relative;
  z-index: 5;
  margin-top: clamp(-108px, -8vw, -76px);
}
.counter-band__card {
  background: linear-gradient(120deg, #AF906B 0%, #E5B57C 46%, #AD7934 100%);
  border-radius: var(--radius);
  padding: clamp(38px, 5vw, 64px) clamp(28px, 5vw, 80px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.counter-band__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient( 118deg, rgba(1, 28, 26, 0.03) 0 1px, transparent 1px 46px );
  pointer-events: none;
}
.counter-band__label {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, .9rem + .5vw, 1.375rem);
  font-style: italic;
  color: rgba(1, 28, 26, .78);
  margin: 0 0 6px;
}
.counter-band__value {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.1rem + 3.6vw, 4.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-on-gold);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.counter-band__note {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(1, 28, 26, .74);
  max-width: 25ch;
  border-left: 1px solid rgba(1, 28, 26, .22);
  padding-left: 26px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .counter-band__card { grid-template-columns: 1fr; gap: 26px; }
  .counter-band__note {
    border-left: 0;
    border-top: 1px solid rgba(1, 28, 26, .22);
    padding-left: 0;
    padding-top: 20px;
    max-width: none;
  }
}

/* ------------------------------------------------------------
   10. Sobre
   ------------------------------------------------------------ */
.about { background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 76px;
  align-items: center;
}

.about__media { position: relative; }
.about__media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 470 / 550;
  object-fit: cover;
}
/* Moldura dourada deslocada: fica atrás da foto mas acima do fundo da seção */
.about__media::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.about__highlight {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 52px;
  background: var(--petrol);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  max-width: 214px;
}
.about__highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold-on-petrol);
  margin-bottom: 6px;
}
.about__highlight span {
  font-size: .8125rem;
  line-height: 1.45;
  color: #D9E2E0;
}

.about__body p strong { color: var(--ink); font-weight: 600; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 38px 0 36px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.facts__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.facts__label {
  font-size: .8125rem;
  line-height: 1.45;
  color: #63615E;
}

@media (max-width: 1199px) {
  .about__inner { grid-template-columns: 400px 1fr; gap: 54px; }
  .about__highlight { right: -14px; max-width: 190px; }
}
@media (max-width: 991px) {
  .about__inner { grid-template-columns: 1fr; gap: 66px; }
  .about__media { max-width: 460px; }
  .about__media::before { inset: 22px -22px -22px 22px; }
}
@media (max-width: 575px) {
  .about__media::before { display: none; }
  .about__highlight { position: static; margin-top: 16px; max-width: none; }
  .facts { grid-template-columns: 1fr; gap: 20px; }
}

/* ------------------------------------------------------------
   11. Servicos
   ------------------------------------------------------------ */
.services { background: var(--cream); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* Card destaque: ocupa 2 colunas e traz foto, quebra a grade uniforme */
.svc {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border-bottom: 6px solid var(--gold);
  padding: 42px 40px 34px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--petrol);
  border-radius: var(--radius) var(--radius) 18px 18px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s var(--ease-out);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc:hover::before { transform: scaleX(1); }

.svc__icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-deep);
  margin-bottom: 26px;
  transition: background-color .5s var(--ease-out), color .5s var(--ease-out);
}
.svc:hover .svc__icon { background: rgba(255, 246, 238, .12); color: var(--gold-bright); }

.svc__title {
  font-size: 1.375rem;
  margin: 0 0 12px;
  transition: color .5s var(--ease-out);
}
.svc__text {
  font-size: .9375rem;
  line-height: 1.7;
  margin: 0 0 22px;
  transition: color .5s var(--ease-out);
}
.svc__foot { margin-top: auto; }
.svc:hover .svc__title { color: var(--white); }
.svc:hover .svc__text  { color: #CFDBD9; }
.svc:hover .arrow-link { color: var(--gold-on-petrol); }

/* Destaque */
.svc--feature {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  padding: 0;
  border-bottom-width: 6px;
  background: var(--petrol);
  color: #CFDBD9;
}
.svc--feature::before { display: none; }
.svc--feature:hover { transform: translateY(-4px); }
.svc--feature .svc__media {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}
.svc--feature .svc__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.svc--feature:hover .svc__media img { transform: scale(1.06); }
.svc--feature .svc__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(49, 78, 82, 0) 40%, rgba(49, 78, 82, .95) 100%);
}
.svc--feature .svc__content {
  padding: 44px 44px 40px 4px;
  display: flex;
  flex-direction: column;
}
.svc--feature .svc__icon { background: rgba(255, 246, 238, .1); color: var(--gold-bright); }
.svc--feature .svc__title { color: var(--white); font-size: 1.625rem; }
.svc--feature .svc__text { color: #CFDBD9; }
.svc--feature .arrow-link { color: var(--gold-on-petrol); }
.svc--feature .arrow-link:hover { color: var(--white); }

.svc__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-bright);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc--feature { grid-column: span 2; }
}
@media (max-width: 767px) {
  .services__grid { grid-template-columns: 1fr; }
  .svc--feature { grid-column: span 1; flex-direction: column; }
  .svc--feature .svc__media { flex: 0 0 240px; height: 240px; }
  .svc--feature .svc__media::after {
    background: linear-gradient(180deg, rgba(49, 78, 82, 0) 40%, rgba(49, 78, 82, .95) 100%);
  }
  .svc--feature .svc__content { padding: 8px 30px 34px; }
  .svc { padding: 34px 30px 30px; }
}

/* ------------------------------------------------------------
   12. Diferenciais
   ------------------------------------------------------------ */
.edge {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.edge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    118deg,
    rgba(214, 172, 116, .06) 0 1px,
    transparent 1px 88px
  );
  -webkit-mask-image: linear-gradient(160deg, #000 0%, transparent 70%);
          mask-image: linear-gradient(160deg, #000 0%, transparent 70%);
}
.edge__inner { position: relative; }

.edge__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.edge__item {
  padding: 8px 42px;
  border-left: 1px solid var(--line-dark);
}
.edge__item:first-child { padding-left: 0; border-left: 0; }
.edge__item:last-child { padding-right: 0; }

.edge__icon {
  color: var(--gold-bright);
  margin-bottom: 22px;
  display: block;
}
.edge__title {
  font-size: 1.375rem;
  color: var(--white);
  margin: 0 0 10px;
}
.edge__text {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text-on-dark);
  margin: 0;
}

@media (max-width: 991px) {
  .edge__list { grid-template-columns: 1fr; }
  .edge__item {
    padding: 30px 0;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }
  .edge__item:first-child { padding-top: 0; border-top: 0; }
  .edge__item:last-child { padding-bottom: 0; }
}

/* ------------------------------------------------------------
   13. Certificados
   ------------------------------------------------------------ */
.awards { background: var(--white); }
.awards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.award {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 44px 38px 40px;
  text-align: center;
  border-bottom: 6px solid transparent;
  transition: border-color .5s var(--ease-out), transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.award:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.award__seal {
  height: 152px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}
.award__seal img { max-height: 152px; max-width: 200px; width: auto; }
.award__year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .875rem;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.award__title { font-size: 1.25rem; margin: 0 0 12px; }
.award__text {
  font-size: .9375rem;
  line-height: 1.7;
  margin: 0;
}

/* Destaque Gowhere Business: ocupa a linha inteira, so a arte */
.award--featured {
  grid-column: 1 / -1;
  padding: 34px 38px;
}
.award--featured .award__seal {
  height: auto;
  margin-bottom: 0;
}
.award--featured .award__seal img {
  max-height: none;
  max-width: 340px;
}

@media (max-width: 991px) { .awards__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   14. Dúvidas frequentes
   ------------------------------------------------------------ */
.faq { background: var(--cream); }

/* Duas colunas independentes: abrir uma resposta não empurra a outra coluna */
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 70px;
  align-items: start;
}
.faq__col { min-width: 0; }

.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__col > .faq__item:first-child { border-top: 1px solid var(--line); }

.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  transition: color .35s var(--ease-soft);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold-deep); }

/* Marcador desenhado: traço horizontal fixo + vertical que some ao abrir */
.faq__q::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-left: auto;
  margin-top: .28em;
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) center / 100% 2px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) center / 2px 100% no-repeat;
  transition: transform .45s var(--ease-out), opacity .35s var(--ease-soft);
}
/* Aberto: a barra vertical some e o marcador dá meia volta, virando um "menos".
   A rotação é de 180deg, não 90deg, senão a linha que sobra fica em pé. */
.faq__item[open] > .faq__q { color: var(--gold-deep); }
.faq__item[open] > .faq__q::after {
  transform: rotate(180deg);
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) center / 100% 2px no-repeat;
}

.faq__a {
  padding: 0 40px 26px 0;
  animation: faq-abre .4s var(--ease-out) both;
}
.faq__a p {
  font-size: .9375rem;
  line-height: 1.75;
  margin: 0;
}

@keyframes faq-abre {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 991px) {
  .faq__grid { grid-template-columns: 1fr; gap: 0; }
  /* Em coluna única a borda superior só faz sentido no primeiro item da página */
  .faq__col:last-child > .faq__item:first-child { border-top: 0; }
  .faq__a { padding-right: 24px; }
}

/* ------------------------------------------------------------
   15. Contato
   ------------------------------------------------------------ */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact__aside .sec-head { margin-bottom: 36px; }

.contact__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact__details { min-width: 0; }
.contact-list { display: grid; gap: 26px; }
.contact-list__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-list__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-deep);
}
.contact-list__title {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 5px;
}
.contact-list__value {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ink);
}
.contact-list__value a:hover { color: var(--gold-deep); }

/* Formulario: NAO usado na home (o form foi removido em 21/08/2026).
   Mantido aqui para a pagina interna de Contato, que compartilha esta folha.
   Contrato da lib WebFormas 4.0: os filhos precisam ser diretos do <form>. */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 50px);
  box-shadow: var(--shadow-md);
  min-width: 0;
}
.contact__aside { min-width: 0; }
.contact__form-title { font-size: 1.5rem; margin: 0 0 8px; }
.contact__form-note { font-size: .875rem; margin: 0 0 30px; }

.formWebformas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}
.formWebformas > .msgAlerta { grid-column: 1 / -1; margin: 0; }
.formWebformas > .msgAlerta:empty { display: none; }
.formWebformas > .mensagem,
.formWebformas > .captcha,
.formWebformas > .enviarForm { grid-column: 1 / -1; }

.item-form { position: relative; margin: 0; min-width: 0; }
.item-form input,
.item-form textarea {
  width: 100%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color .35s var(--ease-soft), box-shadow .35s var(--ease-soft), background-color .35s var(--ease-soft);
}
.item-form textarea { min-height: 148px; resize: vertical; }
.item-form input::placeholder,
.item-form textarea::placeholder { color: #7A7873; opacity: 1; }
.item-form input:focus,
.item-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(182, 140, 90, .16);
}
.item-form.erro input,
.item-form.erro textarea { border-color: #C0392B; }
.item-form label.error,
.item-form .error {
  display: block;
  font-size: .8125rem;
  color: #A93226;
  margin-top: 6px;
}

/* A lib injeta o reCAPTCHA aqui; sem sitekey válida o bloco não deve deixar buraco */
.captcha:not(:empty) { min-height: 78px; }

.enviarForm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: start;
  padding: 19px 42px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 12px 30px -16px rgba(182, 140, 90, .9);
  transition: background-color .4s var(--ease-soft), transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.enviarForm:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -16px rgba(182, 140, 90, .95);
}
.enviarForm font { color: var(--ink) !important; }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .875rem; }
.alert-success { background: #E7F5EC; color: #1B5E32; border: 1px solid #B7E0C4; }
.alert-danger  { background: #FDECEA; color: #8E241A; border: 1px solid #F3C4BE; }

@media (max-width: 991px) {
  .contact__inner { grid-template-columns: 1fr; gap: 54px; }
}
@media (max-width: 575px) {
  .formWebformas { grid-template-columns: 1fr; }
  .enviarForm { justify-self: stretch; }
}

/* ------------------------------------------------------------
   16. Faixa final
   ------------------------------------------------------------ */
.closing {
  position: relative;
  background: var(--petrol-deep);
  overflow: hidden;
  isolation: isolate;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 120% at 88% 20%, rgba(182, 140, 90, .3) 0%, rgba(34, 58, 61, 0) 62%),
    repeating-linear-gradient(118deg, rgba(214, 172, 116, .07) 0 1px, transparent 1px 74px);
}
.closing__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding-block: clamp(58px, 7vw, 92px);
  flex-wrap: wrap;
}
.closing__title {
  font-size: clamp(1.75rem, 1.1rem + 2.2vw, 2.75rem);
  color: var(--white);
  margin: 0 0 12px;
  max-width: 20ch;
  text-wrap: balance;
}
.closing__title em { font-style: italic; color: var(--gold-bright); }
.closing__text { color: var(--text-on-dark); margin: 0; max-width: 46ch; }
.closing__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   17. Rodape
   ------------------------------------------------------------ */
.footer { background: var(--ink); color: var(--text-on-dark); }
.footer__top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 56px;
  padding-block: clamp(56px, 6vw, 86px);
}
.footer__logo img { width: 232px; margin-bottom: 26px; }
.footer__about { font-size: .9375rem; line-height: 1.75; margin: 0 0 26px; }

.footer__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 26px;
  position: relative;
  padding-bottom: 16px;
}
.footer__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 42px; height: 2px;
  background: var(--gold);
}

.footer__block { margin-bottom: 22px; font-size: .9375rem; line-height: 1.7; }
.footer__block:last-child { margin-bottom: 0; }
.footer__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer a:hover { color: var(--gold-bright); }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  color: var(--text-on-dark);
  transition: border-color .35s var(--ease-soft), color .35s var(--ease-soft), background-color .35s var(--ease-soft);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(182, 140, 90, .1); }

/* Faixa de credito: coluna centralizada (padrao WebFormas) */
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer__copy { font-size: .8125rem; margin: 0; }
.footer__credit img { width: 190px; }

@media (max-width: 991px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   18. WhatsApp flutuante
   ------------------------------------------------------------ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #075E54, #0E7A6B);
  box-shadow: 0 12px 30px -10px rgba(7, 94, 84, .7);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 38px -12px rgba(7, 94, 84, .8); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(14, 122, 107, .55);
  animation: wa-pulse 2.6s var(--ease-out) infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
body.lgpd-open .wa-float { bottom: 120px; }

/* ------------------------------------------------------------
   19. Banner LGPD
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: var(--ink-deep);
  color: var(--text-on-dark);
  border-top: 1px solid var(--line-dark);
  transform: translateY(110%);
  transition: transform .6s var(--ease-out);
}
.cookie-banner.is-open { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: .875rem; max-width: 74ch; }
.cookie-banner a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__btn {
  border: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .35s var(--ease-soft);
}
.cookie-banner__btn:hover { background: var(--gold-bright); }

/* ------------------------------------------------------------
   20. Revelacao no scroll (um movimento so, orquestrado)
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float::after { animation: none; }
  .btn-shiny-wa,
  .btn-shiny-wa::before,
  .btn-shiny-wa::after,
  .btn-shiny-wa > span::before { animation: none; }
  .hero__slide { transition: none; }
  *, *::before, *::after { scroll-behavior: auto !important; }
}

/* ============================================================
   PÁGINAS INTERNAS
   Componentes usados só fora da home. Esta folha é compartilhada
   por todas as páginas do site.
   ============================================================ */

/* ------------------------------------------------------------
   21. Cabeçalho de página (faixa com título e caminho)
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(51px, 5vw, 96px);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(110% 130% at 82% 8%, rgba(49, 78, 82, .8) 0%, rgba(1, 28, 26, 0) 60%),
    radial-gradient(80% 90% at 4% 96%, rgba(182, 140, 90, .14) 0%, rgba(1, 28, 26, 0) 58%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    118deg,
    rgba(214, 172, 116, .07) 0 1px,
    transparent 1px 74px
  );
  -webkit-mask-image: linear-gradient(200deg, #000 0%, transparent 66%);
          mask-image: linear-gradient(200deg, #000 0%, transparent 66%);
}

.page-hero__title {
  font-size: clamp(2rem, 1.15rem + 1.9vw, 2.5rem);
  color: var(--white);
  margin: 0 0 20px;
  max-width: 47ch;
  text-wrap: balance;
}
.page-hero__title em { font-style: italic; color: var(--gold-bright); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-on-dark);
  margin: 0;
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 10px; }
.breadcrumb li + li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.breadcrumb a { transition: color .3s var(--ease-soft); }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb [aria-current="page"] { color: var(--gold-bright); }

/* ------------------------------------------------------------
   22. Texto corrido
   ------------------------------------------------------------ */
/* A margem vem do fluxo, não do elemento. `.prose p { margin: 0 }` tinha
   especificidade maior que a regra de irmãos e comia o espaço entre parágrafos. */
.prose > * { margin: 0; }
.prose > * + * { margin-top: 1.25em; }
.prose p { max-width: 70ch; }
.prose strong { color: var(--ink); font-weight: 600; }

.prose > h3 {
  font-size: 1.5rem;
  margin-top: 1.8em;
  margin-bottom: .6em;
}
/* Depois de um h3 o espaço já veio do próprio h3 */
.prose > h3 + * { margin-top: 0; }

.prose ul {
  display: grid;
  gap: 12px;
  max-width: 70ch;
}
.prose ul li {
  position: relative;
  padding-left: 30px;
  font-size: .9375rem;
  line-height: 1.7;
}
/* Marcador desenhado: losango dourado, no lugar do bullet do navegador */
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ------------------------------------------------------------
   23. Quem somos
   ------------------------------------------------------------ */
.about-page__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 76px;
  align-items: start;
}
.about-page__body { min-width: 0; }
.about-page__media { position: relative; }
.about-page__media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 470 / 550;
  object-fit: cover;
}
.about-page__media::before {
  content: "";
  position: absolute;
  inset: -26px 26px 26px -26px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

@media (max-width: 1199px) {
  .about-page__inner { grid-template-columns: 1fr 380px; gap: 50px; }
}
@media (max-width: 991px) {
  .about-page__inner { grid-template-columns: 1fr; gap: 60px; }
  .about-page__media { max-width: 460px; order: -1; }
  .about-page__media::before { inset: -20px 20px 20px -20px; }
}
@media (max-width: 575px) {
  .about-page__media::before { display: none; }
}

/* Missão, visão e valores */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.mvv__item {
  background: var(--white);
  border-radius: var(--radius);
  border-bottom: 6px solid var(--gold);
  padding: 40px 36px 34px;
  box-shadow: var(--shadow-sm);
}
.mvv__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.mvv__title { font-size: 1.375rem; margin: 0 0 12px; }
.mvv__text { font-size: .9375rem; line-height: 1.75; margin: 0; }

@media (max-width: 991px) { .mvv { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   24. Serviços em texto longo
   ------------------------------------------------------------ */
.svc-page__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

/* Índice que acompanha a leitura.
   `min-width: 0` é obrigatório: como item de grid, o padrão `auto` deixa a
   fila de chips do mobile ditar a largura e estoura a página em ~1100px. */
.svc-index { position: sticky; top: 116px; min-width: 0; }
.svc-index__title {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 20px;
}
.svc-index__list { display: grid; }
.svc-index__link {
  display: block;
  padding: 13px 0 13px 20px;
  border-left: 1px solid var(--line);
  font-size: .9375rem;
  line-height: 1.45;
  color: var(--text);
  transition: color .35s var(--ease-soft), border-color .35s var(--ease-soft);
}
.svc-index__link:hover,
.svc-index__link[aria-current="true"] {
  color: var(--ink);
  border-left-color: var(--gold);
}

.svc-long { display: grid; min-width: 0; }
.svc-long__item {
  padding-block: 54px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 116px;
}
.svc-long__item:first-child { border-top: 0; padding-top: 0; }
.svc-long__item:last-child { padding-bottom: 0; }

.svc-long__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}
.svc-long__icon {
  flex: 0 0 auto;
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-deep);
}
.svc-long__title { font-size: clamp(1.5rem, 1.2rem + .9vw, 2rem); margin: 0; }

@media (max-width: 1199px) {
  .svc-page__inner { grid-template-columns: 240px 1fr; gap: 48px; }
}
@media (max-width: 991px) {
  .svc-page__inner { grid-template-columns: 1fr; gap: 44px; }
  .svc-index { position: static; }
  .svc-index__list {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
  }
  .svc-index__link {
    padding: 10px 18px;
    border-left: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
  }
  .svc-index__link:hover,
  .svc-index__link[aria-current="true"] { border-color: var(--gold); }
}

/* ------------------------------------------------------------
   25. Clientes: setores e números provados
   ------------------------------------------------------------ */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sector {
  background: var(--white);
  padding: 38px 34px;
  transition: background-color .45s var(--ease-out);
}
.sector:hover { background: var(--cream); }
.sector__icon { color: var(--gold-deep); margin-bottom: 20px; display: block; }
.sector__title { font-size: 1.1875rem; margin: 0 0 8px; }
.sector__text { font-size: .9375rem; line-height: 1.7; margin: 0; }

@media (max-width: 991px) { .sectors { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575px) { .sectors { grid-template-columns: 1fr; } }

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.proof__item { padding-left: 30px; border-left: 1px solid var(--line-dark); }
.proof__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.3rem + 2vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.proof__label { font-size: .9375rem; line-height: 1.6; color: var(--text-on-dark); }

@media (max-width: 767px) {
  .proof { grid-template-columns: 1fr; gap: 28px; }
}

/* ------------------------------------------------------------
   26. Página de agradecimento
   ------------------------------------------------------------ */
.thanks { text-align: center; }
.thanks__inner { max-width: 660px; margin-inline: auto; }
.thanks__mark {
  width: 92px; height: 92px;
  margin: 0 auto 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-deep);
}
.thanks__title { font-size: clamp(1.9rem, 1.3rem + 2vw, 2.75rem); margin: 0 0 16px; }
.thanks__text { font-size: 1.0625rem; margin: 0 0 36px; }
.thanks__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   27. Mural de clientes (marquee + feixe de borda)

   Porte do componente React `logo-cloud-15` (motion/react + Tailwind)
   para HTML/CSS/JS puro, que é a stack deste site. Mantém as quatro
   peças do original: cartão com feixe percorrendo a borda, rótulo
   flutuando sobre a borda superior, onda de gradiente varrendo o texto
   em sincronia com o feixe, e marquee infinito que pausa no hover.
   O par laranja/roxo do original virou o dourado da marca.
   ------------------------------------------------------------ */
.logo-cloud {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-top: 74px;
  margin-bottom: 70px;
}

/* Feixe: posicionado a cada quadro pelo JS, percorrendo o perímetro */
.logo-cloud__beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 116px;
  height: 3px;
  margin-top: -1.5px;
  margin-left: -58px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(182, 140, 90, 0) 0%,
    var(--gold) 42%,
    var(--gold-bright) 50%,
    var(--gold) 58%,
    rgba(182, 140, 90, 0) 100%);
  pointer-events: none;
  opacity: 0;
  will-change: transform;
}
.logo-cloud__beam.is-on { opacity: 1; }

/* Rótulo sobre a borda de cima */
.logo-cloud__label {
  position: absolute;
  inset-inline: 0;
  top: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
  pointer-events: none;
}
.logo-cloud__label p {
  margin: 0;
  background: var(--white);
  padding-inline: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, .9rem + .4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* A onda vive na faixa 47–53% de um gradiente de 250% de largura.
   Em background-position 0% e 100% o elemento só enxerga currentColor,
   então não há estouro de cor nas pontas. O JS varre 95% -> 5%. */
.logo-cloud__wave {
  background-image: linear-gradient(90deg,
    currentColor 0%, currentColor 45%,
    var(--gold) 47%, var(--gold-bright) 50%, var(--gold) 53%,
    currentColor 55%, currentColor 100%);
  background-size: 250% 100%;
  background-repeat: no-repeat;
  background-position: 0% center;
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--ink);
  -webkit-text-fill-color: transparent;
}

/* Trilho */
.logo-cloud__viewport {
  overflow: hidden;
  padding: 52px 0 44px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.logo-cloud__track {
  --gap: 56px;
  --duration: 46s;
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  animation: logo-cloud-marquee var(--duration) linear infinite;
}
.logo-cloud:hover .logo-cloud__track,
.logo-cloud:focus-within .logo-cloud__track { animation-play-state: paused; }

@keyframes logo-cloud-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--gap) / 2)); }
}

.logo-cloud__item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 168px;
  height: 88px;
}
.logo-cloud__item img {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: .82;
  transition: filter .45s var(--ease-soft), opacity .45s var(--ease-soft), transform .45s var(--ease-soft);
}
.logo-cloud__item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .logo-cloud { margin-top: 62px; margin-bottom: 54px; }
  .logo-cloud__track { --gap: 38px; --duration: 34s; }
  .logo-cloud__item { width: 118px; height: 62px; }
  .logo-cloud__item img { max-height: 62px; }
  .logo-cloud__viewport { padding: 46px 0 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-cloud__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .logo-cloud__beam { display: none; }
  .logo-cloud__wave {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--ink);
  }
  .logo-cloud__item img { filter: none; opacity: 1; }
}

/* ------------------------------------------------------------
   28. Depoimentos (trilho infinito que pausa no hover)

   Porte do componente React `infinite-moving-cards` (framer-motion +
   Tailwind) para HTML/CSS/JS puro, que e a stack deste site. Mantem o
   que define o original: velocidade em px/s em vez de duracao fixa,
   direcao configuravel, pausa no hover, mascara de gradiente nas
   pontas e respeito a prefers-reduced-motion. O deslocamento e feito
   por requestAnimationFrame no home.js, nao por @keyframes, para que
   a pausa nao reinicie o ciclo e para o encaixe do loop ficar exato
   com cartoes de larguras diferentes.
   ------------------------------------------------------------ */
.reviews { background: var(--paper); }

.reviews__rail { position: relative; margin-top: 58px; }

.reviews__viewport {
  overflow: hidden;
  padding: 6px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.reviews__track {
  --gap: 30px;
  display: flex;
  align-items: stretch;
  gap: var(--gap);
  width: max-content;
  will-change: transform;
}

.review {
  flex: 0 0 auto;
  width: 356px;
  max-width: calc(100vw - 4rem);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-bottom: 6px solid transparent;
  padding: 34px 32px 30px;
  transition: border-color .5s var(--ease-out), transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.review:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}
.review__stars svg { width: 18px; height: 18px; display: block; }

.review__who {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.review__quote {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  quotes: "\201C" "\201D";
}
.review__quote::before { content: open-quote; }
.review__quote::after  { content: close-quote; }

@media (max-width: 767px) {
  .reviews__rail { margin-top: 46px; }
  .reviews__track { --gap: 20px; }
  .review { width: 300px; padding: 28px 26px 24px; }
}

/* Sem animacao: vira grade estatica, sem clones e sem corte nas pontas */
@media (prefers-reduced-motion: reduce) {
  .reviews__viewport {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .reviews__track {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    transform: none !important;
  }
}
