/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #113765;
  --blue-dark: #0c2a50;
  --green: #75ba19;
  --green-dark: #5e9614;
  --gray: #373435;
  --gray-light: #f5f6f8;
  --white: #ffffff;
  --text: #2d3748;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(17, 55, 101, 0.1);
  --radius: 10px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-green {
  color: var(--green);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(117, 186, 25, 0.35);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}
.btn--lg {
  padding: 15px 28px;
  font-size: 15px;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   SECTION TITLES
============================================================ */
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}
.section-title--left {
  text-align: left;
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.header--scrolled {
  box-shadow: 0 2px 20px rgba(17, 55, 101, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.header__logo {
  flex-shrink: 0;
}
.header__logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.header__nav a:hover {
  color: var(--blue);
}
.header__nav a:hover::after {
  transform: scaleX(1);
}

.header__cta {
  flex-shrink: 0;
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue) 65%,
    #1a4a7a 100%
  );
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero__bg-overlay {
  display: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.hero__title {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero__title--green {
  color: var(--green);
}

.hero__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.75;
}

.hero__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.check-icon--sm {
  width: 18px;
  height: 18px;
  font-size: 10px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
}

.form-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.form-card__header-icon {
  width: 44px;
  height: 44px;
  background: rgba(17, 55, 101, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}
.form-card__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Formulário RD Station — tamanho compacto */

#rd-station-form-container,
#rd-station-exit-form {
  min-height: 40px;
}

/* Reduz padding interno da section gerada pelo RD */
#sp-aguas-44489b10cf84731dc61b section,
#sp-aguas-44489b10cf84731dc61b .bricks--section {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Reduz padding das rows e columns */
#sp-aguas-44489b10cf84731dc61b .bricks--row,
#sp-aguas-44489b10cf84731dc61b .bricks--column {
  padding: 0 !important;
  margin: 0 !important;
}

/* Compacta os campos de input */
#sp-aguas-44489b10cf84731dc61b input[type="text"],
#sp-aguas-44489b10cf84731dc61b input[type="email"],
#sp-aguas-44489b10cf84731dc61b input[type="tel"],
#sp-aguas-44489b10cf84731dc61b select {
  height: 36px !important;
  min-height: 36px !important;
  padding: 6px 10px !important;
  font-size: 12px !important;
  border-radius: 6px !important;
  margin-bottom: 6px !important;
}

/* Labels menores */
#sp-aguas-44489b10cf84731dc61b label {
  font-size: 11px !important;
  margin-bottom: 2px !important;
  margin-top: 4px !important;
}

/* Componentes de campo (wrapper) */
#sp-aguas-44489b10cf84731dc61b .bricks--component-field,
#sp-aguas-44489b10cf84731dc61b .rd-field-group {
  margin-bottom: 4px !important;
}

/* Botão de submit menor */
#sp-aguas-44489b10cf84731dc61b button[type="submit"],
#sp-aguas-44489b10cf84731dc61b .bricks--component-button button {
  height: 40px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  margin-top: 6px !important;
}

/* Texto de privacidade menor */
#sp-aguas-44489b10cf84731dc61b .bricks--component-text p,
#sp-aguas-44489b10cf84731dc61b .rd-privacy-text {
  font-size: 10px !important;
  margin-top: 4px !important;
  line-height: 1.4 !important;
}

/* Remove margens extras do wrapper do formulário */
#sp-aguas-44489b10cf84731dc61b .bricks--component-embeddable-form {
  padding: 0 !important;
}

.rd-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 20px;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius);
  gap: 10px;
}
.rd-placeholder--popup {
  padding: 28px 20px;
}
.rd-placeholder__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.rd-placeholder__hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.rd-placeholder__code {
  font-size: 11px;
  background: #e2e8f0;
  padding: 4px 10px;
  border-radius: 4px;
  color: #475569;
  font-family: monospace;
}

.form-card__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ============================================================
   IMAGE STRIP
============================================================ */
.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 200px;
  overflow: hidden;
}
.image-strip__item {
  position: relative;
  overflow: hidden;
}
.image-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.image-strip__item:hover img {
  transform: scale(1.05);
}
.image-strip__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(17, 55, 101, 0.85) 0%,
    transparent 100%
  );
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 20px 12px 10px;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   CUSTO DE ESPERAR
============================================================ */
.custo {
  padding: 72px 0;
  background: var(--white);
}
.custo__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.custo__highlight {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.custo__warning-icon {
  font-size: 40px;
  color: #f59e0b;
  margin-bottom: 12px;
  line-height: 1;
}
.custo__label {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 8px;
  font-weight: 500;
}
.custo__value {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 4px;
}
.custo__sublabel {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 20px;
  font-weight: 600;
}
.custo__note {
  font-size: 11px;
  opacity: 0.65;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
}
.custo__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.custo__table thead tr {
  background: var(--blue);
  color: var(--white);
}
.custo__table th {
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}
.custo__table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.custo__table tbody tr:hover {
  background: #f8fafc;
}
.custo__table tbody tr:last-child td {
  border-bottom: none;
}
.custo__alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #c0392b;
  font-weight: 600;
}

/* ============================================================
   PARA QUEM FOI CRIADA
============================================================ */
.para-quem {
  padding: 72px 0;
  background: var(--gray-light);
}
.para-quem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.persona-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}
.persona-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(117, 186, 25, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.persona-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
}
.persona-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.persona-card__list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.para-quem__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 220px;
  position: relative;
}
.para-quem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.para-quem__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(17, 55, 101, 0.85) 0%,
    transparent 100%
  );
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 28px 16px 14px;
}
.para-quem__setores {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  font-size: 14px;
  color: var(--text);
}

/* ============================================================
   COMO A ECOMETRIA RESOLVE
============================================================ */
.como-resolve {
  padding: 72px 0;
  background: var(--white);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}
.step__number {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(117, 186, 25, 0.4);
}
.step__img-wrap {
  width: 100%;
  height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background: var(--gray-light);
  box-shadow: var(--shadow);
}
.step__img-wrap--dark {
  background: var(--blue);
}
.step__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step__badge-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.step__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}
.step__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.step__arrow {
  font-size: 28px;
  color: var(--green);
  font-weight: 900;
  margin-top: 90px;
  flex-shrink: 0;
}
.como-resolve__tagline {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   FORMULARIO RD STATION
============================================================ */
#formulario {
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 42, 80, 0.75);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}
#formulario.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
#formulario .form-card {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 20px 24px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  font-size: 13px;
}
#formulario .form-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #75BA19;
}
#formulario .bricks-form__field {
  margin-bottom: 0px !important;
}
#formulario .bricks-form__fieldset {
  gap: 4px !important;
}
#formulario .bricks-form__label {
  font-size: 11px !important;
  margin-bottom: 1px !important;
}
#formulario input,
#formulario select {
  font-size: 13px !important;
  padding: 4px 10px !important;
  height: auto !important;
}
#formulario .rd-form,
#formulario .bricks-form {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#formulario .bricks-form__submit {
  grid-column: span 2 !important;
  width: calc(100% + 10px) !important;
  margin-left: -5px !important;
  margin-right: -5px !important;
  box-sizing: border-box !important;
}
#formulario .bricks-form__submit .btn,
#formulario .bricks-form__submit button,
#formulario .bricks-form__submit input,
#formulario .rd-button,
#formulario button[type="submit"],
#formulario input[type="submit"] {
  font-size: 14px !important;
  padding: 10px 20px !important;
  margin-top: 6px !important;
  line-height: 1.3 !important;
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  background-color: #75BA19 !important;
  background: #75BA19 !important;
  border-color: #75BA19 !important;
}
#formulario .form-card__note,
#formulario [class*="privacy"],
#formulario [class*="note"],
#formulario [class*="lgpd"],
#formulario p:not(.form-card__title) {
  font-size: 10px !important;
  margin-top: 4px !important;
  line-height: 1.4 !important;
}

@media (max-width: 768px) {
  #formulario .bricks-form__fieldset {
    grid-template-columns: 1fr !important;
  }
  #formulario .bricks-form__field {
    grid-column: span 1 !important;
  }
  #formulario .bricks-form__submit {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 540px) {
  #formulario .form-card {
    width: calc(100vw - 24px);
    padding: 16px;
    max-height: calc(100vh - 90px);
    border-radius: 12px;
  }
}
#formulario.is-visible .form-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#formulario .form-card__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.2s ease;

  /* circular */
  border-radius: 50%;
  padding: 3px 4px;
}
#formulario .form-card__close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
/* ============================================================
   POR QUE ESCOLHER A ECOMETRIA
============================================================ */
/* ── RESPONSABILIDADE HÍDRICA ── */
.responsabilidade {
  padding: 80px 0;
  background: var(--gray-light);
}
.responsabilidade__intro-content .section-title {
  margin-bottom: 12px;
}
.responsabilidade__intro {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.responsabilidade__intro-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsabilidade__intro-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.responsabilidade__lead {
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  text-align: left;
  margin: 4px 0 16px;
}
.responsabilidade__text {
  font-size: 16px;
  color: var(--gray-mid, #555);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 14px;
  line-height: 1.7;
}
.responsabilidade__text--left {
  text-align: left;
  max-width: 100%;
  margin: 0 0 14px;
}
.responsabilidade__text--center {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .responsabilidade__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .responsabilidade__intro-img img {
    height: 240px;
  }
  .responsabilidade__lead {
    text-align: center;
  }
  .responsabilidade__text--left {
    text-align: center;
  }
}
.responsabilidade__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 40px;
}
.responsabilidade__pillar {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.responsabilidade__pillar:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.responsabilidade__pillar-icon {
  width: 56px;
  height: 56px;
  background: rgba(117,186,25,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.responsabilidade__pillar-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.responsabilidade__pillar-text {
  font-size: 14px;
  color: var(--gray-mid, #555);
  line-height: 1.65;
}
.responsabilidade__highlight {
  border-left: 4px solid #75BA19;
  padding: 18px 36px;
  max-width: 100%;
  margin: 0 0 28px;
  background: var(--white);
  border-radius: 0 8px 8px 0;
}
.responsabilidade__highlight-main {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 8px;
}
.responsabilidade__highlight-sub {
  font-size: 15px;
  color: #2a5080;
  margin: 0;
}
.responsabilidade__cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .responsabilidade__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .responsabilidade__pillars {
    grid-template-columns: 1fr;
  }
  .responsabilidade__lead {
    font-size: 18px;
  }
}

.por-que {
  padding: 72px 0;
  background: var(--white);
}
.diferenciais {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.diferencial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.diferencial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(17, 55, 101, 0.14);
}
.diferencial__icon {
  width: 64px;
  height: 64px;
  background: rgba(117, 186, 25, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.diferencial__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.4;
}
.diferencial__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}
.por-que__banner {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 28px;
  text-align: center;
  font-size: 15px;
}
.por-que__banner strong {
  color: var(--green);
  font-size: 22px;
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 72px 0;
  background: var(--white);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item--open {
  border-color: var(--green);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq__question:hover {
  background: #f8fafc;
}
.faq__icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 20px;
}
.faq__answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 18px;
}
.faq__item--open .faq__answer {
  max-height: 300px;
  padding-top: 4px;
}
.faq__item--open .faq__question {
  background: #f8fafc;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-final__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 42, 80, 0.94) 0%,
    rgba(17, 55, 101, 0.9) 100%
  );
}
.cta-final__inner {
  position: relative;
  /* z-index: 0; */
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-final__title {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-final__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  line-height: 1.75;
}
.cta-final__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--gray);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.75;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.footer__contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer__contacts a:hover {
  color: var(--green);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   EXIT INTENT POPUP
============================================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.exit-popup--visible {
  opacity: 1;
  pointer-events: all;
}
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 42, 80, 0.75);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.exit-popup__box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  z-index: 1;
}
.exit-popup--visible .exit-popup__box {
  transform: translateY(0) scale(1);
}
.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s;
}
.exit-popup__close:hover {
  background: #f1f5f9;
  color: var(--blue);
}

.exit-popup__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.exit-popup__warning {
  width: 56px;
  height: 56px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exit-popup__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 6px;
}
.exit-popup__value {
  font-size: 26px;
  font-weight: 900;
  color: #c0392b;
  line-height: 1.1;
  margin-bottom: 6px;
}
.exit-popup__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.exit-popup__form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 12px;
  text-decoration: none;
}
.exit-popup__form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.5;
}
.exit-popup__dismiss {
  display: block;
  width: 100%;
  margin-top: 16px;
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.exit-popup__dismiss:hover {
  color: var(--blue);
}

/* ============================================================
   CLIENTES CARROSSEL
============================================================ */
.clientes {
  padding: 64px 0 48px;
  background: var(--gray-light);
  overflow: hidden;
}
.clientes__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.clientes .section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Faixa de scroll infinito */
.clientes__track-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  margin-bottom: 36px;
}
.clientes__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: scroll-logos 22s linear infinite;
}
.clientes__track:hover {
  animation-play-state: paused;
}
.clientes__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  padding: 24px 44px;
  min-width: 240px;
  height: 120px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}
.clientes__item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.clientes__item img {
  max-height: 72px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s;
}
.clientes__item:hover img {
  filter: grayscale(0%);
}
.hero__inner .hero__content {
  width: 100%;
}
.hero_media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}
.hero_media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Badges de setor */
.clientes__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.clientes__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(17, 55, 101, 0.07);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(17, 55, 101, 0.15);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__form-wrapper {
    max-width: 520px;
  }
  .hero__title {
    font-size: 30px;
  }
  .diferenciais {
    grid-template-columns: repeat(2, 1fr);
  }
  .custo__inner {
    grid-template-columns: 1fr;
  }
  .para-quem__grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-final__inner {
    grid-template-columns: 1fr;
  }
  .cta-final__buttons {
    flex-direction: row;
  }
  .image-strip {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 16px;
    z-index: 99;
  }
  .header__nav--open {
    display: flex;
  }
  .header__menu-toggle {
    display: flex;
  }
  .header__cta {
    display: none;
  }

  .hero {
    padding: 48px 0 56px;
  }
  .hero__title {
    font-size: 26px;
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 22px;
  }

  .image-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 240px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step__arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  .step {
    max-width: 100%;
  }

  .para-quem__grid {
    grid-template-columns: 1fr;
  }
  .para-quem__image {
    min-height: 220px;
  }

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

  .cta-final__title {
    font-size: 26px;
  }
  .cta-final__buttons {
    flex-direction: column;
  }
  .cta-final__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .exit-popup__box {
    padding: 28px 20px 22px;
  }
  .exit-popup__title {
    font-size: 15px;
  }
  .exit-popup__value {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .diferenciais {
    grid-template-columns: 1fr;
  }
  .image-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 200px;
  }
  .hero__badges {
    gap: 6px;
  }
  .badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  .exit-popup__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Tabela de multas — scroll horizontal em telas pequenas */
@media (max-width: 600px) {
  .custo__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .custo__table th,
  .custo__table td {
    font-size: 12px;
    padding: 10px 10px;
    white-space: nowrap;
  }
  .custo__alert {
    font-size: 12px;
  }
}

/* Hero media — limita altura em telas muito pequenas */
@media (max-width: 480px) {
  .hero_media {
    border-radius: 8px;
  }
}

/* Exit popup — garante que não toque nas bordas */
@media (max-width: 400px) {
  .exit-popup {
    padding: 12px;
  }
  .exit-popup__box {
    padding: 24px 16px 18px;
  }
}
