/* Variáveis globais: ajuste cores, sombra, raio e largura máxima do site por aqui. */
:root {
  --navy: #071653;
  --navy-2: #0c1d68;
  --blue: #174cdb;
  --blue-2: #255dff;
  --cyan: #31cbe0;
  --ink: #091753;
  --muted: #5c668a;
  --line: #e5e9f5;
  --soft: #f6f8ff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 23, 83, 0.13);
  --radius: 8px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

/* Base do documento e pequenos resets para imagens, links e botões. */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  background: var(--white);
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

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

/* Espaçamento vertical padrão das seções. Algumas seções sobrescrevem esse valor. */
.section-pad {
  padding-block: 88px;
}

/* Header: barra superior fixa, navegação desktop e botão de menu mobile. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 233, 245, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--navy);
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  background: linear-gradient(135deg, #091c7a 4%, #214cff 48%, #31d5e1 100%);
  box-shadow: inset 0 -4px 8px rgba(6, 16, 64, 0.22);
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 0.95;
}

.brand-name span {
  font-size: 8px;
  font-weight: 800;
  color: var(--navy-2);
  letter-spacing: 0;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #26305f;
  font-size: 16px;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-small {
  min-height: 42px;
  padding-inline: 26px;
  font-size: 14px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #071653, #1545c7);
  box-shadow: 0 14px 26px rgba(20, 57, 170, 0.25);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(9, 23, 83, 0.09);
}

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

.btn-outline-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 9px;
  background: var(--navy);
}

/* Hero: controla altura da primeira dobra e o encaixe com o carrossel logo abaixo. */
.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero.section-pad {
  padding-bottom: 0;
}

/* Grid principal do hero: texto à esquerda e composição visual à direita. */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 32px;
  padding-left: 10px;
}

/* Eyebrow/pílula pequena usada nos títulos de várias seções. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 22px;
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  background-color: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(9, 23, 83, 0.06);
  color: #33407b;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow i {
  width: 21px;
  height: 20px;
  background: url('assents/icone-tag.svg') center/contain no-repeat;
}

.eyebrow.white {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Tipografia principal: h1 do hero, h2 das seções e textos corridos. */
h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(44px, 4.8vw, 64px);
}

h1 span {
  background: linear-gradient(90deg, #2723AC 0%, #3BFFDE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #2723AC;
  /* Fallback */
}

/* Ícone inline usado antes da palavra "simples" no título do hero. */
.headline-icon {
  display: inline-block;
  height: 0.85em;
  vertical-align: middle;
  margin-right: -10px;
  margin-top: -8px;
}

h2 {
  font-size: clamp(34px, 3.7vw, 56px);
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.68;
}

.hero-copy p {
  max-width: 590px;
  margin-top: 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.btn-hero {
  min-height: 58px;
  padding: 0 38px;
  font-size: 16px;
  font-weight: 600;
}

.btn-no-arrow::after {
  display: none;
}

/* Arte do hero: fundo azul, imagem principal dos veículos e ícones flutuantes. */
.hero-art {
  position: relative;
  min-height: 620px;
}

.hero-bg {
  position: absolute;
  inset: -120px -50vw 0 0;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  background: url("assents/fundo.svg") right center / cover no-repeat;
}

.hero-art .hero-main-img {
  position: absolute;
  right: -180px;
  bottom: -20px;
  width: min(900px, 66vw);
  max-width: none;
  z-index: 1;
}

/* Ícones flutuantes do hero. Ajuste top/left/right aqui para reposicionar. */
.floating-icon {
  position: absolute;
  width: clamp(60px, 10vw, 80px);
  max-width: none;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.icon-1 {
  top: 8%;
  left: 28%;
  /* Movido mais para a direita (antes era 2%) */
  animation-delay: 0s;
}

.icon-2 {
  top: 45%;
  right: 60px;
  /* Movido mais para a direita (antes era -20px) */
  animation-delay: -2s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Carrossel/faixa horizontal de textos. Para trocar velocidade, ajuste animation em .ticker-track. */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.hero+.ticker {
  position: relative;
  z-index: 3;
  margin-top: -6px;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 72px;
  padding-block: 22px;
  color: #4c536c;
  font-size: clamp(20px, 2.1vw, 31px);
  font-weight: 500;
  animation: marquee 28s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.ticker img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Animações de entrada: o JS adiciona .reveal aos elementos e .is-visible quando entram na tela. */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Fundo pontilhado usado nas seções claras. */
.pattern {
  background-image: radial-gradient(rgba(12, 29, 104, 0.11) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Cabeçalhos em duas colunas, como na seção de vantagens. */
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 80px;
  align-items: start;
}

.split-heading p {
  padding-top: 38px;
}

/* Cards genéricos: usados nas vantagens e coberturas. */
.cards {
  display: grid;
  gap: 28px;
}

.cards-three {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}

.info-card,
.service-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.info-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
}

.info-card::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 24px;
  height: 27px;
  background: url("assents/icones/simplus-icon-blue.svg") center / contain no-repeat;
}

/* Ícones dos cards. As imagens vêm da pasta assents/icones. */
.card-icon,
.service-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  background: #F7F8FB;
}

.card-icon img,
.service-card span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.info-card strong,
.service-card strong,
.step-card strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.28;
}

.info-card strong {
  font-weight: 500;
}

.step-card strong {
  font-weight: 600;
}

.info-card b,
.service-card b,
.step-card b {
  width: 22px;
  height: 3px;
  display: block;
  margin: 38px 0 18px;
  border-radius: 16px;
  background: var(--blue-2);
}

.info-card b {
  margin-top: auto;
}

.info-card p,
.step-card p {
  font-size: 16px;
  line-height: 1.58;
}

.service-card p {
  font-size: 14px;
  line-height: 1.58;
}

/* Seção "Quem é a SimPlus?": card branco sobreposto antes da área escura. */
.about {
  margin-top: -8px;
  position: relative;
  z-index: 2;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: end;
  overflow: hidden;
  min-height: 460px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-image {
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #ffffff;
}

.about-image img {
  width: 112%;
  max-width: none;
  margin-left: -66px;
  margin-bottom: -8px;
}

.about-copy {
  padding: 64px 68px 64px 26px;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy p {
  font-size: 18px;
}

.about-copy p+p {
  margin-top: 18px;
}

/* Seção escura do passo a passo. O padding-top compensa a sobreposição do card anterior. */
.dark-section {
  margin-top: -92px;
  padding-top: 210px;
  color: var(--white);
  overflow: hidden;
  background-color: #071653;
  background-image: 
    linear-gradient(rgba(7, 22, 83, 0.75), rgba(7, 22, 83, 0.75)),
    url('assents/fundo-comofunciona.png');
  background-position: bottom right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.dark-section h2,
.dark-section strong,
.dark-section p {
  color: var(--white);
}

.process h2 {
  margin-bottom: 46px;
}

/* Grade dos quatro passos do funcionamento da proteção. */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(128, 175, 255, 0.2) 0%, rgba(14, 25, 79, 0.2) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.step-header>img {
  height: 24px;
}

/* Número/ícone de cada passo. */
.step-card span {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

.step-card span img {
  width: 34px;
  height: 19px;
  object-fit: contain;
}

.step-card b {
  background: var(--cyan);
}

/* Chamada pequena abaixo dos cards do passo a passo. */
.process-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(128, 175, 255, 0.2) 0%, rgba(14, 25, 79, 0.2) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.process-callout img {
  width: 152px;
}

.process-callout p {
  font-weight: 600;
  line-height: 1.42;
}

/* Seção de coberturas: lista de serviços + arte vertical lateral. */
.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 390px;
  gap: 66px;
  align-items: stretch;
}

.services-copy h2 {
  margin-bottom: 58px;
}

.services-copy h2 img {
  width: 90px;
  display: inline-block;
  vertical-align: -8px;
}

/* Grade dos cards de cobertura. Em telas menores vira duas colunas e depois uma. */
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  min-height: 206px;
  padding: 24px;
}

.service-card b {
  margin: 28px 0 16px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: #0E2036;
  font-size: 14px;
  font-weight: 600;
}

.service-card a::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: 0 0 16px;
  background: url("assents/icones/whatsapp.svg") center / contain no-repeat;
}

.services-art {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  margin-top: 140px;
  height: auto;
}

.services-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  filter: drop-shadow(0 22px 34px rgba(9, 23, 83, 0.18));
}

/* Banner azul de conversão com imagem de fundo. */
.banner-section {
  padding-bottom: 72px;
  background: var(--white);
}

.banner-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy);
}

.banner-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 78px 40px 70px 92px;
}

.banner-copy .eyebrow.white {
  margin-bottom: 28px;
  color: #0E2036;
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.banner-copy h2 {
  max-width: 500px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.03;
}

.banner-copy h2,
.banner-copy p {
  color: var(--white);
}

.banner-copy p {
  max-width: 410px;
  margin: 28px 0 34px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
}

.banner-copy .btn {
  min-height: 52px;
  padding-inline: 30px;
  border-color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
}

/* FAQ: acordeão visual. O estado aberto depende da classe .active no HTML/JS. */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(440px, 1fr);
  gap: 100px;
  align-items: start;
}

.faq-copy p {
  max-width: 350px;
  margin: 26px 0 28px;
  font-size: 16px;
}

.faq-copy .btn {
  font-size: 16px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  color: var(--ink);
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.faq-item i {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  inset: 8px 3px auto;
  height: 2px;
  border-radius: 8px;
  background: #4d5574;
}

.faq-item i::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item.active i::after {
  transform: rotate(0deg);
}

.faq-panel {
  display: none;
  padding: 0 58px 28px 0;
}

.faq-panel p {
  font-size: 16px;
}

.faq-item.active .faq-panel {
  display: block;
}

/* Footer: rodapé com links, contato e informações legais. */
.footer {
  margin-top: 30px;
  padding: 78px 0 34px;
  color: var(--white);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background:
    radial-gradient(ellipse at 92% 0%, rgba(49, 68, 174, 0.5), transparent 34%),
    #071653;
}

.footer a,
.footer p,
.footer span,
.footer address {
  color: rgba(255, 255, 255, 0.82);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 68px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-footer .brand-name,
.brand-footer .brand-name span {
  color: var(--white);
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.back-top span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 0.95fr minmax(320px, 1.45fr);
  grid-template-areas:
    "explore solutions transparency contact"
    "address address social contact";
  gap: 76px 78px;
  align-items: start;
}

.footer-explore {
  grid-area: explore;
}

.footer-solutions {
  grid-area: solutions;
}

.footer-transparency {
  grid-area: transparency;
}

.contact-card {
  grid-area: contact;
}

.footer-address {
  grid-area: address;
}

.footer-social {
  grid-area: social;
}

.footer h3,
.footer strong {
  margin: 0 0 20px;
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
}

.footer-grid a {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.35;
}

/* Cartão branco de contato dentro do footer. */
.contact-card {
  width: 100%;
  max-width: 385px;
  padding: 32px;
  border-radius: 10px;
  background: var(--white);
}

.contact-card h3,
.contact-card p,
.contact-card a {
  color: var(--navy);
}

.contact-card strong {
  display: inline;
  margin: 0;
  color: var(--navy);
  font-size: inherit;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}

.contact-options a {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 10px;
  margin: 0;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  background: #f5f7ff;
}

.contact-options img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.45;
}

.footer address,
.social {
  font-style: normal;
  grid-column: span 1;
}

.footer-address {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.45;
}

.social span {
  display: flex;
  gap: 12px;
}

.social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 1;
  transform: none;
}

/* Tablet: empilha grids principais e ajusta a composição visual do hero. */
@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .split-heading,
  .about-card,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 520px;
    order: -1;
  }

  .hero-bg {
    inset: 0 -20px 70px;
    border-radius: 8px;
  }

  .hero-art .hero-main-img {
    right: 50%;
    bottom: 0;
    width: min(760px, 100vw);
    transform: translateX(50%);
  }

  .split-heading {
    gap: 20px;
  }

  .split-heading p {
    padding-top: 0;
  }

  .services-grid {
    gap: 36px;
  }

  .services-art {
    max-width: 280px;
    margin-inline: auto;
    margin-top: 0;
    align-self: end;
    height: auto;
  }

  .services-art img {
    height: auto;
    object-fit: contain;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "explore solutions"
      "transparency contact"
      "address address"
      "social social";
  }
}

/* Mobile/tablet estreito: ativa menu hamburguer e reduz grades para duas colunas. */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px 10px;
  }

  .cards-three,
  .process-grid,
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-section {
    margin-top: -40px;
    padding-top: 132px;
  }

  .process-callout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .banner-card {
    min-height: 520px;
  }

  .banner-card>img {
    object-position: 58% center;
  }

  .banner-copy {
    padding: 48px 34px;
  }
}

/* Celular: reduz espaçamentos, empilha cards e adapta imagens grandes. */
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .section-pad {
    padding-block: 62px;
  }

  .hero.section-pad {
    padding-top: 0;
    padding-bottom: 48px;
  }

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

  .hero-grid {
    width: 100%;
    gap: 0;
  }

  .hero-art {
    min-height: 480px;
    overflow: hidden;
    border-radius: 0;
  }

  .hero-bg {
    inset: 0 0 70px;
    border-radius: 0;
    background-position: center bottom;
    background-size: 880px auto;
  }

  .hero-art .hero-main-img {
    width: min(520px, 112vw);
    bottom: 28px;
  }

  .floating-icon {
    width: 54px;
  }

  .icon-1 {
    top: 30%;
    left: 27%;
  }

  .icon-2 {
    top: 49%;
    right: 24%;
  }

  .hero-copy {
    width: min(calc(100% - 48px), var(--container));
    margin: 28px auto 0;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  p {
    font-size: 15px;
  }

  .actions,
  .actions .btn {
    width: 100%;
  }

  .hero .actions {
    margin-bottom: 42px;
  }

  .hero+.ticker {
    margin-top: 0;
  }

  .ticker-track {
    gap: 34px;
    padding-block: 16px;
    font-size: 20px;
  }

  .ticker img {
    width: 36px;
    height: 36px;
  }

  .cards-three,
  .process-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .cards-three {
    margin-top: 42px;
  }

  .step-card {
    min-height: unset;
  }

  .info-card,
  .service-card {
    min-height: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    padding: 32px 30px;
  }

  .info-card b,
  .service-card b {
    margin-top: auto;
  }

  .service-card p {
    font-size: 16px;
    line-height: 1.58;
  }

  .about-card {
    min-height: unset;
    display: flex;
    flex-direction: column;
  }

  .about-copy {
    order: 1;
    padding: 32px 28px 20px;
  }

  .about-image {
    order: 2;
    min-height: 430px;
    align-items: flex-end;
  }

  .about-image img {
    width: 128%;
    margin-left: -96px;
    margin-bottom: 0;
  }

  .services-copy h2 img {
    width: 90px;
  }

  .services-art {
    display: none;
  }

  .banner-card {
    min-height: 640px;
    border-radius: 16px;
  }

  .banner-card>img {
    content: url("assents/banner-cta-mobile.png");
    object-position: center;
    opacity: 1;
  }

  .banner-copy {
    max-width: none;
    padding: 32px 26px;
  }

  .banner-copy .eyebrow.white {
    margin-bottom: 22px;
  }

  .banner-copy h2 {
    max-width: 280px;
    font-size: 34px;
    line-height: 1.08;
  }

  .banner-copy p {
    max-width: 285px;
    margin: 22px 0 24px;
    font-size: 14px;
    line-height: 1.55;
  }

  .banner-copy .btn {
    min-height: 46px;
    padding-inline: 24px;
    font-size: 14px;
  }

  .faq-grid {
    gap: 42px;
  }

  .faq-item button {
    min-height: 66px;
    font-size: 16px;
  }

  .faq-panel {
    padding-right: 0;
  }

  .footer {
    padding-top: 46px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "explore"
      "solutions"
      "transparency"
      "contact"
      "address"
      "social";
    gap: 34px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }
}
