:root {
  --primary: #044057;
  --primary-2: #024567;
  --bg: #f6f8f9;
  --muted: #608694;
  --border: #bcccd2;
  --white: #ffffff;
  --text: #11343f;
  --shadow: 0 18px 50px rgba(4, 64, 87, 0.08);
  --shadow-soft: 0 10px 28px rgba(4, 64, 87, 0.06);
  --shadow-strong: 0 18px 44px rgba(4, 64, 87, 0.2);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: 0.28s ease;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

#servicos,
#como-funciona,
#depoimentos,
#faq,
#contato {
  scroll-margin-top: 160px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(12px);
  background: rgba(246, 248, 249, 0.9);
  border-bottom: 1px solid rgba(188, 204, 210, 0.45);
  box-shadow: 0 6px 22px rgba(4, 64, 87, 0.06);
}

.topbar-content {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto max-content max-content;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary);
  min-width: max-content;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.topbar-nav a {
  color: var(--primary);
  font-size: 15px;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.topbar-actions .btn-topbar-outline {
  margin-left: 50px;
}

.topbar-nav a:hover {
  opacity: 0.72;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-left: -55px;
  justify-self: end;
}

.topbar-actions .btn {
  min-height: 46px;
  padding: 0 20px;
  font-size: 15px;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(4, 64, 87, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}

.page-hero-blue {
  background:
    radial-gradient(circle at top left, rgba(211, 175, 55, 0.14), transparent 20%),
    linear-gradient(135deg, #0c6a90 0%, #044057 44%, #024567 100%);
  color: #ffffff;
}

.page-hero-blue .page-hero-inner {
  padding: 110px 0 90px;
}

.page-hero-blue .page-hero-kicker,
.page-hero-blue h1,
.page-hero-blue p,
.page-hero-blue li {
  color: #ffffff;
}

.page-hero-blue .page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero-blue .page-hero-kicker::before {
  content: "";
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b678c 0%, #d3af37 100%);
}

.page-hero-blue h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  max-width: 18ch;
  font-weight: 700;
  color: #ffffff;
}

.page-hero-blue p {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu-cta {
  display: none;
}

.hero {
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(211, 175, 55, 0.14), transparent 20%),
    linear-gradient(135deg, #0c6a90 0%, #044057 44%, #024567 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  max-width: 18ch;
  color: var(--white);
}

.hero-text,
.page-hero-text {
  margin: 18px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
}

.hero-slider {
  margin-bottom: 30px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: auto 0 -24px 22px;
  height: 88%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  filter: blur(0.5px);
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.hero-identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  max-width: 460px;
  margin-left: auto;
}

.hero-identity strong {
  color: var(--white);
  font-size: 17px;
  letter-spacing: 0.01em;
}

.hero-identity span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.page-hero {
  padding: 82px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(211, 175, 55, 0.14), transparent 20%),
    linear-gradient(135deg, #0c6a90 0%, #044057 44%, #024567 100%);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: center;
}

.page-hero-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.page-hero-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--white);
}

.page-hero-panel ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.94);
}

.page-hero-panel li + li {
  margin-top: 10px;
}

.hero-actions,
.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.24);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-topbar-solid {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(4, 64, 87, 0.16);
}

.btn-topbar-solid:hover {
  background: var(--primary-2);
}

.btn-topbar-outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(4, 64, 87, 0.2);
}

.btn-topbar-outline:hover {
  background: rgba(4, 64, 87, 0.04);
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--white);
}

.section-accent {
  background:
    radial-gradient(circle at top right, rgba(4, 64, 87, 0.08), transparent 28%),
    linear-gradient(180deg, #f6f8f9 0%, #eef5f7 100%);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading-wide {
  max-width: 100%;
}

.section-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.76);
}

.section h2,
.cta-final h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-subtitle,
.section p,
.intro p,
.footer p,
.faq-item p,
.cta-final p {
  color: var(--text);
}

.section-subtitle {
  max-width: 110ch;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.6;
}

.intro-stack {
  display: grid;
  gap: 24px;
}

.intro-heading h2 {
  max-width: 34ch;
  font-size: clamp(46px, 5vw, 62px);
  line-height: 1.06;
  text-wrap: unset;
}

.intro-content {
  max-width: 108ch;
}

.intro-content p {
  font-size: 17px;
  line-height: 1.8;
}

.intro-extra {
  margin-top: 18px !important;
}

.client-logos-section {
  padding-top: 20px;
  padding-bottom: 34px;
  overflow: hidden;
}

.client-logos-heading {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 30px;
}

.client-logos-heading h2 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.client-logos-heading .section-subtitle {
  max-width: 86ch;
  margin-left: auto;
  margin-right: auto;
}

.logos-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 8%,
    rgba(0, 0, 0, 1) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 8%,
    rgba(0, 0, 0, 1) 92%,
    transparent 100%
  );
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: logos-marquee-scroll 34s linear infinite;
}

.logos-marquee:hover .logos-track {
  animation-play-state: paused;
}

.logo-item {
  width: 220px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(188, 204, 210, 0.4);
  box-shadow: 0 10px 26px rgba(4, 64, 87, 0.05);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.logo-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(4, 64, 87, 0.12);
  box-shadow: 0 14px 30px rgba(4, 64, 87, 0.08);
}

.logo-item img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92);
}

.logo-item.logo-horizontal img {
  max-width: 170px;
  max-height: 42px;
}

.logo-item.logo-compacta img {
  max-width: 112px;
  max-height: 58px;
}

.logo-item.logo-vertical img {
  max-width: 96px;
  max-height: 68px;
}

.logo-item.logo-cieli img {
  max-width: 132px;
  max-height: 68px;
}

.logo-item.logo-predial img {
  max-width: 182px;
  max-height: 52px;
}

@keyframes logos-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .client-logos-heading {
    margin-bottom: 24px;
  }

  .logos-track {
    gap: 18px;
    animation-duration: 28s;
  }

  .logo-item {
    width: 190px;
    height: 82px;
    padding: 10px 16px;
  }

  .logo-item.logo-horizontal img {
    max-width: 150px;
    max-height: 38px;
  }

  .logo-item.logo-compacta img {
    max-width: 100px;
    max-height: 52px;
  }

  .logo-item.logo-vertical img {
    max-width: 84px;
    max-height: 60px;
  }

  .logo-item.logo-cieli img {
    max-width: 116px;
    max-height: 62px;
  }

  .logo-item.logo-predial img {
    max-width: 164px;
    max-height: 48px;
  }
}

@media (max-width: 640px) {
  .client-logos-section {
    padding-top: 8px;
    padding-bottom: 22px;
  }

  .logos-track {
    gap: 14px;
    animation-duration: 24s;
  }

  .logo-item {
    width: 164px;
    height: 74px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .logo-item.logo-horizontal img {
    max-width: 132px;
    max-height: 34px;
  }

  .logo-item.logo-compacta img {
    max-width: 88px;
    max-height: 46px;
  }

  .logo-item.logo-vertical img {
    max-width: 74px;
    max-height: 54px;
  }

  .logo-item.logo-cieli img {
    max-width: 102px;
    max-height: 56px;
  }

  .logo-item.logo-predial img {
    max-width: 146px;
    max-height: 44px;
  }
}

.authority {
  padding: 26px 0 0;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.authority-grid {
  display: grid;
  gap: 16px;
}

.authority-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.authority-card {
  background: var(--white);
  border: 1px solid rgba(188, 204, 210, 0.42);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
  min-height: 156px;
}

.authority-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 20px;
}

.authority-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.mini-about-grid,
.footer-grid,
.content-columns {
  display: grid;
  gap: 32px;
}

.content-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-columns p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}

.content-columns p + p {
  margin-top: 18px;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.process-card,
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(188, 204, 210, 0.42);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.card h3,
.process-card h3,
.footer-column h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 22px;
  line-height: 1.2;
}

.card p,
.process-card p,
.footer-column a,
.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.card li + li {
  margin-top: 8px;
}

.card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(4, 64, 87, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-link-card .text-link,
.strong-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
}

.carousel,
.hero-slider {
  position: relative;
}

.carousel-header,
.slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.slider-track {
  position: relative;
  min-height: 1px;
}

.slide {
  display: none;
  animation: fadeUp 0.45s ease;
}

.slide.active {
  display: block;
}

.card-slider,
.process-card {
  min-height: 240px;
}

.slider-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}

.hero .slider-counter {
  color: var(--white);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(96, 134, 148, 0.32);
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    width var(--transition);
  padding: 0;
}

.dot.active {
  width: 28px;
  background: var(--primary);
}

.hero .dot {
  background: rgba(255, 255, 255, 0.28);
}

.hero .dot.active {
  background: var(--white);
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(188, 204, 210, 0.7);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.arrow:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(4, 64, 87, 0.2);
}

.benefits .section-heading {
  max-width: 100%;
  margin-bottom: 40px;
}

.benefits .section-heading h2 {
  max-width: 48ch;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.benefit-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.testimonials {
  background: linear-gradient(180deg, #f6f8f9 0%, #ffffff 100%);
}

.testimonials-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-stage {
  position: relative;
  min-height: 380px;
}

.testimonials-stage .slider-track {
  position: relative;
  min-height: 380px;
}

.testimonials-stage .slide {
  position: absolute;
  inset: 0;
  width: 100%;
}

.testimonials-stage .slide.active {
  display: flex;
}

.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
  border: 1px solid rgba(188, 204, 210, 0.5);
  min-height: 340px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text);
}

.tax-transition {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(4, 64, 87, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fa 100%);
}

.tax-transition::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.tax-heading h2 {
  max-width: 28ch;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.06;
  text-wrap: unset;
}

.tax-heading .section-subtitle {
  max-width: 110ch;
  font-size: 18px;
  line-height: 1.7;
}

.tax-transition .card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  border: 1px solid rgba(4, 64, 87, 0.12);
  box-shadow: 0 14px 34px rgba(4, 64, 87, 0.06);
}

.tax-transition .card h3 {
  font-size: 21px;
}

.tax-transition-highlight,
.highlight-box {
  margin-top: 26px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow);
}

.highlight-box,
.highlight-box h2,
.highlight-box p,
.highlight-box .section-label,
.highlight-box .highlight-text {
  color: var(--white);
}

.highlight-box h2 {
  color: var(--white);
  max-width: 28ch;
  margin-bottom: 14px;
}

.highlight-box .section-label {
  color: rgba(255, 255, 255, 0.76);
}

.tax-transition-highlight p,
.highlight-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.tax-transition-actions {
  margin-top: 26px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--primary);
  font-size: 18px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 15px;
}

.mini-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.mini-about-content p + p {
  margin-top: 16px;
}

.mini-about-photo-wrap {
  display: flex;
  justify-content: flex-end;
}

.mini-about-photo-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(211, 175, 55, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
  padding: 14px;
}

.mini-about-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(211, 175, 55, 0.18),
    rgba(211, 175, 55, 0.04) 42%,
    transparent 72%
  );
}

.mini-about-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

@media (max-width: 980px) {
  .mini-about-grid {
    grid-template-columns: 1fr;
  }

  .mini-about-photo-wrap {
    justify-content: flex-start;
  }

  .mini-about-photo-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .mini-about-photo {
    min-height: 360px;
  }
}

.mini-about-text h2 {
  max-width: 28ch;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.08;
}

.mini-about-text p {
  max-width: 92ch;
  font-size: 17px;
  line-height: 1.8;
}

.mini-about-photo img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.mini-about-cards {
  margin-top: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(188, 204, 210, 0.5);
  border-radius: var(--radius-md);
  padding: 0 22px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  padding-right: 36px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 24px;
  line-height: 1;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 22px;
  margin: 0;
}

.cta-final {
  padding: 40px 0 92px;
}

.cta-final-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white);
  border-radius: 32px;
  padding: 46px 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  box-shadow: var(--shadow);
}

.cta-final-content p {
  max-width: 720px;
}

.cta-final-content p {
  max-width: 680px;
}

.cta-final h2 {
  color: var(--white);
  margin-bottom: 16px;
  max-width: 30ch;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 84ch;
  font-size: 18px;
  line-height: 1.7;
}

.cta-final-actions-stacked {
  display: flex;
  justify-content: flex-start;
}

.footer {
  padding: 0 0 28px;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.6fr 0.6fr;
  padding: 34px 0;
  border-top: 1px solid rgba(188, 204, 210, 0.6);
}

.footer-logo {
  max-width: 320px;
  margin-bottom: 14px;
}

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

.footer-column a {
  transition: opacity var(--transition);
}

.footer-column a:hover {
  opacity: 0.72;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(188, 204, 210, 0.45);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed !important;
  right: 18px !important;
  bottom: 56px !important;
  z-index: 9999 !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  border-radius: 50% !important;
  background: var(--whatsapp) !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28) !important;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: var(--whatsapp-dark) !important;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.34) !important;
}

.whatsapp-float svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: block !important;
  flex: 0 0 28px !important;
  fill: currentColor !important;
}

.whatsapp-float path {
  fill: currentColor !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .topbar-content {
    grid-template-columns: auto 1fr;
  }

  .topbar-actions {
    display: none;
  }

  .topbar-nav {
    justify-content: flex-end;
  }
}

@media (max-width: 1100px) {
  .authority-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .mini-about-grid,
  .footer-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .topbar-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
  }

  .topbar-nav,
  .topbar-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(188, 204, 210, 0.45);
    background: rgba(246, 248, 249, 0.97);
  }

  .mobile-menu.is-open {
    max-height: 520px;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 14px 0 10px;
    gap: 8px;
  }

  .mobile-menu-links > a {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
  }

  .mobile-menu-cta .btn-topbar-solid {
    color: var(--white);
  }

  .mobile-menu-cta .btn-topbar-outline {
    color: var(--primary);
  }

  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 6px 0 18px;
  }

  .mobile-menu-cta .btn {
    width: 100%;
  }

  .hero {
    padding: 52px 0 36px;
  }

  .page-hero {
    padding: 58px 0 42px;
  }

  .hero-grid {
    display: grid;
    gap: 32px;
  }

  .hero h1,
  .page-hero h1,
  .intro-heading h2,
  .tax-heading h2,
  .benefits .section-heading h2,
  .mini-about-text h2,
  .cta-final h2,
  .section-subtitle,
  .intro-content,
  .cta-final p {
    max-width: 100%;
  }

  .hero-image {
    max-width: 100%;
    margin-left: 0;
  }

  .authority-grid-5,
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits .section-heading h2 {
    font-size: clamp(34px, 5vw, 54px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1280px, calc(100% - 24px));
  }

  .topbar {
    position: sticky;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero {
    padding: 40px 0 28px;
  }

  .page-hero {
    padding: 44px 0 30px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero-text,
  .page-hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .cta-final-actions,
  .tax-transition-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 62px 0;
  }

  .section h2,
  .cta-final h2,
  .intro-heading h2,
  .tax-heading h2,
  .mini-about-text h2 {
    font-size: 30px;
  }

  .authority-grid-5,
  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .card,
  .process-card,
  .testimonial-card,
  .faq-item,
  .authority-card,
  .page-hero-panel {
    padding: 22px;
  }

  .card-slider,
  .process-card {
    min-height: auto;
  }

  .testimonials-stage,
  .testimonials-stage .slider-track {
    min-height: 460px;
  }

  .testimonial-card {
    min-height: 420px;
  }

  .testimonial-text {
    font-size: 17px;
    line-height: 1.7;
  }

  .carousel-header,
  .slider-footer {
    align-items: center;
  }

  .arrow {
    width: 42px;
    height: 42px;
  }

  .benefits .section-heading {
    margin-bottom: 28px;
  }

  .benefits .section-heading h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .tax-transition-highlight,
  .highlight-box {
    padding: 20px 18px;
  }

  .tax-transition-highlight p,
  .highlight-text,
  .cta-final p,
  .mini-about-text p,
  .intro-content p,
  .content-columns p {
    font-size: 16px;
    line-height: 1.7;
  }

  .cta-final-box {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .footer {
    padding-bottom: 100px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
  }

  .footer-column {
    gap: 14px;
  }

  .footer-column h3 {
    margin-bottom: 2px;
  }

  .contact-link {
    align-items: flex-start;
  }

  .footer-grid {
  grid-template-columns: 1fr !important;
  gap: 28px;
  }

  .footer-brand,
  .footer-column {
    width: 100%;
    min-width: 0;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
    max-width: 150px;
  }

  .footer-brand p {
    max-width: 24ch;
    margin: 0 auto;
    text-align: center;
  }

  .footer-column {
    align-items: flex-start;
  }

  .contact-link {
    width: 100%;
    min-width: 0;
  }

  .contact-link span:last-child {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 14px !important;
    bottom: 48px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
  }

  .whatsapp-float svg {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    flex: 0 0 26px !important;
  }
}

.logo-item.logo-cieli img {
  max-width: 150px !important;
  max-height: 74px !important;
}

.logo-item.logo-predial img {
  max-width: 190px !important;
  max-height: 58px !important;
}

@media (max-width: 980px) {
  .logo-item.logo-cieli img {
    max-width: 132px !important;
    max-height: 66px !important;
  }

  .logo-item.logo-predial img {
    max-width: 170px !important;
    max-height: 52px !important;
  }
}

@media (max-width: 640px) {
  .logo-item.logo-cieli img {
    max-width: 114px !important;
    max-height: 58px !important;
  }

  .logo-item.logo-predial img {
    max-width: 148px !important;
    max-height: 46px !important;
  }
}

/* === Ajuste fino das novas logos da esteira === */
.logo-item img[src$="mw.png"] {
  max-width: 176px !important;
  max-height: 78px !important;
}

.logo-item img[src$="noronha-te-leva.png"] {
  max-width: 186px !important;
  max-height: 54px !important;
}

.logo-item img[src$="ntl.png"] {
  max-width: 168px !important;
  max-height: 56px !important;
}

.logo-item img[src$="two-creative.png"] {
  max-width: 138px !important;
  max-height: 68px !important;
}

.logo-item img[src$="nexuz.png"] {
  max-width: 156px !important;
  max-height: 78px !important;
}

.logo-item img[src$="agl-engenharia.png"] {
  max-width: 176px !important;
  max-height: 64px !important;
}

.logo-item img[src$="alarus-digital.png"] {
  max-width: 188px !important;
  max-height: 58px !important;
}

.logo-item img[src$="aldraba.png"] {
  max-width: 152px !important;
  max-height: 66px !important;
}

.logo-item img[src$="pcm.png"] {
  max-width: 170px !important;
  max-height: 62px !important;
}

.logo-item img[src$="ibeize.png"] {
  max-width: 170px !important;
  max-height: 66px !important;
}

.logo-item img[src$="nasa.png"] {
  max-width: 138px !important;
  max-height: 66px !important;
}

.logo-item img[src$="psi.png"] {
  max-width: 204px !important;
  max-height: 60px !important;
}

@media (max-width: 980px) {
  .logo-item img[src$="mw.png"] {
    max-width: 156px !important;
    max-height: 68px !important;
  }

  .logo-item img[src$="noronha-te-leva.png"] {
    max-width: 170px !important;
    max-height: 50px !important;
  }

  .logo-item img[src$="ntl.png"] {
    max-width: 152px !important;
    max-height: 50px !important;
  }

  .logo-item img[src$="two-creative.png"] {
    max-width: 124px !important;
    max-height: 62px !important;
  }

  .logo-item img[src$="nexuz.png"] {
    max-width: 138px !important;
    max-height: 72px !important;
  }

  .logo-item img[src$="agl-engenharia.png"] {
    max-width: 160px !important;
    max-height: 58px !important;
  }

  .logo-item img[src$="alarus-digital.png"] {
    max-width: 170px !important;
    max-height: 52px !important;
  }

  .logo-item img[src$="aldraba.png"] {
    max-width: 136px !important;
    max-height: 60px !important;
  }

  .logo-item img[src$="pcm.png"] {
    max-width: 154px !important;
    max-height: 56px !important;
  }

  .logo-item img[src$="ibeize.png"] {
    max-width: 150px !important;
    max-height: 60px !important;
  }

  .logo-item img[src$="nasa.png"] {
    max-width: 124px !important;
    max-height: 60px !important;
  }

  .logo-item img[src$="psi.png"] {
    max-width: 186px !important;
    max-height: 56px !important;
  }
}

@media (max-width: 640px) {
  .logo-item img[src$="mw.png"] {
    max-width: 138px !important;
    max-height: 62px !important;
  }

  .logo-item img[src$="noronha-te-leva.png"] {
    max-width: 148px !important;
    max-height: 44px !important;
  }

  .logo-item img[src$="ntl.png"] {
    max-width: 134px !important;
    max-height: 44px !important;
  }

  .logo-item img[src$="two-creative.png"] {
    max-width: 108px !important;
    max-height: 56px !important;
  }

  .logo-item img[src$="nexuz.png"] {
    max-width: 122px !important;
    max-height: 66px !important;
  }

  .logo-item img[src$="agl-engenharia.png"] {
    max-width: 140px !important;
    max-height: 50px !important;
  }

  .logo-item img[src$="alarus-digital.png"] {
    max-width: 148px !important;
    max-height: 46px !important;
  }

  .logo-item img[src$="aldraba.png"] {
    max-width: 120px !important;
    max-height: 54px !important;
  }

  .logo-item img[src$="pcm.png"] {
    max-width: 136px !important;
    max-height: 50px !important;
  }

  .logo-item img[src$="ibeize.png"] {
    max-width: 132px !important;
    max-height: 54px !important;
  }

  .logo-item img[src$="nasa.png"] {
    max-width: 110px !important;
    max-height: 54px !important;
  }

  .logo-item img[src$="psi.png"] {
    max-width: 162px !important;
    max-height: 48px !important;
  }
}

:root {
  --gold: #d3af37;
  --gold-soft: #e6c963;
}

.topbar {
  background: rgba(246, 248, 249, 0.94);
}

.topbar-content {
  grid-template-columns: auto 1fr auto;
  gap: 26px;
}

.brand-symbol {
  width: 42px;
  height: 42px;
}

.topbar-nav {
  gap: 10px;
  justify-content: center;
}

.topbar-nav > a,
.topbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary);
  transition: background var(--transition), color var(--transition), opacity var(--transition), transform var(--transition);
}

.topbar-nav > a:hover,
.topbar-nav .nav-link:hover {
  opacity: 1;
  background: rgba(4, 64, 87, 0.06);
  transform: translateY(-1px);
}

.topbar-nav > a.active,
.topbar-nav .nav-link.active {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(4, 64, 87, 0.05), rgba(211, 175, 55, 0.16));
}

.nav-dropdown {
  position: relative;
}

.nav-link.has-submenu::after {
  content: "▾";
  margin-left: 8px;
  font-size: 12px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(188, 204, 210, 0.7);
  box-shadow: 0 22px 50px rgba(4, 64, 87, 0.12);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 120;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(4, 64, 87, 0.06);
  color: var(--gold);
}

.topbar-actions {
  margin-left: 0;
  gap: 12px;
}

.topbar-actions .btn-topbar-outline {
  margin-left: 0;
}

.btn-topbar-outline {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--primary);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(211, 175, 55, 0.2);
}

.btn-topbar-outline:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.hero .dot.active,
.process .dot.active,
.testimonials .dot.active,
.services-slider .dot.active {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(211, 175, 55, 0.14);
}

.hero .slider-counter .current,
.slider-counter .current {
  color: var(--gold);
}

.client-logos-section {
  background: linear-gradient(180deg, #f3f5f7 0%, #eef2f4 100%);
}

.client-logos-heading .section-label,
.client-logos-heading h2,
.client-logos-heading .section-subtitle {
  color: var(--primary);
}

.logo-item {
  background: rgba(255, 255, 255, 0.9);
}

.footer {
  padding: 0 0 116px;
}

.footer-grid {
  align-items: start;
  grid-template-columns: 1.1fr 0.65fr 0.55fr;
}

.footer-logo {
  width: 100%;
  max-width: 360px;
}

.footer-bottom {
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-credit {
  margin-left: auto;
  white-space: nowrap;
}

.whatsapp-float {
  right: 18px !important;
  bottom: 82px !important;
  width: 74px !important;
  height: 74px !important;
  min-width: 74px !important;
  min-height: 74px !important;
  max-width: 74px !important;
  max-height: 74px !important;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32) !important;
}

.whatsapp-float svg {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  flex: 0 0 34px !important;
}

.whatsapp-tooltip {
  position: absolute;
  right: 90px;
  white-space: nowrap;
  background: rgba(4, 64, 87, 0.96);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(4, 64, 87, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(4, 64, 87, 0.96);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar-content {
    grid-template-columns: 1fr auto;
  }

  .nav-dropdown {
    display: none;
  }

  .footer {
    padding-bottom: 122px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    align-items: flex-start;
  }

  .footer-credit {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px !important;
    bottom: 74px !important;
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    min-height: 66px !important;
    max-width: 66px !important;
    max-height: 66px !important;
  }

  .whatsapp-float svg {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* === AJUSTES DA HOME | CONVERSA SOBRE O SITE 7 === */
body {
  background: linear-gradient(180deg, #f6f8f9 0%, #eef3f5 100%);
}

.section-light {
  background: linear-gradient(180deg, #f5f8fa 0%, #eef3f5 100%);
}

.section-soft-blue {
  background: linear-gradient(180deg, #f4f7f9 0%, #edf2f5 100%);
}

.section-home-contrast,
#para-quem,
.testimonials,
.tax-transition {
  background:
    radial-gradient(circle at top left, rgba(230, 201, 99, 0.12), transparent 20%),
    radial-gradient(circle at bottom right, rgba(230, 201, 99, 0.12), transparent 22%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
}

.section-heading-on-dark .section-label,
.section-heading-on-dark h2,
.section-heading-on-dark .section-subtitle,
.section-home-contrast .slider-counter,
.section-home-contrast .dot.active,
#para-quem .section-label,
#para-quem h2,
#para-quem .section-subtitle,
#para-quem .slider-counter,
#para-quem .dot.active,
.testimonials .section-label,
.testimonials h2,
.testimonials .section-subtitle,
.testimonials .slider-counter,
.testimonials .dot.active,
.tax-transition .section-label,
.tax-transition h2,
.tax-transition .section-subtitle,
.tax-transition .highlight-text {
  color: var(--white);
}

.section-heading-on-dark .section-label::before,
#para-quem .section-label::before,
.testimonials .section-label::before,
.tax-transition .section-label::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.section-home-contrast .slider-counter .current,
#para-quem .slider-counter .current,
.testimonials .slider-counter .current {
  color: var(--gold);
}

.section-home-contrast .dot,
#para-quem .dot,
.testimonials .dot {
  background: rgba(255, 255, 255, 0.28);
}

.section-home-contrast .dot.active,
#para-quem .dot.active,
.testimonials .dot.active {
  background: var(--gold);
}

.section-home-contrast .arrow,
#para-quem .arrow,
.testimonials .arrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-home-contrast .arrow:hover,
#para-quem .arrow:hover,
.testimonials .arrow:hover {
  border-color: rgba(211, 175, 55, 0.4);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.hero-subline {
  display: block;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.96);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.intro {
  padding-top: 72px;
}

.client-logos-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}

.page-links-section,
.benefits,
.mini-about,
.faq,
#como-funciona {
  background: linear-gradient(180deg, #f4f7f9 0%, #edf2f5 100%);
}

.page-links-section .card,
.benefits .card,
#como-funciona .process-card,
#como-funciona .card,
.mini-about .card,
.faq-item,
.section-light .card,
.section-light .process-card,
.section-light .testimonial-card,
#para-quem .card,
.testimonials .testimonial-card,
.tax-transition .card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
}

#para-quem .card h3,
#para-quem .card p,
.testimonials .testimonial-text,
.testimonials .testimonial-author strong,
.testimonials .testimonial-author span,
.tax-transition .card h3,
.tax-transition .card p {
  color: var(--text);
}

#para-quem .card,
.testimonials .testimonial-card,
.tax-transition .card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

#para-quem .card-step,
.testimonials .card-step,
.tax-transition .card-step {
  background: rgba(4, 64, 87, 0.08);
  color: var(--primary);
}

#para-quem .card {
  background: rgba(255, 255, 255, 0.92);
}

#para-quem .card h3,
#para-quem .card p {
  color: var(--text) !important;
}

#quem-somos .section-label,
#quem-somos h2 {
  color: var(--primary);
}

#quem-somos .section-label::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

#quem-conduz {
  background:
    radial-gradient(circle at top left, rgba(230, 201, 99, 0.12), transparent 20%),
    radial-gradient(circle at bottom right, rgba(230, 201, 99, 0.12), transparent 22%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
}

#quem-conduz .section-label,
#quem-conduz h2,
#quem-conduz p {
  color: var(--white);
}

#quem-conduz .section-label::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

#quem-conduz .card,
#quem-conduz .founder-card,
#quem-conduz .founder-highlight,
#quem-conduz .about-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

#quem-conduz .card h3,
#quem-conduz .founder-card h3,
#quem-conduz .founder-highlight h3,
#quem-conduz .about-card h3,
#quem-conduz .card p,
#quem-conduz .founder-card p,
#quem-conduz .founder-highlight p,
#quem-conduz .about-card p {
  color: var(--text);
}

#para-quem .section-subtitle,
.testimonials .section-subtitle,
.tax-transition .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.tax-transition::before {
  background: linear-gradient(90deg, var(--gold), var(--primary-2));
}

.tax-transition-highlight,
.highlight-box {
  background:
    radial-gradient(circle at top left, rgba(230, 201, 99, 0.14), transparent 24%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
}

.tax-transition-highlight p,
.highlight-text {
  color: rgba(255, 255, 255, 0.94);
}

.footer {
  padding: 0 0 30px;
}

.footer-grid {
  padding: 34px 0 28px;
}

.footer-bottom {
  padding-top: 14px;
  padding-right: 120px;
}

.footer-credit {
  margin-left: auto;
}

.whatsapp-float {
  overflow: visible !important;
  bottom: 34px !important;
}

.whatsapp-tooltip {
  z-index: 2;
}

.topbar-nav a.is-active,
.topbar-nav .nav-link-active {
  background: rgba(211, 175, 55, 0.16);
  color: var(--gold);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 320px;
  z-index: 120;
}

@media (max-width: 980px) {
  .footer {
    padding-bottom: 26px;
  }

  .footer-bottom {
    padding-right: 0;
  }

  .whatsapp-float {
    bottom: 26px !important;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    align-items: flex-start;
  }

  .footer-credit {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-subline {
    font-size: 0.84em;
  }

  .section-label::before {
    width: 40px;
  }

  .whatsapp-float {
    right: 14px !important;
    bottom: 78px !important;
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    min-height: 66px !important;
    max-width: 66px !important;
    max-height: 66px !important;
  }

  .whatsapp-float svg {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* Impact strip */
.section-impact {
  padding-top: 48px;
  padding-bottom: 64px;
}

.impact-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border, #bcccd2);
}

.impact-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 180px;
  text-align: center;
}

.impact-number {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: #D3AF37;
  line-height: 1;
  letter-spacing: -0.02em;
}

.impact-label {
  font-size: 1.10rem;
  color: #044057;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .impact-grid {
    justify-content: center;
    gap: 32px;
  }

  .impact-item {
    flex: 1 1 140px;
  }
}

/* Direction text block */
.solutions-page .direction-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.solutions-page .direction-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.solutions-page .direction-text p:last-child {
  margin-bottom: 0;
}

.solutions-page .direction-highlight-card {
  border: 1px solid rgba(211, 175, 55, 0.4);
  border-radius: 24px;
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}

.solutions-page .direction-highlight-line {
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d3af37 0%, #ecd98c 100%);
  margin-bottom: 20px;
}

.solutions-page .direction-highlight-card p {
  color: #ffffff;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 980px) {
  .solutions-page .direction-columns {
    grid-template-columns: 1fr;
  }
}

/* ── SEÇÃO APP MOYRA FINANÇAS ─────────────────────────────────────────────── */
#app-moyra .section-label,
#app-moyra h2,
#app-moyra .section-subtitle {
  color: var(--primary);
}

#app-moyra .section-label::before {
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.app-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, #0a5877 0%, #044057 55%, #024567 100%);
  border: 1px solid rgba(211, 175, 55, 0.22);
  border-radius: 28px;
  padding: 40px 44px;
  box-shadow: 0 18px 48px rgba(4, 64, 87, 0.18);
}

.app-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d3af37 !important; 
  margin: 0 0 14px;
}

.app-cta-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3af37;
  flex-shrink: 0;
}

.app-cta-title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.28;
  color: #ffffff;
  font-weight: 700;
  max-width: 52ch;
}

.app-cta-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 16px;
  line-height: 1.75;
  max-width: 60ch;
}

.app-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.app-cta-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .app-cta-band {
    grid-template-columns: 1fr;
    padding: 30px 26px;
    gap: 28px;
  }

  .app-cta-actions {
    flex-direction: row;
    min-width: unset;
  }

  .app-cta-actions .btn {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .app-cta-band {
    padding: 24px 20px;
  }

  .app-cta-actions {
    flex-direction: column;
  }
}