/* ============================================================
   Diviti — Componentes customizados usados em patterns e
   template parts (header, hero, cards de segmento, processo,
   case, depoimentos, rodapé, botões flutuantes, etc).
   ============================================================ */

body {
  background: var(--c-ivory);
  color: var(--c-graphite);
  font-family: var(--ff-sans);
}

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}
.site-header__brand {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--c-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
.site-header__brand-name {
  display: inline-flex;
  align-items: center;
}
.site-header__brand--logo {
  gap: 0;
  color: var(--c-navy);
}
.site-header__brand--logo::before { display: none; }
.site-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header__logo-image {
  display: block;
  width: auto;
  max-height: 40px;
}
.site-header__brand::before {
  content: "";
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid var(--c-blue);
  display: inline-block;
  margin-right: 0.25rem;
  transform: translateY(-2px);
}
.site-header__brand .dot { display: none; }
.site-header__nav { min-width: 0; }
.site-header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header__menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.site-header__menu > li {
  position: relative;
}
.site-header__nav a {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-navy);
  text-decoration: none;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--c-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.site-header__nav .sub-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  min-width: 15rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem;
  background: rgba(247, 246, 242, 0.98);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              visibility var(--dur-fast) var(--ease-out);
}
.site-header__nav .sub-menu a {
  display: block;
  padding: 0.45rem 0.5rem;
  font-size: 0.8125rem;
}
.site-header__nav .sub-menu a::after { display: none; }
.site-header__menu > li:hover > .sub-menu,
.site-header__menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Header compacto ao fazer scroll */
.site-header.scrolled {
  padding-block: 0;
  box-shadow: 0 1px 16px rgba(10,35,87,0.09);
}
.site-header.scrolled .site-header__inner { padding-block: 0.65rem; }
.site-header__nav a:hover::after,
.site-header__nav a.current::after,
.site-header__menu > .current-menu-item > a::after,
.site-header__menu > .current-menu-ancestor > a::after,
.site-header__menu > .current_page_item > a::after,
.site-header__menu > .current_page_ancestor > a::after { transform: scaleX(1); }
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: var(--diviti-header-cta-bg, var(--c-blue));
  color: var(--diviti-header-cta-color, var(--c-navy));
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.site-header__cta:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}

.site-header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-navy);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
}
.site-header__burger span {
  display: block; width: 18px; height: 1px; background: var(--c-navy);
  position: relative;
}
.site-header__burger span::before,
.site-header__burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: var(--c-navy);
}
.site-header__burger span::before { top: -6px; }
.site-header__burger span::after  { top: 6px; }

@media (max-width: 900px) {
  .site-header__nav, .site-header__cta { display: none; }
  .site-header__burger { display: inline-flex; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header__nav {
    display: block;
    position: fixed;
    inset: 64px 0 0 0;
    padding: 2rem 1.5rem 6rem;
    background: var(--c-ivory);
    border-top: 1px solid var(--c-line);
    overflow: auto;
  }
  body.nav-open .site-header__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  body.nav-open .site-header__menu > li { width: 100%; }
  body.nav-open .site-header__nav a {
    font-size: 1.35rem;
    font-family: var(--ff-display);
    font-weight: 500;
    color: var(--c-navy);
  }
  body.nav-open .site-header__nav .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 0.8rem;
    padding: 0.25rem 0 0.25rem 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--c-line);
    box-shadow: none;
    gap: 0.65rem;
  }
  body.nav-open .site-header__nav .sub-menu a {
    font-family: var(--ff-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-slate);
    padding: 0;
  }
  .site-header__brand-tagline { display: none; }
}

/* -------- HERO -------- */
.hero {
  min-height: 90svh;
  min-height: 90vh;
  background: #04101F;
  --hero-image-filter: saturate(0.84) contrast(1.04) brightness(0.7);
  --hero-overlay-top: rgba(4, 16, 31, 0.36);
  --hero-overlay-mid: rgba(4, 16, 31, 0.62);
  --hero-overlay-bottom: rgba(4, 16, 31, 0.88);
  --hero-overlay-left: rgba(4, 16, 31, 0.86);
  --hero-overlay-center: rgba(4, 16, 31, 0.5);
  --hero-overlay-right: rgba(4, 16, 31, 0.7);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Animated grid */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 212, 254, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 212, 254, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: hero-grid-drift 28s linear infinite;
  z-index: 0;
}
@keyframes hero-grid-drift {
  from { transform: translateY(0); }
  to   { transform: translateY(80px); }
}

/* Electric blue glow orb */
.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(14, 212, 254, 0.15) 0%, transparent 65%);
  top: -220px;
  right: -180px;
  z-index: 0;
  animation: hero-glow-pulse 7s ease-in-out infinite alternate;
}
@keyframes hero-glow-pulse {
  from { transform: scale(1);    opacity: 0.7; }
  to   { transform: scale(1.18); opacity: 1;   }
}

/* Inner layout */
.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding-block: clamp(8rem, 14vh, 11rem) clamp(3rem, 5vh, 5rem);
}
.hero__content { display: flex; flex-direction: column; }

/* Eyebrow / kicker */
.hero__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14, 212, 254, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fade-in-up 0.7s 0.1s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
.hero__eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--c-blue);
  flex-shrink: 0;
}

/* Headline com animação linha por linha */
.hero__headline {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 2.25rem;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
}
.hero__line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: line-reveal 0.88s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__line:nth-child(1) .hero__line-inner { animation-delay: 0.2s; }
.hero__line:nth-child(2) .hero__line-inner { animation-delay: 0.36s; }
.hero__line:nth-child(3) .hero__line-inner { animation-delay: 0.52s; }
.hero__line:nth-child(4) .hero__line-inner { animation-delay: 0.68s; }
.hero__line--accent .hero__line-inner { color: var(--c-blue); }

@keyframes line-reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.58);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-in-up 0.7s 0.85s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in-up 0.7s 1s cubic-bezier(0.2,0.8,0.2,1) forwards;
}

/* Right visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero__visual img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 3px;
  opacity: 0;
  animation: fade-in-up 1s 0.5s cubic-bezier(0.2,0.8,0.2,1) forwards;
  filter: brightness(0.85) contrast(1.08) saturate(0.85);
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: -6px -6px 6px 6px;
  border: 1px solid rgba(14, 212, 254, 0.25);
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  animation: fade-in-up 1s 0.9s forwards;
}

/* KPI bar */
.hero__kpis {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(14, 212, 254, 0.12);
  background: rgba(14, 212, 254, 0.025);
}
.hero__kpi {
  padding: 1.75rem clamp(1rem, 2.5vw, 2.25rem);
  border-right: 1px solid rgba(14, 212, 254, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero__kpi:first-child { padding-left: clamp(1.25rem, 4vw, 2.5rem); }
.hero__kpi:last-child  { border-right: 0; }
.hero__kpi .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
  color: var(--c-blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__kpi .label {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.42);
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}
@media (max-width: 768px) {
  .hero__headline { font-size: clamp(2.5rem, 12vw, 3.75rem); }
  .hero__kpis { grid-template-columns: repeat(2, 1fr); }
  .hero__kpi:nth-child(2) { border-right: 0; }
  .hero__kpi:nth-child(3),
  .hero__kpi:nth-child(4) { border-top: 1px solid rgba(14, 212, 254, 0.1); }
  .hero__kpi:nth-child(4) { border-right: 0; }
}

/* -------- HERO override -------- */
.hero__slides,
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__slides { z-index: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: var(--hero-image-filter);
  opacity: 0;
  transform: scale(1.04) translate3d(0, 0, 0);
  transform-origin: center center;
  will-change: opacity, transform;
  animation: hero-pan-soft 14s ease-in-out infinite alternate;
  transition: opacity 1.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__slide:nth-child(even) {
  animation-name: hero-pan-soft-alt;
}
.hero__slide.is-active {
  opacity: 1;
}
@keyframes hero-pan-soft {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-0.4%, -0.22%, 0);
  }
}
@keyframes hero-pan-soft-alt {
  from {
    transform: scale(1.03) translate3d(0.28%, 0.14%, 0);
  }
  to {
    transform: scale(1.08) translate3d(-0.18%, -0.12%, 0);
  }
}
.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 22%, rgba(184, 145, 79, 0.14) 0%, rgba(184, 145, 79, 0) 28%),
    linear-gradient(180deg, var(--hero-overlay-top) 0%, var(--hero-overlay-mid) 52%, var(--hero-overlay-bottom) 100%),
    linear-gradient(90deg, var(--hero-overlay-left) 0%, var(--hero-overlay-center) 44%, var(--hero-overlay-right) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 12vh, 9.5rem) clamp(3rem, 5vh, 4.5rem);
}
.hero__content {
  display: flex;
  flex-direction: column;
  max-width: 52rem;
}
.hero__headline {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #ffffff;
  opacity: 0;
  animation: fade-in-up 0.8s 0.12s cubic-bezier(0.2,0.8,0.2,1) forwards;
  margin: 0 0 1.5rem;
  max-width: 13ch;
}
.hero__sub {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
  color: rgba(247, 245, 240, 0.82);
  max-width: 62ch;
  margin-bottom: 2.1rem;
  opacity: 0;
  animation: fade-in-up 0.7s 0.28s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in-up 0.7s 0.42s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
.hero-kpis-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(0.75rem, 1.6vw, 1.15rem);
  background:
    linear-gradient(180deg, #06182c 0%, #04101f 58%, #020a14 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-kpis-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(14, 212, 254, 0.08) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 88px),
    linear-gradient(112deg, transparent 0%, transparent 32%, rgba(14, 212, 254, 0.12) 48%, rgba(184, 145, 79, 0.08) 56%, transparent 72%, transparent 100%);
  opacity: 0.62;
}
.hero-kpis-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(14, 212, 254, 0.18), rgba(184, 145, 79, 0.14), rgba(14, 212, 254, 0.04));
  opacity: 0.9;
}
.hero__kpis {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0;
  background: transparent;
  backdrop-filter: none;
}
.hero__kpi {
  padding: 1rem clamp(1rem, 2.5vw, 2.25rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero__kpi:first-child { padding-left: 0; }
.hero__kpi:last-child  { border-right: 0; }
.hero__kpi .num {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(14, 212, 254, 0.22);
}
.hero__kpi .label {
  color: rgba(247, 245, 240, 0.72);
}

@media (max-width: 1024px) {
  .hero__headline { max-width: 14ch; }
}
@media (max-width: 768px) {
  .hero {
    min-height: 75svh;
    min-height: 75vh;
  }
  .hero__inner { padding-block: 6.75rem 3rem; }
  .hero__headline {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
    max-width: 12ch;
  }
  .hero__sub { max-width: 34ch; }
  .hero__kpis { grid-template-columns: repeat(2, 1fr); }
  .hero__kpi:nth-child(2) { border-right: 0; }
  .hero__kpi:nth-child(3),
  .hero__kpi:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .hero__kpi:nth-child(4) { border-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__headline,
  .hero__sub,
  .hero__ctas {
    animation: none;
    transition: none;
  }
  .hero__slide {
    transform: none;
    opacity: 1;
  }
  .hero__slides .hero__slide:not(:first-child) {
    display: none;
  }
}

/* -------- Section base -------- */
.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}
.section--navy   { background: var(--c-navy);   color: var(--c-ivory); }
.section--ivory  { background: var(--c-ivory); }
.section--white  { background: var(--c-white); }
.section__head {
  max-width: var(--max-content);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--c-navy);
  margin-top: 1rem;
}
.section--navy .section__head h2 { color: var(--c-ivory); }
.section__head p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-slate);
  max-width: 58ch;
}
.section__head--center p {
  margin-inline: auto;
}
.section--navy .section__head p { color: rgba(247, 245, 240, 0.75); }

/* -------- Parceiros (marquee) -------- */
.partners {
  padding-block: clamp(2.75rem, 5vw, 4rem);
  border-top: 1px solid rgba(10, 35, 87, 0.08);
  border-bottom: 1px solid rgba(10, 35, 87, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(247, 245, 240, 0.96) 100%),
    var(--c-ivory);
  overflow: hidden;
}
.partners__label {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--c-navy);
  text-align: center;
  margin-bottom: 2rem;
}
.partners__ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.partners__track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: max-content;
  animation: partners-scroll 34s linear infinite;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partners__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(11.5rem, 17vw, 14rem);
  min-height: 5.9rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 1.35rem;
  box-shadow: 0 10px 24px rgba(10, 35, 87, 0.04);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.partners__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 35, 87, 0.06);
}
.partners__logo {
  width: 100%;
  height: 100%;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 2.9rem;
  object-fit: contain;
}
.partners__name {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--c-slate);
  text-align: center;
}

@media (max-width: 768px) {
  .partners__track {
    gap: 0.85rem;
    animation-duration: 28s;
  }
  .partners__item {
    min-width: 9.5rem;
    min-height: 5.1rem;
    padding: 0.9rem 1.05rem;
    border-radius: 1.1rem;
  }
  .partners__logo-image {
    max-height: 2.35rem;
  }
}

/* -------- Cards de segmento -------- */
.segments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}
@media (max-width: 900px) { .segments { grid-template-columns: 1fr; } }
.segment {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 245, 240, 0.98) 100%),
    var(--c-white);
  border: 1px solid rgba(10, 35, 87, 0.08);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10, 35, 87, 0.15);
  text-decoration: none;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.segment:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 212, 254, 0.28);
  box-shadow: 0 22px 46px rgba(10, 35, 87, 0.1);
}
.segment__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-navy);
  position: relative;
}
.segment__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 31, 0.04) 0%, rgba(4, 16, 31, 0.26) 100%);
}
.segment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out);
  filter: saturate(0.92) contrast(1.02);
}
.segment:hover .segment__media img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.05);
}
.segment__body {
  padding: clamp(1.5rem, 2.4vw, 2.15rem);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  flex: 1;
  align-items: center;
  text-align: center;
}
.segment__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.segment__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-navy);
}
.segment__desc {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-slate);
  max-width: 42ch;
}
.segment__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
  justify-content: center;
}
.segment__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 35, 87, 0.05);
  color: var(--c-navy);
  font-family: var(--ff-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .segments {
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .segment {
    border-radius: 0;
  }
  .segment__media {
    aspect-ratio: 4 / 3;
  }
  .segment__body {
    padding: 1.35rem;
  }
  .segment__title {
    max-width: none;
  }
}

/* -------- Grid de produtos -------- */
.products-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(14, 212, 254, 0.08) 0%, rgba(14, 212, 254, 0) 28%),
    radial-gradient(circle at left center, rgba(184, 145, 79, 0.07) 0%, rgba(184, 145, 79, 0) 24%),
    linear-gradient(180deg, #07101d 0%, #050a12 100%);
}
.products-section__head {
  max-width: 54rem;
}
.products-section .kicker {
  color: rgba(14, 212, 254, 0.9);
}
.products-section .section__head h2 {
  color: var(--c-ivory);
}
.products-section .section__head p {
  color: rgba(247, 245, 240, 0.72);
}
.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.products__item {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(18, 24, 34, 0.98) 0%, rgba(9, 13, 20, 1) 100%),
    #0b1119;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.products__item:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 212, 254, 0.28);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.36);
  background:
    linear-gradient(180deg, rgba(20, 27, 38, 1) 0%, rgba(10, 15, 23, 1) 100%),
    #0b1119;
}
.products__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 212, 254, 0.09);
  border: 1px solid rgba(14, 212, 254, 0.14);
}
.products__item svg { width: 32px; height: 32px; stroke: var(--c-blue); fill: none; stroke-width: 1.3; }
.products__item h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1.2;
  color: var(--c-ivory);
  letter-spacing: -0.02em;
}
.products__item p {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.7);
  flex: 1;
  max-width: 34ch;
}
.products__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}
.products__cta .btn--electric {
  box-shadow: 0 14px 28px rgba(14, 212, 254, 0.2);
}
@media (max-width: 1200px) {
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .products {
    grid-template-columns: 1fr;
  }
  .products__item {
    padding: 1.35rem;
  }
}

/* -------- Processo 4 passos -------- */
.process-section {
  background:
    radial-gradient(circle at top left, rgba(14, 212, 254, 0.06) 0%, rgba(14, 212, 254, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 245, 240, 1) 100%);
}
.process-section__head {
  max-width: 54rem;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 3.7rem;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14, 212, 254, 0.4) 15%, rgba(14, 212, 254, 0.4) 85%, transparent);
  opacity: 0.8;
  z-index: 0;
}
.process__step {
  position: relative;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 35, 87, 0.08);
  box-shadow: 0 18px 38px rgba(10, 35, 87, 0.04);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.process__step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(14, 212, 254, 0.24);
  box-shadow: 0 22px 42px rgba(10, 35, 87, 0.08);
}
.process__step:hover .process__num {
  background: var(--c-blue);
  color: var(--c-navy);
  box-shadow: 0 0 20px rgba(14, 212, 254, 0.24);
}
.process__num {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: rgba(14, 212, 254, 0.06);
  border: 1px solid rgba(14, 212, 254, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--c-blue);
  transition: all var(--dur-med) var(--ease-out);
}
.process__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--c-navy);
}
.process__desc {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-slate);
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 2rem; }
  .process::before { display: none; }
}

/* -------- Case destaque -------- */
.case {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.case__media { aspect-ratio: 4 / 5; overflow: hidden; }
.case__media img { width: 100%; height: 100%; object-fit: cover; }
.case__body { display: flex; flex-direction: column; gap: 1.25rem; }
.case__eyebrow { font-family: var(--ff-sans); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold); }
.case__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}
.case__text p { font-family: var(--ff-sans); font-size: 1.05rem; line-height: 1.7; color: var(--c-graphite); margin-block: 0.75rem; }
.case__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}
.case__stats .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--c-navy);
  font-variant-numeric: tabular-nums;
}
.case__stats .label { font-family: var(--ff-sans); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-slate); }
@media (max-width: 900px) { .case { grid-template-columns: 1fr; } }

/* -------- Depoimentos — Carrossel -------- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial {
  flex: 0 0 100%;
  background: rgba(247, 245, 240, 0.05);
  border: 1px solid rgba(247, 245, 240, 0.12);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
}
/* Giant quote mark */
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.2em;
  left: 1.5rem;
  font-family: var(--ff-display);
  font-size: 6rem;
  color: var(--c-blue);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}
.testimonial__text {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: rgba(247, 245, 240, 0.88);
  padding-top: 2rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  margin-top: auto;
}
.testimonial__photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(14, 212, 254, 0.3);
}
.testimonial__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.testimonial__name { font-family: var(--ff-sans); font-size: 0.9rem; font-weight: 600; color: var(--c-ivory); }
.testimonial__role { font-family: var(--ff-sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,245,240,0.45); }

/* Controles */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.carousel__dots { display: flex; gap: 0.5rem; }
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(247, 245, 240, 0.25);
  border: none; cursor: pointer;
  transition: width 0.3s var(--ease-out), background 0.3s var(--ease-out);
  padding: 0;
}
.carousel__dot.active { width: 28px; background: var(--c-blue); }
.carousel__arrows { display: flex; gap: 0.75rem; }
.carousel__prev,
.carousel__next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 240, 0.2);
  background: transparent;
  color: var(--c-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.carousel__prev:hover,
.carousel__next:hover { border-color: var(--c-blue); background: rgba(14, 212, 254, 0.1); }

/* -------- Blog preview -------- */
.preview-blog-section {
  background:
    radial-gradient(circle at top right, rgba(14, 212, 254, 0.05) 0%, rgba(14, 212, 254, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 245, 240, 1) 100%);
}
.preview-blog-section__head {
  max-width: 46rem;
}
.blog-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
.post-card { display: flex; flex-direction: column; gap: 1rem; text-decoration: none; color: inherit; }
.post-card--featured .post-card__media { aspect-ratio: 4 / 3; }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-navy); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.03); }
.post-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.post-card__meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.post-card__meta time { color: var(--c-slate); }
.post-card__title {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
  color: var(--c-navy);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.post-card--featured .post-card__title { font-size: clamp(1.5rem, 2.8vw, 2.125rem); font-weight: 500; }
.post-card__excerpt {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--c-slate);
}
.post-card--preview {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 35, 87, 0.08);
  box-shadow: 0 18px 38px rgba(10, 35, 87, 0.04);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
  padding: 1rem;
}
.post-card--preview:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 212, 254, 0.24);
  box-shadow: 0 22px 42px rgba(10, 35, 87, 0.08);
}
.post-card--preview .post-card__title {
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  font-weight: 600;
}
.preview-blog-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.preview-blog-section__empty {
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(10, 35, 87, 0.08);
  box-shadow: 0 16px 34px rgba(10, 35, 87, 0.04);
}
.preview-blog-section__empty p {
  margin: 0;
  color: var(--c-slate);
}
@media (max-width: 900px) {
  .blog-preview { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .post-card--preview {
    padding: 0.9rem;
  }
}

/* -------- CTA final -------- */
.cta-final-section {
  background:
    radial-gradient(circle at top right, rgba(14, 212, 254, 0.08) 0%, rgba(14, 212, 254, 0) 26%),
    linear-gradient(180deg, #07101d 0%, #050a12 100%);
}
.cta-final {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cta-final--simple {
  grid-template-columns: 1fr;
  justify-items: center;
}
.cta-final__text .kicker {
  color: rgba(14, 212, 254, 0.88);
}
.cta-final__text--center {
  max-width: 46rem;
  text-align: center;
}
.cta-final__text h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-ivory);
}
.cta-final__text p {
  font-size: 1.1rem;
  color: rgba(247, 245, 240, 0.75);
  margin-top: 1rem;
  max-width: 46ch;
}
.cta-final__button {
  width: fit-content;
  margin-top: 1.4rem;
}
@media (max-width: 900px) { .cta-final { grid-template-columns: 1fr; } }

/* -------- Rodapé -------- */
.site-footer { background: var(--c-graphite); color: rgba(247, 245, 240, 0.72); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer__top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 245, 240, 0.12);
}
.site-footer__column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.site-footer h4 {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 1.25rem;
  min-height: 1.2em;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--c-ivory);
  margin-bottom: 1rem;
}
.site-footer__brand--logo {
  gap: 0.9rem;
}
.site-footer__brand-name {
  display: inline-flex;
  align-items: center;
}
.site-footer__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.site-footer__brand-tagline {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.48);
}
.site-footer__logo-image {
  display: block;
  width: auto;
  max-height: 48px;
}
.site-footer__brand--logo::before { display: none; }
.site-footer__brand::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid var(--c-gold);
  transform: translateY(-2px);
}
.site-footer__brand .dot { display: none; }
.site-footer__mission {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 40ch;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer__contact-address {
  margin-top: 0.4rem;
  line-height: 1.6;
}
.site-footer ul a { color: rgba(247, 245, 240, 0.72); text-decoration: none; font-size: 0.925rem; transition: color var(--dur-fast) var(--ease-out); }
.site-footer ul a:hover { color: var(--c-gold); }
.site-footer__social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.2rem;
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.site-footer__social-link:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}
.site-footer__social-icon-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.site-footer__disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(247, 245, 240, 0.86);
}
.site-footer__notice {
  width: min(100%, 78rem);
  margin: 0 auto 2rem;
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: rgba(247, 245, 240, 0.86);
}
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__credits {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
}
.site-footer__credits-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(247, 245, 240, 0.5);
}
.site-footer__bottom .notice { max-width: 60ch; line-height: 1.55; }
.site-footer__social { display: flex; gap: 1rem; }
.site-footer__social ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-footer__social a { color: rgba(247, 245, 240, 0.65); }
@media (max-width: 1100px) {
  .site-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__column--brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__brand { font-size: 1.5rem; }
  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------- Botão WhatsApp flutuante -------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lifted);
  z-index: 40;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); background: #128C7E; }
.wa-float svg { width: 26px; height: 26px; }

/* -------- Barra de simulação mobile -------- */
.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  background: var(--c-navy);
  color: var(--c-ivory);
  padding: 0.9rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 45;
  transform: translateY(100%);
  transition: transform var(--dur-med) var(--ease-out);
  border-top: 1px solid rgba(247, 245, 240, 0.12);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta strong { font-family: var(--ff-display); font-weight: 400; font-size: 1rem; }
.mobile-cta a { padding: 0.6rem 1rem; background: var(--c-gold); color: var(--c-graphite); text-decoration: none; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 900px) { .mobile-cta { display: flex; } }

/* -------- Post single (blog) -------- */
.post-hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-ivory);
}
.post-hero .category {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.post-hero h1 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-navy);
  margin: 1.25rem 0;
  max-width: 22ch;
}
.post-hero .meta {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--c-slate);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.post-featured {
  margin-top: 2.5rem;
  width: min(100%, var(--max-content));
  margin-inline: auto;
  height: clamp(280px, 42vw, 520px);
  overflow: hidden;
}
.post-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.post-content { padding-block: clamp(3rem, 6vw, 5rem); }
.post-content .entry-content { max-width: var(--max-content); margin-inline: auto; }
.post-related { background: var(--c-ivory); padding-block: clamp(3rem, 5vw, 4rem); border-top: 1px solid var(--c-line); }

/* -------- Archive / listagem -------- */
.archive-hero {
  padding-block: clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid var(--c-line);
}
.archive-hero h1 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.025em;
  color: var(--c-navy);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 5rem);
}
@media (max-width: 900px) { .archive-grid { grid-template-columns: 1fr; } }

/* -------- Página interna: hero simples -------- */
.page-hero {
  padding-block: clamp(4rem, 9vw, 7rem) clamp(3rem, 5vw, 4rem);
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-line);
}
.page-hero--image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.62) 0%, rgba(5, 10, 18, 0.74) 100%),
    radial-gradient(circle at top right, rgba(14, 212, 254, 0.16) 0%, rgba(14, 212, 254, 0) 28%),
    var(--page-hero-image) center / cover no-repeat;
  border-bottom: 0;
}
.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.14) 0%, rgba(5, 10, 18, 0.2) 100%);
  pointer-events: none;
}
.page-hero--image .container {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.page-hero .eyebrow::before { content: ""; width: 2.5rem; height: 1px; background: var(--c-gold); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-navy);
  margin: 1.25rem 0;
  max-width: 22ch;
}
.page-hero p { font-size: 1.125rem; line-height: 1.6; color: var(--c-slate); max-width: 58ch; }
.page-hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-hero.page-hero--image .eyebrow {
  color: rgba(14, 212, 254, 0.92);
}
.page-hero.page-hero--image .eyebrow::before {
  background: rgba(14, 212, 254, 0.92);
}
.page-hero.page-hero--image h1 {
  color: var(--c-ivory);
}
.page-hero.page-hero--image p {
  color: rgba(247, 245, 240, 0.84);
}

/* -------- Quem somos -------- */
.about-hero {
  background:
    radial-gradient(circle at top right, rgba(14, 212, 254, 0.08) 0%, rgba(14, 212, 254, 0) 30%),
    linear-gradient(180deg, #f8f5ee 0%, #f3eee5 100%);
}
.about-hero--image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.62) 0%, rgba(5, 10, 18, 0.74) 100%),
    radial-gradient(circle at top right, rgba(14, 212, 254, 0.16) 0%, rgba(14, 212, 254, 0) 28%),
    var(--about-hero-image) center / cover no-repeat;
  border-bottom: 0;
}
.about-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.12) 0%, rgba(5, 10, 18, 0.18) 100%);
  pointer-events: none;
}
.about-hero--image .container {
  position: relative;
  z-index: 1;
}
.about-hero.about-hero--image .eyebrow {
  color: rgba(14, 212, 254, 0.92);
}
.about-hero.about-hero--image .eyebrow::before {
  background: rgba(14, 212, 254, 0.92);
}
.about-hero.about-hero--image h1 {
  color: var(--c-ivory);
}
.about-hero.about-hero--image p {
  color: rgba(247, 245, 240, 0.84);
}
.about-hero .eyebrow,
.about-story__eyebrow {
  color: var(--c-blue);
}
.about-hero .eyebrow::before {
  background: var(--c-blue);
}
.about-hero h1 {
  max-width: 14ch;
}
.about-hero p {
  max-width: 64ch;
}
.about-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.about-hero__fact {
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(10, 31, 56, 0.08);
  box-shadow: 0 18px 40px rgba(10, 31, 56, 0.06);
  backdrop-filter: blur(10px);
}
.about-hero__fact strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}
.about-hero__fact span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.925rem;
  line-height: 1.5;
  color: var(--c-slate);
}
.about-story__media {
  box-shadow: var(--shadow-soft);
}
.about-story__stats {
  margin-top: 1.5rem;
}
.about-pillars-section__head {
  max-width: 52rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.about-pillars__item {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 238, 0.98) 100%);
  border: 1px solid rgba(10, 31, 56, 0.08);
  box-shadow: 0 20px 48px rgba(10, 31, 56, 0.06);
}
.about-pillars__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.5rem 0.8rem;
  background: rgba(14, 212, 254, 0.08);
  color: var(--c-blue);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.about-pillars__item h3 {
  margin: 1.4rem 0 0.9rem;
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}
.about-pillars__item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-graphite);
}
.about-governance {
  background:
    radial-gradient(circle at top left, rgba(14, 212, 254, 0.1) 0%, rgba(14, 212, 254, 0) 26%),
    linear-gradient(180deg, #08111d 0%, #050b14 100%);
}
.about-governance__head {
  max-width: 54rem;
}
.about-governance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.about-governance__item {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(247, 245, 240, 0.09);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}
.about-governance__item h3 {
  margin: 0 0 0.9rem;
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-ivory);
}
.about-governance__item p {
  margin: 0;
  color: rgba(247, 245, 240, 0.72);
  font-size: 0.98rem;
  line-height: 1.68;
}
.about-governance__item a {
  color: var(--c-blue);
}

@media (max-width: 900px) {
  .about-hero__facts,
  .about-pillars,
  .about-governance__grid {
    grid-template-columns: 1fr;
  }
}

/* -------- Produto detalhado (PJ/MC) -------- */
.product {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--c-line);
}
.product:last-child { border-bottom: 0; }
.product__meta { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 100px; align-self: start; }
.product__meta .eyebrow { color: var(--c-gold); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; }
.product__meta h2 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--c-navy); }
.product__meta .specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line); }
.product__meta .spec-label { font-family: var(--ff-sans); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-slate); }
.product__meta .spec-value { font-family: var(--ff-display); font-size: 1.25rem; color: var(--c-navy); }
.product__visual {
  margin-top: 0.25rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.product__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__body p { font-size: 1.05rem; line-height: 1.7; color: var(--c-graphite); margin-block: 0.75rem; }
.product__body h3 { font-family: var(--ff-display); font-weight: 400; font-size: 1.375rem; color: var(--c-navy); margin-top: 2rem; margin-bottom: 0.6rem; }
.product__body ul { padding-left: 1.25rem; font-size: 1rem; line-height: 1.7; }
.product__body ul li::marker { color: var(--c-gold); }
.product__cta {
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; }
  .product__meta { position: static; }
  .page-hero__actions { flex-direction: column; align-items: flex-start; }
}
