/* Estilos incorporados originalmente em index.html */
:root {
  --ink: #132524;
  --paper: #F7F4EC;
  --paper-2: #EFE9D8;
  --deep: #0B2E31;
  --deep-2: #0E3A3D;
  --teal: #1F9E8E;
  --teal-soft: #2CB4A3;
  --teal-dim: rgba(31, 158, 142, 0.14);
  --amber: #E8A431;
  --amber-deep: #C46A1A;
  --line: rgba(19, 37, 36, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --gray: #5B6E6C;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  text-wrap: balance;
  margin: 0
}

p {
  line-height: 1.75;
  margin: 0
}

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

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

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 24px
}

@media(min-width:1024px) {
  .wrap {
    padding-inline: 48px
  }
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 11px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform .25s ease, box-shadow .25s ease, background-position .4s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(96deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #1D1204;
  box-shadow: 0 10px 26px rgba(196, 106, 26, 0.32);
  background-size: 140% 140%;
  background-position: 0% 50%;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(196, 106, 26, 0.46);
  background-position: 100% 50%
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1)
}

/* ---------- Hex motif ---------- */
.hexfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.site-header .bar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.brandmark {
  display: flex;
  align-items: center
}

.brandmark img {
  height: 52px;
  width: auto
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.87rem;
  font-weight: 500
}

.main-nav a {
  position: relative;
  opacity: 0.72;
  transition: opacity .2s ease;
  padding-bottom: 4px
}

.main-nav a:hover {
  opacity: 1
}

.main-nav a.active {
  opacity: 1;
  color: var(--amber-deep)
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--amber-deep);
  border-radius: 2px
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px
}

.header-cta .btn {
  padding: 11px 22px;
  font-size: 0.85rem
}

@media(max-width:900px) {
  .main-nav {
    display: none
  }
}

section {
  position: relative
}

.band-deep {
  background: var(--deep);
  color: #fff
}

.band-deep2 {
  background: var(--deep-2);
  color: #fff
}

.band-paper {
  background: var(--paper)
}

.pad {
  padding: 72px 0
}

@media(max-width:760px) {
  .pad {
    padding: 48px 0
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 80% 20%, #12514F 0%, var(--deep-2) 45%, var(--deep) 100%);
  color: #fff;
  padding: 72px 0;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 384px
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch
}

@media(max-width:960px) {
  .hero-grid {
    grid-template-columns: 1fr
  }
}

.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-soft);
  margin-bottom: 20px
}

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em
}

.hero h1 .accent {
  background: linear-gradient(96deg, var(--amber), #F4C567 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero .sub {
  margin-top: 28px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px
}

.hero .sub strong {
  display: block;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--amber)
}

.hero .actions {
  margin-top: 28px
}

.hero-art {
  position: relative
}

.hero-art .glow {
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle at 50% 50%, rgba(31, 158, 142, 0.4), transparent 70%);
  filter: blur(6px);
  z-index: 0
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.5))
}

@media(max-width:960px) {
  .hero {
    padding: 64px 0
  }

  .hero-grid {
    min-height: 0
  }

  .hero-copy {
    align-items: center;
    text-align: center
  }

  .hero .sub {
    margin-inline: auto
  }
}

/* ---------- Desafio cards ---------- */
.section-head {
  text-align: center;
  margin-bottom: 34px
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700
}

.section-head p {
  margin-top: 14px;
  color: var(--gray);
  max-width: 560px;
  margin-inline: auto
}

.challenge-section {
  position: relative;
  overflow: hidden
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: end
}

@media(max-width:900px) {
  .challenge-grid {
    grid-template-columns: 1fr
  }
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.challenge-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 16px 34px rgba(31, 158, 142, 0.14)
}

.challenge-card .ic {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--teal-dim);
  color: var(--amber-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-card .ic svg {
  width: 18px;
  height: 18px
}

.challenge-card h3 {
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 3px
}

.challenge-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5
}

.challenge-art {
  position: relative;
  height: 100%;
  min-height: 280px
}

.challenge-art img {
  position: absolute;
  bottom: -72px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 400px;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: none;
  mix-blend-mode: multiply;
  display: block;
}

@media(max-width:900px) {
  .challenge-art {
    height: auto;
    margin-top: 20px
  }

  .challenge-art img {
    position: static;
    transform: none;
    margin-inline: auto
  }
}

/* ---------- Módulos (solução) ---------- */
.modules-wrap {
  position: relative;
  z-index: 1
}

#solucao>.hexfield svg {
  opacity: 0.25 !important
}

#solucao {
  overflow: hidden
}

#solucao>.hexfield--right {
  right: 0;
  left: auto;
  width: 360px
}

#solucao>.hexfield--right svg {
  position: absolute;
  right: -6%;
  bottom: -8%;
  transform: scaleX(-1)
}

@media (max-width: 760px) {
  #solucao>.hexfield svg {
    opacity: 0.08 !important
  }
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1
}

@media(max-width:860px) {
  .modules-grid {
    grid-template-columns: 1fr
  }
}

.module-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 36px 32px;
  min-height: 260px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-soft);
  box-shadow: 0 18px 40px rgba(31, 158, 142, 0.22)
}

.module-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center
}

.module-card h3 {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em
}

.module-card p {
  margin-top: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72)
}

/* ---------- 3 passos ---------- */
.steps-section {
  padding-bottom: 45px
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 28px;
  max-width: 1040px;
  margin-inline: auto
}

@media(max-width:760px) {
  .steps-grid {
    grid-template-columns: 1fr
  }
}

.step-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  transition: transform .25s ease
}

.step-card:hover {
  transform: translateY(-4px)
}

.step-card .step-img {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  position: relative;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .8s ease-out, transform .8s cubic-bezier(.22, 1, .36, 1)
}

.steps-grid .step-card[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none
}

.step-card.is-visible .step-img {
  opacity: 1;
  transform: translateY(0)
}

.step-card:nth-child(2) .step-img {
  transition-delay: .4s
}

.step-card:nth-child(3) .step-img {
  transition-delay: .8s
}

.step-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply
}

.step-card .step-text {
  text-align: center;
  margin-top: 14px;
  padding-inline: 8px
}

.step-card .step-text h4 {
  font-size: 0.98rem;
  font-weight: 600
}

.step-card .step-text p {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--gray)
}

/* ---------- Catálogo grid ---------- */
.catalog-section {
  overflow: hidden
}

.catalog-section>.wrap {
  position: relative;
  z-index: 1
}

.catalog-hexes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0
}

.catalog-hex {
  position: absolute;
  opacity: 0.25
}

@media (max-width: 760px) {
  .catalog-hex {
    opacity: 0.08
  }
}

.catalog-hex--left-top {
  top: 5%;
  left: -2%;
  transform: rotate(-8deg)
}

.catalog-hex--right-top {
  top: 20%;
  right: -3%;
  transform: scaleX(-1) rotate(7deg)
}

.catalog-hex--left-bottom {
  bottom: 12%;
  left: -3%;
  transform: scale(.82) rotate(12deg)
}

.catalog-hex--right-bottom {
  right: -2%;
  bottom: -3%;
  transform: scale(-.9, .9) rotate(-10deg)
}

.catalog-head p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 22px;
  row-gap: 48px;
  margin-top: 44px;
  perspective: 1200px
}

@media(max-width:760px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.prod-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 12px;
  transition: transform .3s ease
}

.prod-card:hover {
  transform: translateY(-4px)
}

.prod-thumb {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 11px;
  background: #fff;
  overflow: visible;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  animation: product-float-3d 7s ease-in-out infinite
}

.prod-card:nth-child(2n) .prod-thumb {
  --float-x: 3px;
  --float-rotate: -1.6deg;
  animation-delay: -1.75s
}

.prod-card:nth-child(3n) .prod-thumb {
  --float-x: -3px;
  --float-rotate: 1.8deg;
  animation-delay: -3.5s
}

.prod-card:nth-child(4n) .prod-thumb {
  --float-x: 2px;
  --float-rotate: -1.2deg;
  animation-delay: -5.25s
}

@keyframes product-float-3d {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0)
  }

  50% {
    transform: translate3d(var(--float-x, -2px), -12px, 18px) rotateX(1.4deg) rotateY(var(--float-rotate, 1.5deg))
  }
}

.prod-thumb img {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 82%;
  max-height: 92%;
  object-fit: contain;
  transform: translateX(-50%) scale(1.28);
  transform-origin: bottom center;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.38));
  transition: transform .35s ease, filter .35s ease;
}

.prod-card:hover .prod-thumb img {
  transform: translateX(-50%) scale(1.36) rotate(-2deg);
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.45))
}

.prod-card .cat {
  margin-top: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5)
}

.prod-card .price {
  margin-top: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--amber)
}

.cta-banner {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: rgba(232, 164, 49, 0.12);
  border: 1px solid var(--amber);
  border-radius: 18px;
  padding: 32px 34px;
}

.cta-banner p {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  max-width: 480px
}

/* ---------- Depoimentos ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

@media(max-width:860px) {
  .testi-grid {
    grid-template-columns: 1fr
  }
}

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 18px 34px rgba(31, 158, 142, 0.12)
}

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

.testi-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex: none;
  padding: 2px;
  background: linear-gradient(45deg, var(--amber), var(--teal))
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff
}

.testi-name {
  font-weight: 700;
  font-size: 0.92rem
}

.testi-role {
  font-size: 0.78rem;
  color: var(--gray)
}

.stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
  color: var(--amber)
}

.testi-quote {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.65
}

/* ---------- CTA final ---------- */
.final-cta {
  background: var(--deep);
  color: #fff;
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden
}

.final-cta .eyebrow {
  color: var(--teal-soft)
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-top: 16px
}

.final-cta p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-inline: auto
}

.final-cta .actions {
  margin-top: 36px
}

footer {
  background: #082224;
  color: rgba(255, 255, 255, 0.62);
  padding: 64px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px
}

@media(max-width:760px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.footer-brand p:first-child {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff
}

.footer-brand p:last-child {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.6
}

.footer-col p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4)
}

.footer-col ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col a {
  font-size: 0.85rem;
  color: #fff;
  transition: color .2s ease
}

.footer-col a:hover {
  color: var(--teal-soft)
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px
}

.footer-social a {
  color: #fff;
  transition: color .2s ease
}

.footer-social a:hover {
  color: var(--amber)
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4)
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none
}

.challenge-art[data-reveal] {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity .9s ease-out, transform .9s cubic-bezier(.22, 1, .36, 1);
}

.challenge-art[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0)
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  [data-reveal],
  .challenge-art[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none
  }

  .step-card .step-img {
    opacity: 1;
    transform: none;
    transition: none
  }

  .prod-thumb {
    animation: none;
    transform: none
  }
}

/* Fonte original: css/brand-system.css */
/*
 * Colmy — sistema visual compartilhado
 * Fonte da verdade: identidade aprovada na home (index.html).
 */

:root {
  --hero-title-size: clamp(2rem, 4.4vw, 3rem);
  --ink: #132524;
  --paper: #f7f4ec;
  --paper-2: #efe9d8;
  --deep: #0b2e31;
  --deep-2: #0e3a3d;
  --teal: #1f9e8e;
  --teal-soft: #2cb4a3;
  --teal-dim: rgba(31, 158, 142, 0.14);
  --amber: #e8a431;
  --amber-deep: #c46a1a;
  --amber-soft: #f4c567;
  --line: rgba(19, 37, 36, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --gray: #5b6e6c;
  --footer: #082224;
  --hero-glow: #12514f;
  --on-accent: #1d1204;
  --surface: #ffffff;
  --focus: #2cb4a3;

  /* Compatibilidade com o tema legado das páginas internas. */
  --background: var(--paper);
  --foreground: var(--ink);
  --card: var(--surface);
  --card-foreground: var(--ink);
  --popover: var(--surface);
  --popover-foreground: var(--ink);
  --primary: var(--deep);
  --primary-foreground: #ffffff;
  --secondary: var(--paper-2);
  --secondary-foreground: var(--ink);
  --muted: var(--paper-2);
  --muted-foreground: var(--gray);
  --accent: var(--teal-dim);
  --accent-foreground: var(--deep);
  --border: #d9d3c6;
  --input: #d9d3c6;
  --ring: var(--focus);
  --hub-navy: var(--deep);
  --hub-navy-deep: var(--footer);
  --hub-off: var(--paper);
  --hub-coral: var(--amber-deep);
  --hub-yellow: var(--amber);
  --hub-blue: var(--teal-soft);
  --hub-gray: var(--gray);
  --hub-border: #d9d3c6;
  --font-sans: "Sora", ui-sans-serif, system-ui, sans-serif;
  --default-font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  --default-mono-font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

:where(.brand-home, .brand-page, .brand-campaign) {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ícones — Material Symbols (Google), traço fino, peso 300. */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}

/* --------------------------------------------------------------------------
   Assinatura de marca — textura de favo de mel (Colmy)

   Substitui a grade quadriculada genérica usada como textura de fundo.
   Hexágonos grandes de contorno fino (0.75px) com stroke em gradiente
   (diagonal, esmaece nas pontas), remetendo à colmeia do nome Colmy.
   Alguns gomos são omitidos de forma pseudo-aleatória (mas determinística)
   dentro de um super-tile de 408×176.67px — o tile ainda se repete sem
   emenda visível (validado matematicamente: a grade contínua produzida
   pela repetição é idêntica a uma colmeia nativa sem cortes de tile).
   Duas variantes de cor: clara (gradiente branco/teal, para fundos
   escuros) e escura (gradiente navy/teal, para fundos claros).
   Uso: <div class="absolute inset-0 hex-pattern"></div> dentro de uma
   seção com position:relative.
   -------------------------------------------------------------------------- */

.hex-pattern,
.hex-pattern-dark {
  background-repeat: repeat;
  background-size: 408px 176.67px;
  pointer-events: none;
}

.hex-pattern {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='408.00' height='176.67' viewBox='0 0 408.00 176.67'><defs><linearGradient id='hexGL' x1='0%25' y1='0%25' x2='100%25' y2='100%25'><stop offset='0%25' stop-color='%23ffffff' stop-opacity='0.85'/><stop offset='55%25' stop-color='%232CB4A3' stop-opacity='0.5'/><stop offset='100%25' stop-color='%23ffffff' stop-opacity='0.12'/></linearGradient></defs><g fill='none' stroke='url(%23hexGL)' stroke-width='0.75'><polygon points='34,0 17,29.44 -17,29.44 -34,0 -17,-29.44 17,-29.44'/><polygon points='136,0 119,29.44 85,29.44 68,0 85,-29.44 119,-29.44'/><polygon points='238,0 221,29.44 187,29.44 170,0 187,-29.44 221,-29.44'/><polygon points='340,0 323,29.44 289,29.44 272,0 289,-29.44 323,-29.44'/><polygon points='442,0 425,29.44 391,29.44 374,0 391,-29.44 425,-29.44'/><polygon points='85,29.44 68,58.89 34,58.89 17,29.44 34,0 68,0'/><polygon points='289,29.44 272,58.89 238,58.89 221,29.44 238,0 272,0'/><polygon points='391,29.44 374,58.89 340,58.89 323,29.44 340,0 374,0'/><polygon points='34,58.89 17,88.33 -17,88.33 -34,58.89 -17,29.44 17,29.44'/><polygon points='136,58.89 119,88.33 85,88.33 68,58.89 85,29.44 119,29.44'/><polygon points='238,58.89 221,88.33 187,88.33 170,58.89 187,29.44 221,29.44'/><polygon points='340,58.89 323,88.33 289,88.33 272,58.89 289,29.44 323,29.44'/><polygon points='442,58.89 425,88.33 391,88.33 374,58.89 391,29.44 425,29.44'/><polygon points='85,88.33 68,117.78 34,117.78 17,88.33 34,58.89 68,58.89'/><polygon points='34,117.78 17,147.22 -17,147.22 -34,117.78 -17,88.33 17,88.33'/><polygon points='136,117.78 119,147.22 85,147.22 68,117.78 85,88.33 119,88.33'/><polygon points='238,117.78 221,147.22 187,147.22 170,117.78 187,88.33 221,88.33'/><polygon points='442,117.78 425,147.22 391,147.22 374,117.78 391,88.33 425,88.33'/><polygon points='85,147.22 68,176.67 34,176.67 17,147.22 34,117.78 68,117.78'/><polygon points='187,147.22 170,176.67 136,176.67 119,147.22 136,117.78 170,117.78'/><polygon points='289,147.22 272,176.67 238,176.67 221,147.22 238,117.78 272,117.78'/><polygon points='391,147.22 374,176.67 340,176.67 323,147.22 340,117.78 374,117.78'/><polygon points='34,176.67 17,206.11 -17,206.11 -34,176.67 -17,147.22 17,147.22'/><polygon points='136,176.67 119,206.11 85,206.11 68,176.67 85,147.22 119,147.22'/><polygon points='238,176.67 221,206.11 187,206.11 170,176.67 187,147.22 221,147.22'/></g></svg>");
}

.hex-pattern-dark {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='408.00' height='176.67' viewBox='0 0 408.00 176.67'><defs><linearGradient id='hexGD' x1='0%25' y1='0%25' x2='100%25' y2='100%25'><stop offset='0%25' stop-color='%230B2E31' stop-opacity='0.8'/><stop offset='55%25' stop-color='%231F9E8E' stop-opacity='0.45'/><stop offset='100%25' stop-color='%230B2E31' stop-opacity='0.1'/></linearGradient></defs><g fill='none' stroke='url(%23hexGD)' stroke-width='0.75'><polygon points='34,0 17,29.44 -17,29.44 -34,0 -17,-29.44 17,-29.44'/><polygon points='136,0 119,29.44 85,29.44 68,0 85,-29.44 119,-29.44'/><polygon points='238,0 221,29.44 187,29.44 170,0 187,-29.44 221,-29.44'/><polygon points='340,0 323,29.44 289,29.44 272,0 289,-29.44 323,-29.44'/><polygon points='442,0 425,29.44 391,29.44 374,0 391,-29.44 425,-29.44'/><polygon points='85,29.44 68,58.89 34,58.89 17,29.44 34,0 68,0'/><polygon points='289,29.44 272,58.89 238,58.89 221,29.44 238,0 272,0'/><polygon points='391,29.44 374,58.89 340,58.89 323,29.44 340,0 374,0'/><polygon points='34,58.89 17,88.33 -17,88.33 -34,58.89 -17,29.44 17,29.44'/><polygon points='136,58.89 119,88.33 85,88.33 68,58.89 85,29.44 119,29.44'/><polygon points='238,58.89 221,88.33 187,88.33 170,58.89 187,29.44 221,29.44'/><polygon points='340,58.89 323,88.33 289,88.33 272,58.89 289,29.44 323,29.44'/><polygon points='442,58.89 425,88.33 391,88.33 374,58.89 391,29.44 425,29.44'/><polygon points='85,88.33 68,117.78 34,117.78 17,88.33 34,58.89 68,58.89'/><polygon points='34,117.78 17,147.22 -17,147.22 -34,117.78 -17,88.33 17,88.33'/><polygon points='136,117.78 119,147.22 85,147.22 68,117.78 85,88.33 119,88.33'/><polygon points='238,117.78 221,147.22 187,147.22 170,117.78 187,88.33 221,88.33'/><polygon points='442,117.78 425,147.22 391,147.22 374,117.78 391,88.33 425,88.33'/><polygon points='85,147.22 68,176.67 34,176.67 17,147.22 34,117.78 68,117.78'/><polygon points='187,147.22 170,176.67 136,176.67 119,147.22 136,117.78 170,117.78'/><polygon points='289,147.22 272,176.67 238,176.67 221,147.22 238,117.78 272,117.78'/><polygon points='391,147.22 374,176.67 340,176.67 323,147.22 340,117.78 374,117.78'/><polygon points='34,176.67 17,206.11 -17,206.11 -34,176.67 -17,147.22 17,147.22'/><polygon points='136,176.67 119,206.11 85,206.11 68,176.67 85,147.22 119,147.22'/><polygon points='238,176.67 221,206.11 187,206.11 170,176.67 187,147.22 221,147.22'/></g></svg>");
}

:where(.brand-home, .brand-page, .brand-campaign) :is(h1, h2, h3, h4, h5, h6, .display, .font-mono, .eyebrow, .btn) {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

:where(.brand-home, .brand-page, .brand-campaign) :is(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

:where(.brand-home, .brand-page, .brand-campaign) :is(a, button) {
  -webkit-tap-highlight-color: transparent;
}

/* Ajustes de contraste e acessibilidade também aplicados à home. */
.brand-home .main-nav a.active {
  color: var(--ink);
}

.brand-home .prod-card .cat {
  color: rgba(255, 255, 255, 0.74);
}

.brand-home .footer-col>p,
.brand-home .footer-bottom {
  color: rgba(255, 255, 255, 0.66);
}

/* Hero da Home: menos respiro vertical e arte avançando sobre a próxima faixa. */
.brand-home .hero {
  padding: clamp(38px, 4.25vw, 50px) 0 clamp(15px, 1.7vw, 24px);
  overflow: visible;
  position: relative;
  z-index: 3;
}

.brand-home .hero-grid {
  gap: clamp(2px, 4vw, 44px);
}

.brand-home .hero .kicker {
  margin-bottom: 14px;
}

.brand-home .hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.04;
}

.brand-home .hero .sub {
  margin-top: 24px;
  max-width: 440px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.brand-home .hero .sub strong {
  margin-top: 7px;
  font-size: 0.86rem;
}

.brand-home .hero .actions {
  margin-top: 24px;
}

.brand-home .hero .actions .btn {
  min-height: 44px;
  padding: 11px 22px;
  font-size: 0.88rem;
}

.brand-home .hero-art {
  position: relative;
  z-index: 4;
}

.brand-home .hero-art img {
  --hero-art-offset: clamp(28px, 4vw, 54px);
  transform: translate3d(0, var(--hero-art-offset), 0);
  animation: hero-gentle-float 5.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-gentle-float {

  0%,
  100% {
    transform: translate3d(0, var(--hero-art-offset), 0);
  }

  50% {
    transform: translate3d(0, calc(var(--hero-art-offset) - 10px), 0);
  }
}

.brand-home .challenge-section {
  position: relative;
  z-index: 1;
}

@media (min-width: 961px) {
  .brand-home .hero {
    margin-bottom: 0;
    background: transparent;
    isolation: isolate;
  }

  /* Encurta apenas a faixa verde; o bloco da seção continua ocupando seu
     espaço normal para que o conteúdo abaixo não suba. */
  .brand-home .hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: calc(100% - clamp(120px, 8vw, 154px));
    background: radial-gradient(120% 130% at 80% 20%, #12514F 0%, var(--deep-2) 45%, var(--deep) 100%);
    pointer-events: none;
    z-index: 0;
  }

  .brand-home .hero>.hexfield {
    z-index: 1;
  }

  /* Centraliza o conjunto de texto dentro da faixa verde, sem mover a arte. */
  .brand-home .hero-grid> :first-child {
    transform: translateY(clamp(-88px, -5vw, -48px));
  }

  .brand-home .challenge-section {
    padding-top: clamp(112px, 7vw, 136px);
  }

  .brand-home .challenge-art img {
    bottom: 5px;
  }

  .brand-home .challenge-section .card-stack {
    gap: clamp(16px, 1.25vw, 22px);
    padding-bottom: clamp(24px, 2.5vw, 40px);
  }
}

@media (max-width: 960px) {
  .brand-home .hero {
    padding: 41px 0 31px;
    overflow: hidden;
    z-index: auto;
  }

  .brand-home .hero-art {
    z-index: 1;
  }

  .brand-home .hero-art img {
    --hero-art-offset: 0px;
    transform: none;
  }

  .brand-home .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .brand-home .hero .sub {
    font-size: 0.92rem;
  }
}

@media (min-width: 961px) and (prefers-reduced-motion: reduce) {
  .brand-home .hero-art img {
    animation: none !important;
    transform: translate3d(0, clamp(28px, 4vw, 54px), 0) !important;
  }
}

@media (max-width: 960px) and (prefers-reduced-motion: reduce) {
  .brand-home .hero-art img {
    animation: none !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Páginas institucionais e de produto
   -------------------------------------------------------------------------- */

.brand-page {
  background: var(--paper);
  color: var(--ink);
}

.brand-page .bg-background,
.brand-page .bg-hub-bg,
.brand-page .bg-hub-off {
  background-color: var(--paper) !important;
}

.brand-page .bg-hub-navy {
  background-color: var(--deep) !important;
}

.brand-page .bg-hub-border {
  background-color: #d9d3c6 !important;
}

.brand-page .bg-\[\#EFE9D8\] {
  background-color: var(--paper-2) !important;
}

.brand-page .text-hub-navy,
.brand-page .text-foreground {
  color: var(--ink);
}

.brand-page .text-hub-coral {
  color: var(--amber-deep);
}

.brand-page .text-hub-blue {
  color: var(--teal-soft);
}

.brand-page .text-hub-gray,
.brand-page .text-muted-foreground {
  color: var(--gray);
}

.brand-page .text-\[\#5B6E6C\] {
  color: var(--gray) !important;
}

.brand-page .border-hub-border,
.brand-page .border-border {
  border-color: #d9d3c6;
}

.brand-page .border-hub-coral {
  border-color: var(--amber-deep);
}

.brand-page header[data-header="true"] {
  height: 78px;
  background: rgba(247, 244, 236, 0.94) !important;
  border-color: var(--line) !important;
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.brand-page header[data-header="true"]>div:first-child {
  height: 78px;
}

.brand-page .colmy-brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand-page .colmy-brand img {
  width: auto;
  height: 44px;
}

.brand-page header[data-header="true"] nav {
  gap: 30px;
  color: var(--ink);
  font-size: 0.87rem;
}

.brand-page header[data-header="true"] nav a {
  opacity: 0.72;
  padding-bottom: 4px;
}

.brand-page header[data-header="true"] nav a:hover,
.brand-page header[data-header="true"] nav a.text-hub-coral {
  color: var(--ink);
  opacity: 1;
}

.brand-page header[data-header="true"] nav a.text-hub-coral::after {
  background: var(--amber-deep);
}

.brand-page header[data-header="true"] a[href="#cta"] {
  border: 2px solid transparent !important;
  border-radius: 11px;
  background: linear-gradient(96deg, var(--amber), var(--amber-deep));
  color: var(--on-accent) !important;
  box-shadow: 0 8px 22px rgba(196, 106, 26, 0.24);
}

.brand-page header[data-header="true"] a[href="#cta"]:hover {
  box-shadow: 0 12px 28px rgba(196, 106, 26, 0.36);
}

.brand-page header[data-header="true"] button[data-menu-btn="true"] {
  min-width: 44px;
  min-height: 44px;
  color: var(--ink);
}

.brand-page header[data-header="true"] [data-menu-panel="true"] {
  top: 78px;
  background: var(--paper) !important;
  border-color: var(--line);
}

.brand-page:not(.page-camp) main>section:first-child,
.brand-page:not(.page-camp) main>div>section:first-child {
  background: radial-gradient(120% 130% at 80% 20%,
      var(--hero-glow) 0%,
      var(--deep-2) 45%,
      var(--deep) 100%) !important;
  color: #ffffff;
}

.brand-page:not(.page-camp) main>section:first-child h1,
.brand-page:not(.page-camp) main>div>section:first-child h1 {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

.brand-page:not(.page-camp) main>section:first-child h1[style*="background"],
.brand-page:not(.page-camp) main>div>section:first-child h1[style*="background"] {
  background-image: linear-gradient(96deg, var(--amber), var(--amber-soft)) !important;
}

.brand-page :is(section, div).bg-hub-navy {
  color: #ffffff;
}

.brand-page :is(a, button)[style*="linear-gradient(90deg"],
.brand-page :is(a, button)[style*="background-image:linear-gradient"],
.brand-page :is(a, button)[style*="background:#C46A1A"],
.brand-page :is(a, button)[style*="background:#2CB4A3"],
.brand-page :is(a, button).bg-hub-coral {
  border-color: transparent !important;
  background: linear-gradient(96deg, var(--amber), var(--amber-deep)) !important;
  color: var(--on-accent) !important;
  box-shadow: 0 10px 26px rgba(196, 106, 26, 0.28);
}

.brand-page :is(a, button)[style*="linear-gradient(90deg"]:hover,
.brand-page :is(a, button)[style*="background-image:linear-gradient"]:hover,
.brand-page :is(a, button).bg-hub-coral:hover {
  box-shadow: 0 14px 34px rgba(196, 106, 26, 0.4);
}

.brand-page :is(a, button).bg-\[\#DC2626\] {
  background: linear-gradient(96deg, var(--amber), var(--amber-deep)) !important;
  color: var(--on-accent) !important;
  box-shadow: 0 10px 26px rgba(196, 106, 26, 0.28);
}

.brand-page :is(a, button)[class*="border-hub-coral"]:not([href="#cta"]) {
  border-color: var(--amber-deep) !important;
  color: var(--amber-deep) !important;
}

.brand-page :is(input, select, textarea) {
  border-color: #d9d3c6;
  background: #ffffff;
  color: var(--ink);
}

.brand-page :is(input, select, textarea)::placeholder {
  color: #73827f;
}

.brand-page :is(input, select, textarea):focus {
  border-color: var(--amber-deep) !important;
  box-shadow: 0 0 0 3px rgba(196, 106, 26, 0.16) !important;
}

.brand-page .page-camp-card,
.brand-page.page-camp main a.block {
  background: #ffffff;
  border-color: #d9d3c6;
}

.brand-page.page-camp main a.block:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 30px rgba(31, 158, 142, 0.12);
}

.brand-page.page-sobre [style*="linear-gradient(45deg, #f09433"] {
  background: linear-gradient(45deg, var(--amber), var(--teal)) !important;
}

.brand-page footer {
  background: var(--footer) !important;
  color: rgba(255, 255, 255, 0.72);
}

.brand-page footer .footer-brand-name {
  color: #ffffff;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

.brand-page footer p.text-\[\#9CA3AF\],
.brand-page footer .text-\[\#9CA3AF\],
.brand-page footer .text-\[\#6B7280\],
.brand-page footer .text-\[\#5B6E6C\] {
  color: rgba(255, 255, 255, 0.66) !important;
}

.brand-page footer a:hover {
  color: var(--teal-soft) !important;
}

/* --------------------------------------------------------------------------
   Catálogo — layout above the fold, alta escaneabilidade

   Cada seção ocupa a altura da viewport (menos o header) e centraliza seu
   conteúdo em uma coluna única de até 800px. Isso garante que o usuário
   sempre veja uma seção inteira mais o início da próxima, sem precisar
   rolar para captar a mensagem principal. Tipografia reduzida (16px corpo,
   24px títulos, 1.6 de entrelinha) e cards com padding enxuto priorizam
   leitura rápida sobre composição visual.
   -------------------------------------------------------------------------- */

.page-catalogo main>div>section:not(:nth-of-type(4)) {
  box-sizing: border-box;
  min-height: calc(100vh - 78px);
  padding-block: 32px;
  scroll-margin-top: 78px;
}

.page-catalogo main>div>section:first-of-type {
  min-height: calc(90vh - 78px);
  padding-top: 32px;
  padding-bottom: 24px;
}

.page-catalogo main>div>section:first-of-type>.hex-pattern {
  opacity: 0.15 !important;
}

.page-catalogo main>div>section:nth-of-type(4) {
  scroll-margin-top: 78px;
}

/* Coluna de conteúdo principal de cada seção (o wrapper max-w-[...] de nível
   superior) fica centralizada em 800px. Overlays decorativos (absolute
   inset-0) e elementos internos menores (badges, imagens) não são afetados. */
.page-catalogo main>div>section:not(:nth-of-type(4))>div[class*="max-w-"],
.page-catalogo main>div>section:not(:nth-of-type(4))>div:not([class*="absolute"])>div[class*="max-w-"] {
  max-width: 800px !important;
  margin-inline: auto !important;
}

/* Seção 4 é, na prática, 6 sub-painéis empilhados (um <section> com vários
   blocos de funcionalidades). Cada um recebe o mesmo tratamento de viewport
   e coluna de 800px que as demais seções de nível superior. */
.page-catalogo main>div>section:nth-of-type(4)>div {
  box-sizing: border-box;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  scroll-margin-top: 78px;
}

.page-catalogo main>div>section:nth-of-type(4)>div>div[class*="max-w-"] {
  width: 100%;
  max-width: 800px !important;
  margin-inline: auto !important;
}

@media (min-width: 961px) {
  .page-catalogo main>div>section:nth-of-type(4)>div:nth-child(2) {
    min-height: 55vh !important;
    height: 55vh;
    padding-block: 16px !important;
  }

  .page-catalogo main>div>section:nth-of-type(4)>div:nth-child(2) video {
    max-height: 48vh !important;
    height: auto;
    transform: scale(1.05);
    transform-origin: center;
  }

  .page-catalogo main>div>section:nth-of-type(4)>div:has(video[src*="iPhone-14"]) {
    min-height: 55vh !important;
    height: 55vh;
    padding-block: 16px !important;
    overflow: visible !important;
  }

  .page-catalogo main>div>section:nth-of-type(4)>div:has(video[src*="iPhone-14"]) video {
    max-height: 48vh !important;
    transform: scale(1.05);
    transform-origin: center;
    position: relative;
    z-index: 2;
  }

  .page-catalogo main>div>section:nth-of-type(4) div:has(> video[src*="iPhone-14"]) {
    overflow: visible !important;
  }

  .page-catalogo main>div>section:nth-of-type(4)>div:first-child {
    min-height: 45vh !important;
    height: 45vh;
    padding-block: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-catalogo main>div>section:nth-of-type(4)>div:first-child h2 {
    margin: 0 !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    line-height: 1.12 !important;
  }

  .page-catalogo main>div>section:nth-of-type(4)>div:first-child h2::after {
    content: "Conheça as funcionalidades ↓";
    display: block;
    width: fit-content;
    margin: 22px auto 0;
    padding: 10px 20px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--amber), var(--amber-deep));
    color: var(--on-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 22px rgba(196, 106, 26, 0.28);
  }
}

@media (max-height: 620px) {
  .page-catalogo main>div>section:nth-of-type(4)>div {
    min-height: auto;
  }
}

.page-catalogo main>div>section h1 {
  font-size: var(--hero-title-size) !important;
  line-height: 1.04 !important;
}

/* O título principal de todas as páginas segue a mesma escala da Home. */
.brand-page main>section:first-of-type h1,
.brand-page main>div>section:first-of-type h1 {
  font-size: var(--hero-title-size) !important;
  line-height: 1.04 !important;
}

.page-catalogo main>div>section h2 {
  font-size: 24px !important;
  line-height: 1.25 !important;
}

.page-catalogo main>div>section h3 {
  font-size: 18px !important;
  line-height: 1.3 !important;
}

.page-catalogo main>div>section :is(p, li, a, button, label, input, textarea, select) {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* Spans de texto corrido acompanham o corpo; badges/eyebrows (text-[Npx], text-xs)
   e ícones (material-symbols) mantêm seu próprio tamanho como marcadores visuais. */
.page-catalogo main>div>section span:not([class*="text-"]):not(.material-symbols-outlined) {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* Cards: padding reduzido para caber mais conteúdo por tela sem perder respiro.
   Restrito a cartões com padding Tailwind explícito (p-*) — losangos/tiles de
   ícone de tamanho fixo (h-N w-N, sem classe p-*) não são afetados. */
.page-catalogo main>div>section :is([class*="p-6"], [class*="p-8"], [class*="p-5"], [class*="p-3"]):is(.rounded-xl, .rounded-lg, .rounded-2xl) {
  padding: 16px !important;
}

.page-catalogo main>div>section .grid {
  gap: 12px !important;
}

@media (min-width: 640px) {
  .page-catalogo main>div>section {
    padding-inline: 24px;
  }
}

@media (min-width: 961px) {
  .page-catalogo main>div>section:nth-of-type(2) .group.rounded-2xl {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    align-items: center;
    gap: 20px;
    overflow: visible;
  }

  .page-catalogo main>div>section:nth-of-type(2) .group.rounded-2xl> :first-child {
    grid-column: 1 / -1;
  }

  .page-catalogo main>div>section:nth-of-type(2) .group.rounded-2xl>img {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 100% !important;
    max-height: 52vh;
    object-fit: contain;
    margin: 0 !important;
    transform: translateX(-12%) translateY(-2%) scale(1.2);
    transform-origin: center;
    z-index: 1;
    filter: drop-shadow(0 24px 30px rgba(11, 46, 49, 0.28));
  }

  .page-catalogo main>div>section:nth-of-type(2) .group.rounded-2xl>ul,
  .page-catalogo main>div>section:nth-of-type(2) .group.rounded-2xl> :last-child {
    grid-column: 2;
  }

  .page-catalogo main>div>section:nth-of-type(2) img[src*="conversa_whtasapp"] {
    width: auto !important;
    max-width: 100% !important;
    max-height: 58vh;
    object-fit: contain;
  }

  .page-catalogo main>div>section:first-of-type {
    position: relative;
    overflow: visible;
    isolation: isolate;
    background: transparent !important;
    min-height: 75vh !important;
    height: 75vh;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .page-catalogo main>div>section:first-of-type::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 100%;
    background: linear-gradient(135deg, #0b2e31 0%, #0e3a3d 60%, #12514f 100%);
    pointer-events: none;
    z-index: 0;
  }

  .page-catalogo main>div>section:first-of-type>div.relative {
    height: 100%;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
    z-index: 2;
    align-items: center !important;
  }

  .page-catalogo main>div>section:first-of-type>div.relative>.grid {
    align-items: center !important;
  }

  .page-catalogo main>div>section:first-of-type>div.relative>.grid>div:nth-child(2) img {
    transform: scale(1.1) translateY(clamp(36px, 5vw, 78px));
    will-change: transform;
  }

  .page-catalogo main>div>section:first-of-type>.hex-pattern {
    z-index: 1;
  }

  .page-catalogo main>div>section:first-of-type .grid {
    gap: 0 !important;
  }

  .page-catalogo main>div>section:first-of-type h1 {
    white-space: nowrap;
  }

  .page-catalogo main>div>section:not(:nth-of-type(4))>div[class*="max-w-"],
  .page-catalogo main>div>section:not(:nth-of-type(4))>div:not([class*="absolute"])>div[class*="max-w-"],
  .page-catalogo main>div>section:nth-of-type(4)>div>div[class*="max-w-"] {
    width: 75vw;
    max-width: 75vw !important;
  }
}

@media (max-width: 960px) {
  .page-catalogo main>div>section:first-of-type h1 {
    white-space: normal;
  }
}

/* Above the fold: telas baixas mantêm o conteúdo em fluxo normal e rolável. */
@media (max-height: 620px) {
  .page-catalogo main>div>section {
    min-height: auto;
  }
}

/* --------------------------------------------------------------------------
   Landing pages de campanha — mesma marca, hierarquia própria preservada
   -------------------------------------------------------------------------- */

/* Padrão geométrico com a mesma sutileza da faixa hero. */
.hex-pattern,
.hex-pattern-dark {
  opacity: 0.15 !important;
}

/* Seções escuras sem um elemento hex-pattern próprio recebem o mesmo motivo. */
.page-catalogo main>div>section:nth-of-type(4)>div.bg-hub-navy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image: linear-gradient(rgba(11, 46, 49, 0.96), rgba(11, 46, 49, 0.96)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cg fill='none' stroke='%232cb4a3' stroke-opacity='.32' stroke-width='1'%3E%3Cpath d='M30 1 1 18v34l29 17 29-17V18L30 1Zm60 34L61 52v34l29 17 29-17V52L90 35ZM90 1 61 18v34l29 17 29-17V18L90 1Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 180px 156px;
}

.page-catalogo main>div>section:nth-of-type(4)>div.bg-hub-navy>* {
  position: relative;
  z-index: 1;
}

.page-catalogo main>div>section:nth-of-type(4) video {
  mix-blend-mode: multiply;
}

@media (min-width: 961px) {
  .page-catalogo main>div>section:nth-of-type(4) video {
    width: auto !important;
    max-width: 100% !important;
    max-height: 45vh;
    object-fit: contain;
    margin-inline: auto;
  }
}

.page-catalogo main>div>section:nth-of-type(4) div:has(> video) {
  background: transparent !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.brand-campaign {
  --font-family-base: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font: "Sora", ui-sans-serif, system-ui, sans-serif;
  --color-super-dark-green: var(--deep);
  --color-badge-bg: var(--deep-2);
  --color-secondary: var(--teal-soft);
  --color-accent: var(--teal);
  --color-background-gelo: var(--paper);
  --bg-carbon: var(--footer);
  --bg: var(--deep);
  --bg-elev: var(--deep-2);
  --bg-line: var(--line-dark);
  --primary: var(--amber);
  --primary-glow: rgba(196, 106, 26, 0.3);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.74);
  --cat-navy: var(--footer);
  --cat-carbon: var(--deep);
  --cat-carbon-2: var(--deep-2);
  --cat-line: rgba(255, 255, 255, 0.14);
  --cat-ink: #ffffff;
  --cat-muted: rgba(255, 255, 255, 0.7);
  --cat-accent: var(--amber);
  --cat-accent-soft: rgba(232, 164, 49, 0.14);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
}

.brand-campaign :is(.btn, a.btn, button.btn) {
  min-height: 48px;
  border-radius: 11px;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 28px;
  border-width: 2px;
}

.brand-campaign .campaign-brand {
  position: absolute;
  top: 22px;
  left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(247, 244, 236, 0.92);
  box-shadow: 0 10px 28px rgba(8, 34, 36, 0.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.brand-campaign .campaign-brand img {
  width: auto;
  height: 38px;
}

.brand-campaign .campaign-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--line-dark);
  background: var(--footer);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.brand-campaign .campaign-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.brand-campaign .campaign-footer strong {
  color: #ffffff;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

.brand-campaign :is(.btn--primary, .btn-solid, .btn-orange, .btn-primary-dark, .btn-garantir-vaga) {
  border-color: transparent !important;
  background: linear-gradient(96deg, var(--amber), var(--amber-deep)) !important;
  color: var(--on-accent) !important;
  box-shadow: 0 10px 26px rgba(196, 106, 26, 0.3);
}

.brand-campaign :is(.btn--secondary, .btn-outline, .btn-outline-dark, .btn-greenline) {
  border: 2px solid currentColor !important;
}

.brand-campaign .vp-btn svg circle {
  fill: var(--amber) !important;
}

/* Campanha 1 */
.campaign-catalogo1 {
  background: var(--deep);
  color: #ffffff;
}

.campaign-catalogo1 .hero {
  min-height: 100vh;
  padding-block: calc(var(--space) + 60px) var(--space);
  overflow: hidden;
  text-align: left;
  background: radial-gradient(120% 130% at 80% 20%,
      var(--hero-glow) 0%,
      var(--deep-2) 45%,
      var(--deep) 100%);
}

.campaign-catalogo1 .hero__overlay {
  background: rgba(11, 46, 49, 0.78);
}

.campaign-catalogo1 .hero__title,
.campaign-catalogo1 .hero__subtitle {
  color: #ffffff;
}

.campaign-catalogo1 .hero__title {
  max-width: none;
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 5.4vw, 3.7rem);
  line-height: 1.05;
}

.campaign-catalogo1 .hero__subtitle {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.campaign-catalogo1 .hero .btn--secondary {
  border-color: rgba(255, 255, 255, 0.68) !important;
  color: #ffffff;
}

.campaign-catalogo1 .intermediate,
.campaign-catalogo1 .benefits,
.campaign-catalogo1 .process,
.campaign-catalogo1 .cost,
.campaign-catalogo1 .faq {
  background: var(--deep);
}

.campaign-catalogo1 .intermediate,
.campaign-catalogo1 .card,
.campaign-catalogo1 .cta__inner {
  background: var(--deep-2);
}

.campaign-catalogo1 .cta {
  background: var(--paper);
  padding-block: var(--space);
  text-align: center;
}

.campaign-catalogo1 .cta::before {
  content: none;
}

.campaign-catalogo1 .footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.72);
}

/* Campanha 2 */
.campaign-catalogo2 {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(31, 158, 142, 0.14) 1.4px, transparent 1.4px);
  color: var(--ink);
}

.campaign-catalogo2 .dotgrid {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(31, 158, 142, 0.14) 1.4px, transparent 1.4px);
}

.campaign-catalogo2 .hero::before {
  background: radial-gradient(120% 130% at 80% 20%,
      var(--hero-glow) 0%,
      var(--deep-2) 45%,
      var(--deep) 100%);
}

.campaign-catalogo2 .pcard,
.campaign-catalogo2 .scard,
.campaign-catalogo2 .timeline,
.campaign-catalogo2 .cta {
  background: var(--deep-2);
}

.campaign-catalogo2 .pcard::before,
.campaign-catalogo2 .cta::before {
  background-image: url("../assets/Imgem_de_banner_hero_YANY.png");
}

.campaign-catalogo2 .solution {
  background: var(--deep);
  color: #ffffff;
  padding-block: 72px;
}

.campaign-catalogo2 .scard.highlight {
  border-color: var(--amber);
  box-shadow: 0 0 22px rgba(232, 164, 49, 0.28);
}

.campaign-catalogo2 .chev-1 {
  background: var(--teal-soft);
}

.campaign-catalogo2 .chev-2 {
  background: var(--teal);
}

.campaign-catalogo2 .chev-3 {
  background: var(--deep);
}

.campaign-catalogo2 .fcard {
  border-color: #d9d3c6;
  background: #ffffff;
  color: var(--ink);
}

.campaign-catalogo2 .fcard p {
  color: var(--gray);
}

/* Campanha 3 */
.campaign-catalogo3 {
  background: var(--paper);
  color: var(--ink);
}

.campaign-catalogo3 .hero-section {
  background-color: var(--deep);
  background-image:
    linear-gradient(rgba(11, 46, 49, 0.72), rgba(11, 46, 49, 0.82)),
    url("../assets/stacked-waves-haikei.svg");
  color: #ffffff;
}

.campaign-catalogo3 .hero-section>.position-absolute {
  display: none;
}

.campaign-catalogo3 .hero-title,
.campaign-catalogo3 .hero-subtitle,
.campaign-catalogo3 .hero-social-text {
  color: #ffffff !important;
}

.campaign-catalogo3 .highlight-box {
  background: linear-gradient(96deg, var(--amber), var(--amber-deep));
  color: var(--on-accent);
}

.campaign-catalogo3 .badge-custom {
  border: 1px solid rgba(44, 180, 163, 0.42);
  background: rgba(31, 158, 142, 0.18);
  color: var(--teal-soft);
}

.campaign-catalogo3 .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.68) !important;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.campaign-catalogo3 #problema-real,
.campaign-catalogo3 #como-funciona {
  background: var(--paper);
}

.campaign-catalogo3 #solucao {
  background-color: var(--deep-2);
  background-image: url("../assets/stacked-waves-haikei.svg");
  color: #ffffff;
}

.campaign-catalogo3 #solucao::before {
  background: rgba(14, 58, 61, 0.86);
}

.campaign-catalogo3 #solucao :is(.titulo-solucao, .subtitulo-solucao, .destaque-final-solucao) {
  color: #ffffff;
}

.campaign-catalogo3 #comparativo {
  background-color: var(--deep);
}

.campaign-catalogo3 [style*="font-family: sans-serif"] {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif !important;
}

@keyframes frame-glow {

  0%,
  100% {
    border-color: rgba(232, 164, 49, 0.36);
    box-shadow: 0 0 20px rgba(232, 164, 49, 0.1), 0 10px 30px rgba(0, 0, 0, 0.42);
  }

  50% {
    border-color: rgba(232, 164, 49, 0.9);
    box-shadow: 0 0 34px rgba(232, 164, 49, 0.3), 0 10px 30px rgba(0, 0, 0, 0.42);
  }
}

@media (max-width: 900px) {
  .brand-page header[data-header="true"] nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-campaign .campaign-brand {
    top: 14px;
    left: 16px;
  }

  .brand-campaign .campaign-brand img {
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {

  :where(.brand-home, .brand-page, .brand-campaign) *,
  :where(.brand-home, .brand-page, .brand-campaign) *::before,
  :where(.brand-home, .brand-page, .brand-campaign) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Estilos que antes estavam em atributos style.
   A especificidade elevada reproduz a prioridade do atributo inline sem alterar a cascata de !important. */
#inline-index-1#inline-index-1#inline-index-1#inline-index-1#inline-index-1#inline-index-1#inline-index-1#inline-index-1#inline-index-1#inline-index-1#inline-index-1#inline-index-1 {
  position: absolute;
  right: -8%;
  top: -14%;
  opacity: 0.16
}

#inline-index-2#inline-index-2#inline-index-2#inline-index-2#inline-index-2#inline-index-2#inline-index-2#inline-index-2#inline-index-2#inline-index-2#inline-index-2#inline-index-2 {
  padding-bottom: 0
}

#inline-index-3#inline-index-3#inline-index-3#inline-index-3#inline-index-3#inline-index-3#inline-index-3#inline-index-3#inline-index-3#inline-index-3#inline-index-3#inline-index-3 {
  position: absolute;
  left: -6%;
  bottom: -8%;
  opacity: 0.1
}

#inline-index-4#inline-index-4#inline-index-4#inline-index-4#inline-index-4#inline-index-4#inline-index-4#inline-index-4#inline-index-4#inline-index-4#inline-index-4#inline-index-4 {
  color: rgba(255, 255, 255, 0.7)
}

#inline-index-5#inline-index-5#inline-index-5#inline-index-5#inline-index-5#inline-index-5#inline-index-5#inline-index-5#inline-index-5#inline-index-5#inline-index-5#inline-index-5 {
  font-size: clamp(1.5rem, 3vw, 2rem)
}

#inline-index-6#inline-index-6#inline-index-6#inline-index-6#inline-index-6#inline-index-6#inline-index-6#inline-index-6#inline-index-6#inline-index-6#inline-index-6#inline-index-6 {
  font-size: clamp(1.9rem, 4vw, 2.6rem)
}

#inline-index-7#inline-index-7#inline-index-7#inline-index-7#inline-index-7#inline-index-7#inline-index-7#inline-index-7#inline-index-7#inline-index-7#inline-index-7#inline-index-7 {
  margin-top: 16px
}

#inline-index-8#inline-index-8#inline-index-8#inline-index-8#inline-index-8#inline-index-8#inline-index-8#inline-index-8#inline-index-8#inline-index-8#inline-index-8#inline-index-8 {
  position: absolute;
  right: -6%;
  top: 10%;
  opacity: 0.1
}

/* === Rodapé Colmy com arte institucional === */
footer,
.campaign-footer {
  background: #f7d58f url("../assets/colmy_footer.webp") center center / cover no-repeat !important;
  color: #17312f !important;
}

footer p,
footer a,
footer li,
footer .footer-bottom,
footer .footer-text,
footer .footer__text,
.campaign-footer p,
.campaign-footer a {
  color: #17312f !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

footer .footer-brand p:first-child,
footer .footer-brand-name,
footer .footer-col > p,
footer strong,
footer [class*="text-hub-coral"],
footer [class*="text-hub-yellow"],
.campaign-footer strong {
  color: #8b3600 !important;
  font-weight: 800;
}

footer a:hover,
.campaign-footer a:hover {
  color: #a94700 !important;
}

footer svg,
footer .material-symbols-outlined,
.campaign-footer svg,
.campaign-footer .material-symbols-outlined {
  color: #8b3600 !important;
  stroke: currentColor;
}

footer .footer-bottom,
footer [class*="border-white"] {
  border-color: rgba(23, 49, 47, 0.25) !important;
}
