: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);
}

.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(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
  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;
}

.page-hero {
  padding: 82px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
  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: 320px;
}

.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 {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.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 {
  max-width: 100%;
}

.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;
  }

  .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;
  }
}