:root {
  --navy: #0d1330;
  --navy-2: #141c44;
  --gold: #b18d5a;
  --gold-2: #e5bc80;
  --gold-3: #f2ddbb;
  --gold-deep: #946e3e;
  --gold-ink: #946e3e;
  --on-gold: #2b1d0b;
  --gold-grad: linear-gradient(135deg, #946e3e 0%, #b18d5a 48%, #e5bc80 100%);
  --ink: #1b2340;
  --body: #4a5069;
  --light: #f1f1f1;
  --white: #fff;
  --radius: 4px;
  --shadow: 0 18px 50px -22px rgba(13, 19, 48, 0.45);
  --maxw: 1200px;
}
/* variação ainda mais clara (Contato e Prêmios) */
body.gold-light {
  --gold: #bd9b69;
  --gold-2: #e9c691;
  --gold-3: #f7e7cb;
  --gold-deep: #9d7745;
  --gold-ink: #946e3e;
  --gold-grad: linear-gradient(135deg, #9d7745 0%, #bd9b69 48%, #e9c691 100%);
}
body.gold-light .contact-info,
body.gold-light .gold-hero {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}
body.gold-light .awards .tl-fill {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold) 48%, var(--gold-2));
  box-shadow: 0 0 12px rgba(157, 119, 69, 0.55);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Barlow", system-ui, sans-serif;
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.center {
  text-align: center;
  margin-top: 34px;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  background: var(--gold);
  color: var(--on-gold);
  padding: 10px 16px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--on-gold);
  box-shadow: 0 12px 26px -14px rgba(148, 110, 62, 0.85);
}
.btn-gold:hover {
  transform: translateY(-3px);
  filter: brightness(1.07);
}
.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}
.btn-outline {
  border: 2px solid var(--gold-ink);
  color: var(--gold-ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-ink);
  color: var(--on-gold);
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--navy);
  --hdr-h: 84px;
  height: var(--hdr-h);
  transition:
    box-shadow 0.3s,
    background-color 0.3s;
}
.site-header.shrink {
  background: color-mix(in srgb, var(--navy) 92%, #000);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}
.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  height: 100%;
  padding: 0 20px;
}
.brand img {
  width: 190px;
  height: auto;
  max-height: calc(var(--hdr-h) - 24px);
  object-fit: contain;
  object-position: left center;
  transform-origin: left center;
}
.nav-desktop {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}
.nav-desktop a,
.drawer nav a {
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: var(--gold-2);
  font-size: 1rem;
  transition: color 0.25s;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: #fff;
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}
.hdr-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.socials {
  display: flex;
  gap: 10px;
}
.soc {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s;
}
.soc svg {
  width: 22px;
  height: 22px;
}
.drawer-soc {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.soc:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.socials.light .soc {
  background: rgba(13, 19, 48, 0.08);
  color: var(--navy);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-2);
  transition: 0.3s;
}

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(6, 9, 24, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: var(--navy);
  padding: 70px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.drawer.open .drawer-panel {
  transform: none;
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer nav a {
  font-size: 1.15rem;
}
.drawer nav a.active {
  color: #fff;
}
.drawer-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: 0;
  color: var(--gold-2);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}
.drawer-cta {
  margin-top: auto;
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
}
.slides {
  position: relative;
  height: min(88svh, 760px);
  min-height: 560px;
}
.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition:
    opacity 1s ease,
    transform 6s linear;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}
.slide-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.slide-copy {
  max-width: 560px;
}
.slide-pre {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-style: italic;
  color: #fff;
  margin: 0;
}
.slide-rule {
  height: 2px;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 48%, var(--gold-2));
  margin: 10px 0 18px;
}
.slide-big {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  letter-spacing: 0.02em;
  padding: 8px 26px;
  margin: 0 0 20px;
}
.slide-txt {
  color: #e8ebf5;
  font-size: 1.05rem;
  max-width: 430px;
}
.slide.is-active .slide-copy > * {
  animation: up 0.8s both;
}
.slide.is-active .slide-copy > *:nth-child(2) {
  animation-delay: 0.1s;
}
.slide.is-active .slide-copy > *:nth-child(3) {
  animation-delay: 0.2s;
}
.slide.is-active .slide-copy > *:nth-child(4) {
  animation-delay: 0.3s;
}
.slide.is-active .slide-copy > *:nth-child(5) {
  animation-delay: 0.4s;
}
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.slide-media {
  display: flex;
  justify-content: center;
}
.sl-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(13, 19, 48, 0.45);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s;
}
.sl-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.sl-arrow.prev {
  left: 16px;
}
.sl-arrow.next {
  right: 16px;
}
.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.25s;
  padding: 0;
}
.dot.is-active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

/* gold corner frame */
.frame {
  position: relative;
  padding: 18px;
  max-width: 460px;
  margin: 0 auto;
}
.frame::before,
.frame::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border: 3px solid var(--gold);
}
.frame::before {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.frame::after {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}
.frame img {
  width: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.5s ease;
}
.frame:hover img {
  transform: translateY(-6px);
}
.frame-lg {
  max-width: 400px;
}

/* sections */
.sec {
  padding: 88px 0;
}
.sec-alt {
  background: var(--light);
}
.sec-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sec-title span {
  color: var(--gold-ink);
}
.sec-title.gold {
  color: var(--gold-ink);
}
.sec-sub {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
  font-size: 1.12rem;
  color: var(--ink);
}
.sec-sub.gold {
  color: var(--gold-ink);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
}
.left-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
}
.left-title span {
  color: var(--gold-ink);
}

/* strip counters */
.strip {
  background: var(--navy);
  color: #fff;
  padding: 44px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.strip strong {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  color: var(--gold-2);
}
.strip span {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9cee0;
}

/* patricia */
.pati-grid,
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  margin-top: 34px;
}
.pati-text p {
  text-align: justify;
  color: var(--ink);
}

/* cards */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px -28px rgba(13, 19, 48, 0.6);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -26px rgba(13, 19, 48, 0.55);
}
.card-img {
  aspect-ratio: 7/6;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img img {
  transform: scale(1.08);
}
.card-body {
  padding: 20px 22px 26px;
}
.card-body h2,
.card-body h3 {
  font-size: 1.14rem;
  margin: 0.4em 0 0.35em;
}
.card-body p {
  font-size: 0.97rem;
  margin-bottom: 0.6em;
}
.dash {
  display: block;
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 48%, var(--gold-2));
  border-radius: 2px;
}
.lnk {
  color: var(--gold-ink);
  font-weight: 600;
  font-size: 0.94rem;
}
.lnk:hover {
  text-decoration: underline;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* carousel */
.carousel {
  overflow: hidden;
  margin-top: 38px;
  cursor: grab;
}
.carousel.dragging {
  cursor: grabbing;
}
.track {
  display: flex;
  gap: 26px;
  transition: transform 0.55s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.track .card {
  flex: 0 0 calc((100% - 78px) / 4);
}
.car-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.car-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-ink);
  background: transparent;
  color: var(--gold-ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s;
}
.car-btn:hover {
  background: var(--gold);
  color: var(--on-gold);
}

/* testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 12px;
}
.testi {
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  transition: transform 0.35s;
}
.testi:hover {
  transform: translateY(-6px);
}
.testi header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.testi header img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi h3 {
  font-size: 1.02rem;
  margin: 0;
}
.stars {
  color: var(--gold-ink);
  letter-spacing: 3px;
}
.testi p {
  margin: 0;
  font-size: 0.98rem;
}

/* marquee */
.marquee {
  overflow: hidden;
  margin: 44px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scrollx 42s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}
.emp {
  margin: 0;
  width: 200px;
  text-align: center;
}
.emp img {
  height: 74px;
  object-fit: contain;
  margin: 0 auto 12px;
  opacity: 1;
  transition: 0.35s;
}
.emp:hover img {
  transform: scale(1.05);
}
.emp figcaption {
  display: none;
}

/* cta band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 74px 0;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.cta-band p {
  color: #cfd4e6;
  max-width: 620px;
  margin: 0 auto 26px;
}
.cta-band .cta-lead {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  max-width: 760px;
  line-height: 1.5;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* page hero */
.page-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 96px 0 84px;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.1rem);
  text-transform: capitalize;
}
.page-hero p {
  color: #d7dbea;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.08rem;
}
.gold-hero {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}
.gold-hero p {
  color: #fff;
}

/* texto com degradê dourado */
.gold-text,
.page-hero h1.gold-text,
.gold-hero h1 {
  color: var(--gold-2);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* logos */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 22px;
}
.logo-box {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: var(--radius);
  min-height: 120px;
  transition: 0.3s;
}
.logo-box img {
  max-height: 82px;
  object-fit: contain;
  opacity: 1;
  transition: 0.3s;
}
.logo-box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.logo-box:hover img {
  transform: scale(1.04);
}

/* awards timeline */
.awards {
  position: relative;
  list-style: none;
  max-width: 980px;
  margin: 0 auto;
  padding: 6px 0;
  display: block;
}
.awards::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(163, 121, 47, 0.18);
}
.awards .tl-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-deep), var(--gold) 48%, var(--gold-2));
  box-shadow: 0 0 12px rgba(163, 121, 47, 0.45);
}
.awards li {
  position: relative;
  width: calc(50% - 48px);
  background: var(--light);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 0 0 30px auto;
  border-right: 4px solid transparent;
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 30px -22px rgba(13, 19, 48, 0.55);
}
.awards li:nth-child(odd) {
  margin: 0 auto 30px 0;
  text-align: right;
  border-left: 4px solid transparent;
  border-right: 4px solid var(--gold);
}
.awards li::after {
  content: "";
  position: absolute;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(163, 121, 47, 0.16);
}
.awards li:nth-child(odd)::after {
  right: -55px;
}
.awards li:nth-child(even)::after {
  left: -55px;
}
.awards li.reveal {
  opacity: 0;
  transform: translateX(-26px);
  transition: 0.75s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.awards li:nth-child(even).reveal {
  transform: translateX(26px);
}
.awards li.reveal.in {
  opacity: 1;
  transform: none;
}
.awards .yr {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--gold-ink);
  font-size: 1.35rem;
  display: block;
  margin-bottom: 6px;
}
.awards p {
  margin: 0;
  color: var(--ink);
}
@media (max-width: 760px) {
  .awards::before,
  .awards .tl-fill {
    left: 8px;
    transform: none;
  }
  .awards li,
  .awards li:nth-child(odd) {
    width: auto;
    margin: 0 0 22px 40px;
    text-align: left;
    border-left: 4px solid var(--gold);
    border-right: 4px solid transparent;
    transform: translateX(20px);
  }
  .awards li:nth-child(odd)::after,
  .awards li:nth-child(even)::after {
    left: -47px;
    right: auto;
  }
}
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.acc {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px -26px rgba(13, 19, 48, 0.6);
  overflow: hidden;
  align-self: start;
}
.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.acc-head i {
  color: var(--gold-ink);
  font-style: normal;
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.acc.open .acc-head i {
  transform: rotate(45deg);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.acc-body p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 0.97rem;
}

/* contato */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 70vh;
}
.contact-info {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  color: #fff;
  padding: 64px 46px;
  display: flex;
  flex-direction: column;
}
.contact-info h1 {
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--gold-2);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-info h1 span {
  color: inherit;
}
.c-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}
.c-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 16px;
  font-size: 1.08rem;
}
.contact-info,
.contact-info a,
.contact-info li,
.contact-info p {
  color: #fff;
}
.c-ico {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  border-radius: 50%;
}
.contact-info .socials.light .soc,
.contact-info .soc {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.map {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  min-height: 300px;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}
.contact-form {
  padding: 64px 46px;
  background: #fff;
}
.contact-form h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
}
.form-note {
  color: var(--gold-ink);
  font-weight: 600;
}
form label {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid #d8dbe6;
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: 0.25s;
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(177, 141, 90, 0.15);
}
input.invalid,
textarea.invalid {
  border-color: #d5493f;
}
textarea {
  resize: vertical;
}
.form-error {
  color: #d5493f;
  font-weight: 600;
  min-height: 1.2em;
  margin: 0 0 10px;
}
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* feed */
.feed-wrap {
  margin-top: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.feed-wrap iframe {
  width: 100%;
  min-height: 1100px;
  border: 0;
  display: block;
}

/* footer */
.site-footer {
  background: var(--navy);
  color: #c6cbdd;
  padding: 64px 0 0;
  margin-top: 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.08fr 1.15fr auto;
  gap: 46px;
  align-items: center;
}
.foot-brand img {
  width: 210px;
}
.foot-txt {
  text-align: justify;
  font-size: 0.95rem;
  margin: 0;
}
.foot-contact {
  display: grid;
  gap: 12px;
}
.foot-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.97rem;
}
.foot-contact a:hover {
  color: var(--gold-2);
}
.ico {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}
.ico svg {
  width: 22px;
  height: 22px;
  display: block;
}
.foot-contact li a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.c-ico svg {
  width: 26px;
  height: 26px;
  display: block;
}
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}
.btn-pdf .i-pdf {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}
.btn-pdf:hover .i-pdf {
  transform: translateY(3px);
}
.drawer-pdf {
  margin-top: 12px;
  justify-content: center;
  text-align: center;
}
.foot-br {
  display: none;
}
@media (max-width: 640px) {
  .foot-sep {
    display: none;
  }
  .foot-br {
    display: block;
  }
}
.foot-bar {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 0.85rem;
}
.foot-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* whatsapp float */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 14px;
  z-index: 90;
  max-width: calc(100vw - 32px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-av {
  order: 2;
  position: relative;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.6);
  animation: pulse 2.6s infinite;
  background: #0d1330;
  flex: 0 0 auto;
}
.wa-float img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  display: block;
  transform: scale(1) translate(15%, 5%);
  transform-origin: center;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(177, 141, 90, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(177, 141, 90, 0);
  }
}
.wa-bubble {
  order: 1;
  max-width: min(240px, calc(100vw - 140px));
  background: #fff;
  color: var(--ink);
  font-size: 0.86rem;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(12px);
  transition: 0.35s;
  pointer-events: none;
}
.wa-float:hover .wa-bubble {
  opacity: 1;
  transform: none;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-desktop,
  .hdr-right .socials {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hdr-inner {
    grid-template-columns: 1fr auto;
  }
  .track .card {
    flex: 0 0 calc((100% - 26px) / 2);
  }
  .pati-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .site-header {
    --hdr-h: 64px;
  }
  .brand img {
    width: 150px;
  }
  .sec {
    padding: 60px 0;
  }
  .slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 56px;
    padding-bottom: 40px;
  }
  .slide-copy {
    margin: 0 auto;
  }
  .slide-rule {
    margin-inline: auto;
  }
  .slide-media {
    display: none;
  }
  .slides {
    display: grid;
    height: auto;
    min-height: 520px;
  }
  .slides > .slide {
    position: absolute;
    inset: 0;
  }
  .slides > .slide.is-active {
    position: relative;
    inset: auto;
    grid-area: 1 / 1;
    width: 100%;
  }
  .dots {
    position: static;
    background: var(--navy);
    padding: 16px 0 18px;
  }
  .sl-arrow {
    width: 40px;
    height: 40px;
    top: 30%;
  }
  .sl-arrow.prev {
    left: 8px;
  }
  .sl-arrow.next {
    right: 8px;
  }
  .strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .track .card {
    flex: 0 0 100%;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .foot-txt {
    text-align: center;
  }
  .foot-contact li {
    justify-content: center;
  }
  .contact-info,
  .contact-form {
    padding: 48px 22px;
  }
  .f-row {
    grid-template-columns: 1fr;
  }
  .frame {
    padding: 12px;
  }
  .frame::before,
  .frame::after {
    width: 42px;
    height: 42px;
  }
  .wa-bubble {
    display: none;
  }
  .wa-float {
    right: 12px;
    bottom: 12px;
    gap: 0;
    max-width: calc(100vw - 24px);
  }
  .wa-av {
    width: 60px;
    height: 60px;
  }
  .feed-wrap iframe {
    min-height: 1500px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ============ preloader cinematográfico ============ */
html.is-loading,
html.is-loading body {
  overflow: hidden;
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.preloader.done {
  animation: plGone 0.1s 0.1s forwards;
}
@keyframes plGone {
  to {
    visibility: hidden;
    pointer-events: none;
  }
}
.pl-shutter {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, #0a0f26, #141c44);
  z-index: 3;
}
.pl-top {
  top: 0;
  background: linear-gradient(180deg, #141c44, #0a0f26);
  border-bottom: 1px solid var(--gold);
}
.pl-bot {
  bottom: 0;
  border-top: 1px solid var(--gold);
}
.preloader.open .pl-top {
  animation: shutUp 1.1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.preloader.open .pl-bot {
  animation: shutDown 1.1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
@keyframes shutUp {
  to {
    transform: translateY(-100%);
  }
}
@keyframes shutDown {
  to {
    transform: translateY(100%);
  }
}
.pl-core {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: min(300px, 72vw);
  aspect-ratio: 1;
}
.preloader.open .pl-core {
  animation: plCore 0.7s ease forwards;
}
@keyframes plCore {
  to {
    opacity: 0;
    transform: scale(1.18);
  }
}
.pl-poly {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--gold);
  opacity: 0.85;
}
.pl-grid {
  opacity: 0.18;
  stroke-dasharray: 4 7;
  animation: plSpin 26s linear infinite;
}
.pl-shape {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation:
    plDraw 1.6s cubic-bezier(0.6, 0, 0.2, 1) forwards,
    plMorph 9s 1.6s ease-in-out infinite;
}
.pl-s2 {
  animation-delay: 0.3s, 1.9s;
  opacity: 0.65;
  animation-direction: normal, alternate;
}
@keyframes plDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes plMorph {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(30deg) scale(0.9);
  }
}
.pl-shape {
  transform-origin: 50% 50%;
}
@keyframes plSpin {
  to {
    transform: rotate(360deg);
  }
}
.pl-grid {
  transform-origin: 50% 50%;
}
.pl-logo {
  position: relative;
  width: 60%;
  opacity: 0;
  animation: plLogo 1.1s 0.45s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}
.pl-logo img {
  width: 100%;
}
@keyframes plLogo {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.pl-bar {
  position: absolute;
  bottom: 6%;
  width: 56%;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  border-radius: 2px;
}
.pl-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 48%, var(--gold-2));
  animation: plBar 2s 0.3s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}
@keyframes plBar {
  to {
    width: 100%;
  }
}
.page-in {
  animation: pageIn 1s 0.25s cubic-bezier(0.22, 0.7, 0.3, 1) both;
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============ depoimentos em carrossel contínuo ============ */
.testi-marquee {
  overflow: hidden;
  margin-top: 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testi-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scrollx 80s linear infinite;
}
.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}
.testi-track .testi {
  flex: 0 0 340px;
  max-width: 340px;
}
@media (max-width: 520px) {
  .testi-track .testi {
    flex: 0 0 84vw;
    max-width: 84vw;
  }
}

/* ============ cursor dourado 3D ============ */
@media (hover: hover) and (pointer: fine) {
  html.cursor-on,
  html.cursor-on * {
    cursor: none !important;
  }
  .cur {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    will-change: transform;
  }
  .cur-arrow {
    width: 31px;
    height: 31px;
    transform: translate(-3px, -2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
  }
  .cur-poly {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    pointer-events: none;
    width: 89px;
    height: 89px;
    margin: -44.5px 0 0 -44.5px;
    color: var(--gold);
    opacity: 0.55;
    will-change: transform;
    contain: layout paint style;
  }
  .cur-poly .cp {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
    transform-origin: 50% 50%;
    animation: cpSpin 18s linear infinite;
  }
  .cur-poly .cp2 {
    stroke-dasharray: 3 6;
    animation: cpSpin 26s linear infinite reverse;
  }
  @keyframes cpSpin {
    to {
      transform: rotate(360deg);
    }
  }
  .cur.click .cur-arrow {
    transform: translate(-3px, -2px) scale(0.82);
  }
  .cur-poly.click {
    transform-box: fill-box;
  }
}

/* ============ scrollbars modernas ============ */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(13, 19, 48, 0.1);
}
*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
*::-webkit-scrollbar-track {
  background: rgba(13, 19, 48, 0.07);
  border-radius: 99px;
}
*::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 52%, var(--gold-deep));
  background-clip: content-box;
  border-radius: 99px;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  background-clip: content-box;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
.site-footer *::-webkit-scrollbar-track,
.drawer *::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
/* barra de progresso de rolagem */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2), var(--gold-deep));
  z-index: 9997;
  pointer-events: none;
}

/* feed page: espaçamento específico (não afeta outras .sec) */
.sec-feed {
  padding-top: 8px;
}
.sec-feed .feed-wrap {
  margin-top: 0;
}
.feed-gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.feed-gallery .frame {
  max-width: 100%;
  margin: 0;
}
.feed-gallery .frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 640px) {
  .feed-gallery {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* hero: números de atuação */
.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 420px;
}
.hero-stats li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  background: rgba(13, 19, 48, 0.55);
  backdrop-filter: blur(6px);
}
.hero-stats .hero-stat-ico {
  flex: none;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 0;
  border-radius: 0;
  background: none;
}
.hero-stats .hero-stat-ico svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.35;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.hero-stats strong {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.1;
}
.hero-stats span {
  font-size: 0.9rem;
  color: #d7dcec;
}
.slide.is-active .hero-stats li {
  animation: up 0.8s both;
}
.slide.is-active .hero-stats li:nth-child(2) {
  animation-delay: 0.15s;
}
.slide.is-active .hero-stats li:nth-child(3) {
  animation-delay: 0.3s;
}
.slide.is-active .hero-stats li:nth-child(4) {
  animation-delay: 0.45s;
}
/* variante com 4 pilares (slide Vistorias) */
.hero-stats.hero-pillars {
  gap: 10px;
  max-width: 460px;
}
.hero-stats.hero-pillars li {
  padding: 11px 15px;
  gap: 12px;
}
.hero-stats.hero-pillars .hero-stat-ico {
  width: 56px;
  height: 56px;
}
.hero-stats.hero-pillars .hero-stat-ico svg {
  width: 56px;
  height: 56px;
}
.hero-stats.hero-pillars strong {
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.hero-stats.hero-pillars span {
  font-size: 0.82rem;
  line-height: 1.35;
  display: block;
}
@media (max-width: 640px) {
  .hero-stats .hero-stat-ico,
  .hero-stats .hero-stat-ico svg {
    width: 46px;
    height: 46px;
  }
  .hero-stats.hero-pillars .hero-stat-ico,
  .hero-stats.hero-pillars .hero-stat-ico svg {
    width: 42px;
    height: 42px;
  }
  .hero-stats.hero-pillars strong {
    font-size: 0.95rem;
  }
  .hero-stats.hero-pillars span {
    font-size: 0.76rem;
  }
}

/* seção Do Alvará ao Cartório */
/* hero: tópicos cinematográficos (slide 1) */
.topics-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topics-media::before {
  content: "";
  position: absolute;
  inset: -12% -6%;
  background: radial-gradient(
    58% 52% at 62% 45%,
    color-mix(in srgb, var(--gold-2, #e5bc80) 26%, transparent) 0%,
    transparent 72%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.hero-topics {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 520px;
  perspective: 1100px;
}
.hero-topics li {
  --i: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(105deg, rgba(9, 14, 38, 0.78), rgba(13, 19, 48, 0.28));
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow:
    0 26px 50px -32px rgba(0, 0, 0, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  overflow: hidden;
  transform-style: preserve-3d;
  margin-left: calc(var(--i) * 26px);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}
.hero-topics li:nth-child(2) {
  --i: 1;
}
.hero-topics li:nth-child(3) {
  --i: 2;
}
.hero-topics li:nth-child(4) {
  --i: 3;
}
/* fio dourado vertical à esquerda */
.hero-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold, #b18d5a), var(--gold-2, #e5bc80), transparent);
  opacity: 0.9;
}
/* lâmina de luz que varre o card */
.hero-topics li::after {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  width: 46%;
  left: -60%;
  background: linear-gradient(
    100deg,
    transparent,
    color-mix(in srgb, var(--gold-3, #f2ddbb) 34%, transparent),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
}
.slide.is-active .hero-topics li::after {
  animation: ht-sweep 1.5s cubic-bezier(0.3, 0.7, 0.2, 1) both;
  animation-delay: calc(0.35s + var(--i) * 0.16s);
}
.hero-topics li:hover {
  transform: translateX(8px) translateZ(24px);
  border-color: color-mix(in srgb, var(--gold-2, #e5bc80) 65%, transparent);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.95),
    0 0 0 1px color-mix(in srgb, var(--gold, #b18d5a) 30%, transparent);
}
.hero-topics li:hover::after {
  animation: ht-sweep 0.9s ease both;
}
.hero-topics .ht-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold-2, #e5bc80);
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--gold, #b18d5a) 55%, transparent));
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-topics .ht-ico svg {
  width: 44px;
  height: 44px;
}
.hero-topics li:hover .ht-ico {
  transform: scale(1.08) rotate(-2deg);
}
.hero-topics .ht-body strong {
  position: relative;
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.16rem;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.hero-topics .ht-body strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold, #b18d5a), transparent);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-topics li:hover .ht-body strong::after {
  transform: scaleX(1);
}
.hero-topics .ht-body span {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #cfd6ea;
}
.slide.is-active .hero-topics li {
  animation: ht-in 1s cubic-bezier(0.16, 0.84, 0.24, 1) both;
  animation-delay: calc(var(--i) * 0.16s);
}
.slide.is-active .hero-topics .ht-body span {
  animation: ht-fade 0.9s ease both;
  animation-delay: calc(0.35s + var(--i) * 0.16s);
}
@keyframes ht-in {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translateX(70px) translateZ(-120px) scale(0.94) rotateY(-9deg);
  }
  60% {
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) translateZ(0) scale(1) rotateY(0deg);
  }
}
@keyframes ht-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ht-sweep {
  from {
    left: -60%;
  }
  to {
    left: 130%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slide.is-active .hero-topics li,
  .slide.is-active .hero-topics li::after,
  .slide.is-active .hero-topics .ht-body span {
    animation: none;
  }
}
@media (max-width: 900px) {
  .hero-topics li {
    margin-left: calc(var(--i) * 14px);
  }
}
@media (max-width: 640px) {
  .hero-topics li {
    margin-left: 0;
    padding: 13px 16px;
    gap: 13px;
  }
  .hero-topics .ht-ico,
  .hero-topics .ht-ico svg {
    width: 34px;
    height: 34px;
  }
  .hero-topics .ht-body strong {
    font-size: 0.97rem;
    letter-spacing: 0.08em;
  }
  .hero-topics .ht-body span {
    margin-top: 7px;
    font-size: 0.77rem;
  }
}

/* slide 4 (Vistorias): enquadramento do fundo no mobile */
@media (max-width: 640px) {
  .slide.slide-vistorias {
    background-position: 78% center;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(13, 19, 48, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px -22px rgba(13, 19, 48, 0.6);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 16px;
  row-gap: 4px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.step-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 48%, var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(177, 141, 90, 0.45);
  box-shadow: 0 22px 40px -26px rgba(13, 19, 48, 0.75);
}
.step-card:hover::after {
  transform: scaleX(1);
}
.step-ico {
  display: grid;
  place-items: center;
  grid-row: span 2;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex: 0 0 auto;
  color: var(--gold-ink);
  background: linear-gradient(140deg, rgba(177, 141, 90, 0.16), rgba(177, 141, 90, 0.04));
  border: 1px solid rgba(177, 141, 90, 0.28);
}
.step-ico svg {
  width: 24px;
  height: 24px;
}
.step-card h3 {
  margin: 0;
  align-self: center;
  font-size: 1.12rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.step-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.97rem;
}
@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .slide-media.stats-media,
  .slide-media.topics-media {
    display: flex;
    margin-top: 22px;
  }
  .hero-stats,
  .hero-topics {
    max-width: 480px;
    margin-inline: auto;
  }
  .hero-stats li {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    padding: 18px 16px;
    column-gap: 12px;
  }
  .step-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .step-ico svg {
    width: 20px;
    height: 20px;
  }
  .step-card h3 {
    font-size: 0.98rem;
  }
  .step-card p {
    font-size: 0.82rem;
    line-height: 1.45;
  }
}
