@font-face {
  font-family: 'Antique Olive Nord D';
  src: url('fonts/AntiqueOliNorD-Reg.woff2') format('woff2'),
  url('fonts/AntiqueOliNorD-Reg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive Nord D';
  src: url('fonts/AntiqueOliNorD-RegIta.woff2') format('woff2'),
  url('fonts/AntiqueOliNorD-RegIta.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive';
  src: url('fonts/AntiqueOli-Med.woff2') format('woff2'),
  url('fonts/AntiqueOli-Med.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive';
  src: url('fonts/AntiqueOli-Lig.woff2') format('woff2'),
  url('fonts/AntiqueOli-Lig.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive Cond';
  src: url('fonts/AntiqueOliCon-Reg.woff2') format('woff2'),
  url('fonts/AntiqueOliCon-Reg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive Cond';
  src: url('fonts/AntiqueOliCon-Bol.woff2') format('woff2'),
  url('fonts/AntiqueOliCon-Bol.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive Compact';
  src: url('fonts/AntiqueOliCom-Reg.woff2') format('woff2'),
  url('fonts/AntiqueOliCom-Reg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive Compact';
  src: url('fonts/AntiqueOliCom-RegIta.woff2') format('woff2'),
  url('fonts/AntiqueOliCom-RegIta.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive';
  src: url('fonts/AntiqueOli-Reg.woff2') format('woff2'),
  url('fonts/AntiqueOli-Reg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive';
  src: url('fonts/AntiqueOli-Bol.woff2') format('woff2'),
  url('fonts/AntiqueOli-Bol.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Olive';
  src: url('fonts/AntiqueOli-RegIta.woff2') format('woff2'),
  url('fonts/AntiqueOli-RegIta.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}


:root {
  --blue: #0b2a66;
  --blue-deep: #071f59;
  --cyan: #08bce8;
  --green: #42ff00;
  --white: #ffffff;
  --ink: #0b2a66;
  --muted: #1d3465;
  --container: 1120px;
  --wide: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #fff; color: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Poppins", "Sora", Arial, sans-serif;
  line-height: 1.35;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.container {
  width: min(calc(100% - 42px), var(--container));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 42px), 1040px); }
.center { text-align: center; }
.section-dark { color: #fff; }

/* TOPO / MENU */
.site-header {
  position: absolute;
  z-index: 50;
  top: clamp(26px, 3.05vw, 78px);
  left: 0;
  width: 100%;
  background: var(--cyan);
  box-shadow: none;
}
.nav-wrap {
  height: clamp(48px, 3.6vw, 92px);
  width: min(100%, 1280px);
  margin: auto;
  padding: 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.brand { display: none; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  color: #fff;
  text-transform: uppercase;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(12px, .78vw, 15px);
  font-weight: 600;
  letter-spacing: .02em;
}
.main-nav a { white-space: nowrap; padding: 12px 0; }
.main-nav a:hover { color: var(--blue-deep); }
.main-nav .nav-cta {
  color: var(--blue-deep);
  background: var(--green);
  font-weight: 900;
  padding: clamp(10px, .9vw, 16px) clamp(18px, 1.6vw, 30px);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.menu-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 30px; font-weight: 900; }

/* HERO */
.hero {
  position: relative;
  height: clamp(980px, 105vw, 3010px);
  min-height: clamp(980px, 105vw, 3010px);
  padding-top: clamp(390px, 41.2vw, 1060px);
  text-align: center;
  overflow: hidden;
  background-image: url('assets/banner_sc.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.hero-bg, .hero-car-line { display: none; }
.hero-content {
  position: relative;
  z-index: 3;
  margin-inline: auto;
}
.hero-logo {
  width: clamp(185px, 19.6vw, 502px);
  margin: 0 auto clamp(24px, 2.3vw, 58px);
  filter: brightness(0) invert(1);
}
.hero h1 {
  width: min(100%, 1320px);
  margin: 0 auto clamp(34px, 3.2vw, 82px);
  color: #fff;
  text-align: center;
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(38px, 4.5vw, 108px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: normal;
  text-shadow: 0 8px 20px rgba(0,0,0,.16);
}
.hero h1 span { color: var(--cyan); }
.hero-subtitle {
  width: min(100%, 980px);
  margin: 0 auto clamp(44px, 4.2vw, 108px);
  color: #fff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.24;
  font-weight: 400;
  margin-top: 60px !important;

}
.hero-subtitle strong { font-weight: 900; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 36px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 900;
  transition: transform .18s ease;
  clip-path: polygon(30px 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}
.btn:hover { transform: translateY(-2px); }
a.btn.btn-whatsapp.hero-btn {
  padding: 0;
  min-height: 0;
  background: transparent;
  clip-path: none;
  margin-bottom: 25px;
}
a.btn.btn-whatsapp.hero-btn img { width: clamp(310px, 48vw, 1232px); }
.hero-contact {
  margin-top: clamp(34px, 3.2vw, 82px);
  color: #fff;
  font-family: "Sora", Arial, sans-serif;
  font-weight: 700;
}
.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(28px, 2.65vw, 68px);
  font-weight: 900;
  line-height: 1;
}
.hero-contact a::before {
  content: "";
  display: inline-block;
  width: .48em;
  height: .78em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23fff' d='M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM48 64h224v320H48V64zm112 416a24 24 0 1 0 0-48 24 24 0 0 0 0 48z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero-contact address {
  margin-top: 40px;
  font-style: normal;
  font-size: clamp(17px, 1.45vw, 37px);
  line-height: 1.18;
}
.hero-contact address::before {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 1.18em;
  margin-right: 8px;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2C8.1 2 5 5.1 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.9-3.1-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bg-cars {
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: center;
  margin-top: -190px;
  pointer-events: none;
}
.bg-cars::after { content: none; }
.hero-cars {
  width: min(70vw, 1788px);
  filter: drop-shadow(0 24px 22px rgba(0,0,0,.25));
}

/* HISTÓRIA */
.story {
  position: relative;
  padding: clamp(155px, 13vw, 335px) 0 clamp(80px, 7vw, 175px);
  background: #fff;
  overflow: hidden;
}
.story-grid {
  position: relative;
  min-height: clamp(760px, 75vw, 1920px);
  width: min(calc(100% - 42px), 1780px);
  margin-inline: auto;
}
.story-copy { width: min(43vw, 720px); }
.eyebrow {
  margin: 0 0 20px;
  color: var(--cyan);
  text-transform: uppercase;
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(36px, 3vw, 76px);
  line-height: .95;
  font-weight: normal;
  letter-spacing: -.02em;
}
.story h2, .brands h2, .audience h2 {
  margin: 0 0 34px;
  color: var(--blue);
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(44px, 4.3vw, 108px);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: normal;
}
.texto-historia, .story p {
  color: var(--blue);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(16px, 1.16vw, 30px);
  line-height: 1.42;
}
.texto-historia p { margin: 0 0 clamp(20px, 1.6vw, 42px); }
img.story-photo {
  position: absolute;
  top: clamp(90px, 8vw, 205px);
  right: max(-70px, -5vw);
  width: min(44vw, 981px);
  max-width: none;
  z-index: 1;
}
.bt-box-1 {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  margin-top: clamp(-80px, -4vw, -20px);
  margin-bottom: clamp(70px, 5.6vw, 145px);
}
.bt-box-1 .btn { padding: 0; min-height: 0; clip-path: none; }
.bt-box-1 img { width: clamp(310px, 48vw, 1232px); }

/* FAIXAS */
.ribbon {
  position: relative;
  z-index: 5;
  width: 110vw;
  margin-left: -5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-family: "Sora", Arial, sans-serif;
  letter-spacing: .12em;
  white-space: nowrap;
}
.ribbon-blue {
  height: clamp(46px, 4.4vw, 112px);
  color: #fff;
  background: var(--blue);
  font-size: clamp(17px, 1.65vw, 42px);
  transform: rotate(-3deg);
}
.ribbon-cyan {
  height: clamp(42px, 3.5vw, 90px);
  color: #fff;
  background: var(--cyan);
  font-size: clamp(15px, 1.28vw, 33px);
  transform: rotate(1.4deg);
  margin-top: clamp(8px, .75vw, 18px);
}

/* SERVIÇOS */
.services {
  padding: clamp(125px, 11vw, 285px) 0 clamp(100px, 8vw, 210px);
  background: #fff;
}
.center-title {
  margin: 0 0 clamp(58px, 5.2vw, 134px);
  text-align: center;
  color: var(--cyan);
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(40px, 3.4vw, 86px);
  line-height: .96;
  font-weight: normal;
  letter-spacing: -.03em;
}
.center-title.light { color: #fff; }
.services .container { width: min(calc(100% - 42px), 1120px); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(64px, 5.3vw, 136px);
}
.services-row {
  display: grid;
  justify-content: center;
  align-items: stretch;
  gap: clamp(28px, 3.2vw, 72px);
}
.services-row-top { grid-template-columns: repeat(3, minmax(0, 250px)); }
.services-row-bottom { grid-template-columns: repeat(4, minmax(0, 250px)); }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 430px;
  color: #fff;
  background: var(--blue-deep);
  border-radius: 0;
  box-shadow: none;
}
.services-row.services-row-top .service-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 2;
  width: 54px;
  height: 54px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.services-row-bottom .service-card::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  width: 54px;
  height: 54px;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}




.service-card img { width: 100%; height: 165px; object-fit: cover; }
.service-card div { padding: 26px 24px 34px; }
.service-card h3 {
  margin: 0 0 13px;
  color: var(--cyan);
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: 25px;
  line-height: .96;
  letter-spacing: -.02em;
  font-weight: normal;
  text-transform: none;
}
.service-card p {
  margin: 0;
  color: #fff;
  /* font-size: 14px; */
  line-height: 1.35;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* DIFERENCIAIS */
.differentials {
  padding: clamp(40px, 4vw, 100px) 0 clamp(105px, 8.8vw, 225px);
  background: #fff;
}
.diff-heading {
  margin: 0 auto clamp(66px, 6vw, 155px);
  color: var(--blue);
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(46px, 4.3vw, 110px);
  line-height: 1.05;
  text-align: center;
  font-weight: normal;
  letter-spacing: -.03em;
}
.diff-heading strong, .diff-card strong { color: var(--cyan); font-weight: normal; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 128px);
  justify-content: center;
  align-items: stretch;
  width: min(calc(100% - 42px), 1120px);
  margin: 0 auto;
}
.diff-card {
  position: relative;
  min-height: 820px;
  padding: 76px 70px 72px;
  color: #fff;
  background: var(--blue);
}
.diff-card1::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 85px;
  height: 85px;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.diff-card2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 85px;
  height: 85px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.diff-card2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: var(--cyan);
}
.diff-card h3 {
  margin: 0 0 50px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(23px, 1.9vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}
.check-list {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 44px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.33vw, 34px);
  line-height: 1.16;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -4px;
  color: #fff;
  font-size: 1.15em;
  font-weight: 500;
}
.box-avatar {
  display: flex;
  justify-content: center;
}
.check-list.dark li { color: var(--blue); }
.check-list.dark li::before { color: var(--blue); }
.diff-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 56px;
}
.diff-icons span { width: 92px; height: 92px; display: block; }
.diff-icons img { width: 100%; height: 100%; object-fit: contain; }
.bt-2 { display: flex; justify-content: center; margin-top: clamp(80px, 7vw, 178px); }
.bt-2 .btn { padding: 0; min-height: 0; clip-path: none; }
.bt-2 img { width: clamp(360px, 55vw, 1404px); }

/* SOLUÇÕES */
.solutions {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 125px) 0 clamp(76px, 24vw, 170px);
  background: var(--blue);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 350px));
  gap: 58px 70px;
  justify-content: center;
  margin-top: 0;
}
.solution-card {
  position: relative;
  min-height: 400px;
  padding: 38px 42px 48px;
  color: #fff;
  background: var(--cyan);
}
.solution-card::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 54px;
  height: 54px;
  background: var(--blue);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.gr { display: flex; justify-content: center; margin-bottom: 28px; }
.gr img { width: 86px; height: 86px; object-fit: contain; }
.solution-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}
.solution-card p {
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.18;
}
.faixa-2 { margin-top: -70px; position: relative; z-index: 6; }
.faixa-2 .ribbon-cyan.big {
  height: clamp(50px, 4.7vw, 120px);
  font-size: clamp(20px, 2.15vw, 55px);
  transform: rotate(
    357deg);
  margin-top: 0;
}
.faixa-2 .ribbon-blue.small {
  height: clamp(42px, 3.6vw, 92px);
  font-size: clamp(15px, 1.35vw, 34px);
  transform: rotate(2.5deg);
  margin-top: clamp(10px, 1vw, 24px);
}

/* MARCAS */
.brands {
  padding: clamp(170px, 13vw, 330px) 0 clamp(120px, 10vw, 255px);
  background: #fff;
}
.brands-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px 110px;
  align-items: center;
  width: min(calc(100% - 42px), 1120px);
  margin: 0 auto;
}
.brands-copy { max-width: 650px; }
.brands .eyebrow { margin-bottom: 22px; }
.brands h2 { margin-bottom: 30px; }
.brands p {
  margin: 0;
  color: var(--blue);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(18px, 1.4vw, 34px);
  line-height: 1.24;
}
.brands strong { display: none; }
.brands-grid > img {
  width: 390px;
  justify-self: end;
}
.partner-logos {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px 38px;
  max-width: 850px;
  margin: 50px auto 0;
}

.partner-logos img {
  max-width: 140px;
  max-height: 58px;
  object-fit: contain;
}

/* REVISÃO */
.review {
  position: relative;
  min-height: clamp(980px, 83vw, 2125px);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--blue);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 6%);
}
.review::after {
  content: "";
  position: absolute;
  right: max(-120px, -4vw);
  top: clamp(110px, 11vw, 280px);
  width: clamp(150px, 18vw, 460px);
  height: clamp(160px, 19vw, 500px);
  background: url('assets/chave-1.png') center/contain no-repeat;
  z-index: 5;
  pointer-events: none;
}
.brands-grid p:first{
  font-family: 'Antique Olive Compact';
  color: #00c2ff;
}
p.eyebrow.primeiro-eye {
  font-family: 'Antique Olive Compact', "Poppins", sans-serif !important;
  font-size: 50px !important;
  line-height: normal;
  color: #00c2ff;
}
.review-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11,42,102,.98) 0%, rgba(11,42,102,.95) 45%, rgba(11,42,102,.70) 72%, rgba(11,42,102,.95) 100%), url('assets/revisao-carro.webp') center bottom/cover no-repeat;
}
.review-content {
  position: relative;
  z-index: 3;
  padding-top: clamp(190px, 15vw, 385px);
}
.review h2 {
  margin: 0 auto clamp(52px, 4.5vw, 115px);
  /* max-width: 1150px; */
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(42px, 4.1vw, 105px);
  line-height: 1.05;
  font-weight: normal;
  letter-spacing: -.03em;
}
.review h2::first-line { color: #fff; }
.review h2 span, .review h2 strong { color: var(--cyan); }
.review h3 {
  max-width: 900px;
  margin: 0 auto clamp(56px, 4vw, 102px);
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(33px, 3vw, 76px);
  line-height: 1.1;
  font-weight: normal;
}
.review p {
  max-width: 850px;
  margin: 0 auto 32px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.45vw, 36px);
  line-height: 1.28;
}
.review .btn {
  margin-top: clamp(56px, 5vw, 130px);
  min-height: clamp(62px, 5.2vw, 132px);
  padding: 0 clamp(34px, 4.5vw, 115px);
  color: #061f59;
  background: var(--green);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(15px, 1.3vw, 34px);
  font-weight: 500;
  clip-path: polygon(42px 0, 100% 0, calc(100% - 42px) 100%, 0 100%);
}

.form-card button::before {
  content: "";
  width: 1.55em;
  height: 1.55em;
  flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23061f59' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.3 32 1.6 131.7 1.6 254.3c0 39.1 10.2 77.3 29.6 111L0 480l117.3-30.8c32.4 17.7 68.9 27 106.5 27h.1c122.6 0 222.3-99.7 222.3-222.3 0-59.3-23.1-115-65.3-156.8zM223.9 438.7h-.1c-33.5 0-66.3-9-94.9-26l-6.8-4-69.6 18.3 18.6-67.8-4.4-7c-18.5-29.4-28.2-63.3-28.2-98 0-101.4 82.5-183.8 183.9-183.8 49.1 0 95.2 19.1 129.9 53.8 34.7 34.7 53.8 80.8 53.8 129.9-.1 101.4-82.6 183.8-184.2 183.8zm101-138.1c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.5-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.5-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.7 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bt-3 {
  margin-top: clamp(45px, 4vw, 72px);
}

.bt-3 {
  display: flex;
  justify-content: center;
  margin-top: clamp(80px, 7vw, 178px);
  padding-bottom: 100px;
}
.bt-3 img {
  width: clamp(330px, 42vw, 610px);
}
/* PARA VOCÊ */
.audience {
  position: relative;
  background: #fff;
  padding: clamp(150px, 12vw, 300px) 0 clamp(165px, 14vw, 360px);
  overflow: hidden;
  position: relative;
}

.audience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 43% minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  width: min(calc(100% - 42px), 1150px);
  margin: 0 auto;
}
.audience-photo {
  width: 420px;
  /* object-fit: cover; */
  /* clip-path: polygon(0 0, 75% 0, 100% 16%, 100% 84%, 76% 100%, 0 92%); */
  /* position: absolute; */
}
.audience h2 {
  text-transform: uppercase;
  font-size: clamp(46px, 4.5vw, 112px);
  margin-bottom: 62px;
}
.audience .check-list { gap: 34px; }
.audience .check-list li {
  padding-left: 42px;
  font-size: clamp(18px, 1.55vw, 38px);
  line-height: 1.18;
}
.green-slash {
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: 275px !important;
  z-index: 4;
  height: clamp(54px, 5vw, 126px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--green);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(16px, 1.6vw, 40px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  transform: rotate(4.5deg);
  white-space: nowrap;
}

/* DEPOIMENTOS */
.testimonials {
  padding: clamp(110px, 9vw, 230px) 0 clamp(115px, 9vw, 230px);
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(calc(100% - 42px), 1050px);
  margin: 0 auto;
}
.testimonial-card {
  position: relative;
  min-height: 420px;
  padding: 120px 34px 46px;
  color: #fff;
  background: var(--blue-deep);
  border-radius: 12px;
}

.avatar {
  /* position: absolute; */
  /* top: 30px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--cyan);
}
.testimonial-card p {
  margin: 40px 0 40px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.22;
}
.audience-copy {
  margin-top: -215px;
}
.testimonial-card strong {
  display: block;
  color: #fff;
  text-align: center;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
}

/* FAQ */
.box-faq { position: relative; padding-top: 0; background: var(--blue); }
.faq {
  position: relative;
  padding: clamp(150px, 12vw, 300px) 0 clamp(120px, 10vw, 260px);
  background: var(--blue);
  color: #fff;
}
.faq::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 150px;
  height: 150px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}
.faq-tool {
  position: absolute;
  z-index: 4;
  left: clamp(-130px, -5vw, -20px);
  top: clamp(-95px, -4vw, -20px);
  width: clamp(235px, 24vw, 646px);
  transform: rotate(2deg);
  pointer-events: none;
}
.faq .container { width: min(calc(100% - 42px), 1050px); }
.faq h2 {
  margin: 0 0 clamp(58px, 5vw, 130px);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(42px, 3.6vw, 92px);
  line-height: 1;
  font-weight: normal;
}
.faq-list { border-top: 0; display: block; }
.faq details {
  padding: clamp(22px, 1.8vw, 46px) clamp(0px, 4vw, 70px);
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.faq summary {
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(19px, 1.5vw, 38px);
  line-height: 1.14;
  font-weight: 900;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: ">"; margin-right: 8px; color: #fff; }
.faq p {
  margin: 20px 0 0 20px !important;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.45vw, 36px);
  line-height: 1.18;
}

/* FORMULÁRIO */
.budget {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(120px, 10vw, 255px) 0 clamp(230px, 18vw, 460px);
  background: #fff;
  overflow: visible;
}
.budget-tool {
  position: absolute;
  z-index: 5;
  right: max(calc(50% - 640px), -60px);
  top: 48%;
  width: clamp(190px, 18vw, 648px);
  transform: rotate(-12deg);
  pointer-events: none;
}
.form-card {
  position: relative;
  width: min(62vw, 900px);
  max-width: calc(100% - 42px);
  overflow: visible;
  padding: clamp(70px, 6vw, 150px) clamp(55px, 7vw, 180px) clamp(88px, 8vw, 205px);
  color: #fff;
  text-align: left;
  background: var(--cyan);
  border-radius: 18px;
  box-shadow: none;
}
.form-logo {
  width: clamp(150px, 14vw, 330px);
  margin: 0 auto 38px;
  filter: brightness(0) invert(1);
}
.form-card h2 {
  margin: 0 0 clamp(52px, 5vw, 120px);
  color: #fff;
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(42px, 4.2vw, 108px);
  line-height: 1.05;
  font-weight: 600;
}
.form-card form { display: grid; gap: 30px; }
.form-card label {
  display: grid;
  gap: 10px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(17px, 1.4vw, 34px);
  line-height: 1.1;
}
.form-card input[type=text],
.form-card input[type=email],
.form-card input[type=tel] {
  width: 100%;
  height: clamp(60px, 5vw, 126px);
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  padding: 0 clamp(22px, 2vw, 52px);
  font-size: clamp(17px, 1.4vw, 34px);
  outline: none;
}
.form-card input::placeholder { color: #b8c3d2; }
.form-card input:focus { box-shadow: 0 0 0 4px rgba(11, 42, 102, .18); }
.form-card fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 70px;
  margin: clamp(48px, 4vw, 108px) 0 0;
  padding: 0;
  border: 0;
  color: var(--blue);
}
.form-card legend {
  grid-column: 1 / -1;
  margin: 0 auto 36px;
  color: var(--blue);
  text-align: center;
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(38px, 3.4vw, 86px);
  line-height: 1;
  font-weight: normal;
}
.form-card fieldset label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--blue);
  font-family: 'Antique Olive Compact', "Poppins", sans-serif;
  font-size: clamp(25px, 2.35vw, 60px);
  line-height: .95;
  font-weight: normal;
}
.form-card input[type=checkbox] {
  flex: 0 0 auto;
  width: .75em;
  height: .75em;
  margin-top: .1em;
  appearance: none;
  border: 1.8px solid var(--blue);
  border-radius: 3px;
  background: transparent;
}
.form-card input[type=checkbox]:checked { background: var(--blue); box-shadow: inset 0 0 0 3px var(--cyan); }
.form-card button {
  position: absolute;
  left: 50%;
  bottom: clamp(-145px, -8vw, -80px);
  transform: translateX(-50%);
  min-height: clamp(62px, 5.2vw, 132px);
  padding: 0 clamp(42px, 5vw, 128px);
  border: 0;
  white-space: nowrap;
  color: #061f59;
  background: var(--green);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(15px, 1.25vw, 32px);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(42px 0, 100% 0, calc(100% - 42px) 100%, 0 100%);
}
.form-card button:hover { transform: translateX(-50%) translateY(-2px); }

/* RODAPÉ */
.site-footer {
  position: relative;
  /* overflow: hidden; */
  padding: clamp(110px, 8vw, 210px) 0 70px;
  color: #fff;
  background: var(--blue-deep);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 20vw;
  height: 8vw;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 110px;
  width: min(calc(100% - 42px), 1120px);
  margin: 0 auto;
}
.footer-grid > div:nth-child(1) { grid-column: 1; grid-row: 1; }
.footer-grid > div:nth-child(2) { grid-column: 1; grid-row: 2; }
.footer-grid > div:nth-child(3) { grid-column: 2; grid-row: 1 / span 2; }
.site-footer h2 {
  margin: 0 0 28px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(28px, 2.3vw, 58px);
  line-height: 1.1;
  font-weight: 400;
}
.site-footer p, .site-footer a {
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(15px, 1.05vw, 27px);
  line-height: 1.28;
}
.site-footer p { margin: 0 0 22px; }
.site-footer a { display: inline-block; font-weight: 700; }
.footer-nav {
  display: grid;
  gap: 4px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(15px, 1.05vw, 27px);
  line-height: 1.2;
}
.map-link img {
  width: min(100%, 420px);
  border: 0;
  border-radius: 0;
}
.footer-small {
  max-width: 560px;
  margin-top: 80px !important;
  color: #fff !important;
  font-size: clamp(15px, 1.05vw, 27px) !important;
  line-height: 1.68 !important;
}
.footer-bottom {
  width: min(calc(100% - 42px), 1120px);
  margin: 70px auto 0;
  padding-top: 0;
  border: 0;
  display: flex;
  justify-content: center;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.4vw, 36px);
}

.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--green);
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(0,0,0,.2);
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  transition: opacity .2s ease;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 1180px) {
  .services-row-top { grid-template-columns: repeat(3, minmax(0, 230px)); }
  .services-row-bottom { grid-template-columns: repeat(4, minmax(0, 220px)); }
  .services-row { gap: 24px; }
  .service-card { min-height: 410px; }
  .diff-card { padding: 58px 48px; min-height: 740px; }
  .check-list { gap: 22px; }
}

@media (max-width: 980px) {
  .site-header { top: 0; position: fixed; }
  .nav-wrap { justify-content: space-between; height: 64px; }
  .brand { display: inline-block; color: #fff; font-weight: 900; }
  .brand-mark { color: #fff; font-size: 20px; font-weight: 900; }
  .brand-mark span { color: var(--green); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--cyan);
    font-size: 13px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .hero { margin-top: 0; }
  .story-grid { min-height: 0; }
  .story-copy { width: min(100%, 620px); }
  img.story-photo { position: relative; top: auto; right: auto; width: min(100%, 520px); margin: 40px auto 0; }
  .services-row-top, .services-row-bottom { grid-template-columns: repeat(2, minmax(0, 250px)); }
  .diff-grid, .solutions-grid, .testimonial-grid, .brands-grid, .audience-grid, .footer-grid { grid-template-columns: 1fr; }
  .diff-card { min-height: auto; }
  .brands-grid > img { justify-self: center; }
  .partner-logos::before { flex-basis: 100%; text-align: center; }
  .review::after { opacity: .65; }
  .audience-photo { width: 100%; height: auto; max-height: 680px; }
  .green-slash { position: relative; bottom: auto; margin-top: 40px; transform: rotate(3deg); }
  .footer-grid > div:nth-child(n) { grid-column: auto; grid-row: auto; }
  .footer-small { margin-top: 35px !important; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .hero {
    height: 920px;
    min-height: 920px;
    padding-top: 250px;
    background-size: auto 920px;
  }
  .hero h1 { font-size: 34px; }
  .hero-subtitle { font-size: 15px; }
  a.btn.btn-whatsapp.hero-btn img, .bt-box-1 img, .bt-2 img { width: min(100%, 360px); }
  .hero-contact a { font-size: 25px; }
  .hero-contact address { font-size: 14px; }
  .bg-cars { margin-top: -125px; }
  .hero-cars { width: 92vw; }
  .story { padding-top: 95px; }
  .eyebrow { font-size: 34px !important; }
  .story h2, .brands h2, .audience h2, .diff-heading { font-size: 38px; }
  .texto-historia, .story p { font-size: 15px; }
  .ribbon { letter-spacing: .06em; }
  .ribbon-blue, .ribbon-cyan, .faixa-2 .ribbon-cyan.big, .faixa-2 .ribbon-blue.small { font-size: 12px; height: 38px; }
  .services-row-top, .services-row-bottom { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }
  .service-card { min-height: auto; }
  .diff-card { padding: 44px 30px; }
  .check-list li { font-size: 16px; padding-left: 30px; }
  .solutions { clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 4%); }
  .solution-card { min-height: auto; padding: 32px; }
  .solution-card p { font-size: 17px; }
  .brands { padding-top: 110px; }
  .review { min-height: 900px; }
  .review-content { padding-top: 120px; }
  .review h2 { font-size: 34px; }
  .review h3 { font-size: 27px; }
  .review p { font-size: 15px; }
  .review .btn, .form-card button { width: min(100%, 360px); padding-inline: 20px; font-size: 12px; clip-path: polygon(24px 0, 100% 0, calc(100% - 24px) 100%, 0 100%); }
  .audience { padding-bottom: 90px; }
  .testimonial-card { min-height: auto; }
  .faq { padding-top: 100px; }
  .faq-tool { width: 220px; left: -95px; top: -60px; }
  .faq h2 { font-size: 30px; }
  .faq summary, .faq p { font-size: 15px; }
  .budget { padding-bottom: 180px; }
  .budget-tool { opacity: .55; right: -120px; }
  .form-card { padding: 48px 24px 100px; }
  .form-card h2 { font-size: 30px; }
  .form-card label, .form-card input[type=text], .form-card input[type=email], .form-card input[type=tel] { font-size: 15px; }
  .form-card fieldset { grid-template-columns: 1fr; gap: 12px; }
  .form-card legend { font-size: 30px; }
  .form-card fieldset label { font-size: 26px; }
  .footer-grid { gap: 45px; }
  .site-footer h2 { font-size: 26px; }
}

.footer-phone,
.footer-address,
.footer-hours {
  position: relative;
  padding-left: 34px;
}
.footer-phone::before,
.footer-address::before,
.footer-hours::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.3 32 1.6 131.7 1.6 254.3c0 39.1 10.2 77.3 29.6 111L0 480l117.3-30.8c32.4 17.7 68.9 27 106.5 27h.1c122.6 0 222.3-99.7 222.3-222.3 0-59.3-23.1-115-65.3-156.8z'/%3E%3C/svg%3E");
}
.footer-address::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2C8.1 2 5 5.1 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.9-3.1-7-7-7z'/%3E%3C/svg%3E");
}
.footer-hours::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 1.8A10.2 10.2 0 1 0 12 22.2 10.2 10.2 0 0 0 12 1.8zm1 10.1 4.2 2.5-1 1.7-5.2-3.1V6h2v5.9z'/%3E%3C/svg%3E");
}

/* AJUSTE FINAL DE PROPORÇÃO
   Mantém a identidade do PSB, mas evita blocos gigantes e quebras no navegador. */
   :root {
    --container: 1120px;
    --hero-content-max: 1180px;
  }

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

  .site-header {
    top: clamp(16px, 2vw, 42px);
  }
  .nav-wrap {
    height: clamp(50px, 4.2vw, 66px);
  }
  .main-nav {
    gap: clamp(14px, 1.35vw, 26px);
    font-size: clamp(11px, .78vw, 14px);
  }


  .hero-logo {
    width: clamp(150px, 10vw, 210px);
    margin-bottom: clamp(14px, 1.2vw, 24px);
  }
  .hero-content {
    max-width: var(--hero-content-max);
  }
  .hero h1 {
    max-width: 1200px;
    margin-bottom: clamp(22px, 1.9vw, 34px);
    font-size: clamp(34px, 3.35vw, 56px);
    line-height: 1.05;
  }
  .hero h1 .line {
    display: block;
    white-space: nowrap;
  }

  a.btn.btn-whatsapp.hero-btn img,
  .bt-box-1 img {
   width: clamp(285px, 35vw, 900px) !important;
 }
 .hero-contact {
  margin-top: clamp(18px, 1.6vw, 28px);
}


.hero-cars {
  width: min(74vw, 980px);
}

.story {
  padding: clamp(86px, 7vw, 130px) 0 clamp(58px, 5vw, 95px);
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: start;
  gap: clamp(36px, 5vw, 70px);
  min-height: 0;
  width: min(calc(100% - 40px), 1120px);
}
.story-copy {
  width: 100%;
}
.eyebrow {
  margin-bottom: 14px;
  font-size: clamp(36px, 3.6vw, 50px);
}
.story h2,
.brands h2,
.audience h2 {
  margin-bottom: clamp(22px, 2.2vw, 34px);
  font-size: clamp(36px, 3.6vw, 50px);
  line-height: 1.04;
}
.texto-historia,
.story p {
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.48;
}
.texto-historia p {
  margin-bottom: clamp(12px, 1.2vw, 18px);
}
img.story-photo {
  position: relative !important;
  inset: auto !important;
  right: auto !important;
  top: auto !important;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  object-position: top center;
}
.bt-box-1 {
  margin-top: 0;
  margin-bottom: clamp(45px, 4vw, 70px);
}

.ribbon {
  letter-spacing: .075em;
}
.ribbon-blue {
  height: clamp(38px, 3.2vw, 58px);
  font-size: clamp(13px, 2.22vw, 25px);
  transform: rotate(-2.2deg);
}
.ribbon-cyan {
 height: clamp(38px, 3.2vw, 58px);
 font-size: clamp(13px, 2.22vw, 25px);
 transform: rotate(1.1deg);
 margin-top: 40px;
}

.services {
  padding: clamp(70px, 6vw, 110px) 0 clamp(70px, 6vw, 110px);
}
.center-title,
.diff-heading,
.faq h2 {
  font-size: clamp(36px, 3.6vw, 50px);
  margin-bottom: clamp(36px, 4vw, 64px);
}
.services-grid {
  gap: clamp(30px, 3vw, 46px);
}
.services-row {
  gap: clamp(18px, 2vw, 28px);
}
.services-row-top {
  grid-template-columns: repeat(3, minmax(0, 260px));
}
.services-row-bottom {
  grid-template-columns: repeat(4, minmax(0, 260px));
}
.service-card {
  min-height: 365px;
}
.service-card img {
  height: 138px;
}
.service-card div {
  padding: 22px 20px 28px;
}
.service-card h3 {
  font-size: 25px;
}
.service-card p {
  font-size: 19px;
}

.differentials {
  padding: clamp(55px, 5vw, 85px) 0 clamp(72px, 6vw, 112px);
}
.diff-heading {
  max-width: 880px;
}
.diff-grid {
  gap: clamp(24px, 3vw, 42px);
}
.diff-card {
  min-height: 560px;
  padding: clamp(38px, 4vw, 54px) clamp(34px, 3.6vw, 52px);
}
.diff-card h3 {
  margin-bottom: 30px;
  font-size: clamp(21px, 1.8vw, 30px);
}
.check-list {
  gap: 15px;
}
.check-list li {
  padding-left: 34px;
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.32;
}
.diff-icons {
  margin-top: 34px;
}
.diff-icons span {
  width: 64px;
  height: 64px;
}
.bt-2 {
  margin-top: clamp(45px, 4vw, 72px);
}
.bt-2 img {
  width: clamp(330px, 42vw, 610px);
}


.solutions-grid {
  grid-template-columns: repeat(2, minmax(0, 330px));
  gap: 28px 34px;
}
.solution-card {
  min-height: 300px;
  padding: 30px 32px 36px;
}
.gr {
  margin-bottom: 18px;
}
.gr img {
  width: 66px;
  height: 66px;
}
.solution-card h3 {
  font-size: 25px;
  line-height: 1.14;
  min-height: 100px;
}
.solution-card p {
  font-size: 19px;
  line-height: 1.36;
}
.faixa-2 {
  margin-top: -80px;
}
.faixa-2 .ribbon-cyan.big {
  height: clamp(38px, 3.2vw, 58px);
  font-size: clamp(13px, 2.22vw, 25px);

}
.faixa-2 .ribbon-blue.small {
  height: clamp(38px, 3.2vw, 58px);
  font-size: clamp(13px, 2.22vw, 25px);
  margin-top: 50px;
}

.brands {
  padding: clamp(92px, 8vw, 140px) 0 clamp(70px, 6vw, 110px);
}
.brands-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 40px 60px;
}
.brands p {
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.44;
}
.brands-grid > img {
  width: min(100%, 340px);
}
.partner-logos {
  gap: 18px 30px;
  margin-top: 28px;
}
.partner-logos img {
  max-width: 170px;
  max-height: 55px;
}

.review {
  min-height: clamp(690px, 62vw, 850px);
  clip-path: polygon(6% 0,100% 0,100% 100%,0 100%,0 5%);
}
.review::after {
  top: clamp(70px, 7vw, 120px);
  width: clamp(140px, 15vw, 240px);
  height: clamp(150px, 16vw, 260px);
}
.review-content {
  padding-top: clamp(105px, 9vw, 150px);
}
.review h2 {
  /* max-width: 1091px; */
  margin-bottom: clamp(30px, 3vw, 48px);
  font-size: clamp(34px, 3.45vw, 50px);
}
.review h3 {
  max-width: 720px;
  margin-bottom: clamp(26px, 2.5vw, 40px);
  font-size: clamp(26px, 2.4vw, 40px);
}
.review p {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.48;
}
.review .btn {
  margin-top: clamp(28px, 3vw, 46px);
  min-height: 58px;
  padding: 0 clamp(28px, 3vw, 48px);
  font-size: clamp(12px, .95vw, 15px);
}

.audience {
  padding: clamp(85px, 7vw, 130px) 0 clamp(110px, 9vw, 160px);
}

.audience-grid {
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 70px);
}
.audience-photo {
}
.audience h2 {
  margin-bottom: 38px;
  font-size: clamp(36px, 3.6vw, 50px);
}
.audience .check-list {
  gap: 20px;
}
.audience .check-list li {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.36;
}
.green-slash {
  bottom: clamp(90px, 8vw, 130px);
  height: clamp(38px, 3.2vw, 58px);
  font-size: clamp(13px, 2.22vw, 25px);
  letter-spacing: .09em;
}

.testimonials {
  padding: clamp(70px, 6vw, 100px) 0;
}
.testimonial-card {
  min-height: 500px;
  padding: 34px 28px 34px;
}
.avatar {
  /* top: 24px; */
  /* width: 78px; */
  /* height: 78px; */
}
.testimonial-card p,
.testimonial-card strong {
  font-size: 19px;
  line-height: 1.42;
}

.faq {
  padding: clamp(85px, 7vw, 130px) 0 clamp(80px, 7vw, 120px);
}

.faq-tool {
  left: clamp(80px, -5vw, -36px);
  top: clamp(-65px, -4vw, -28px);
  width: clamp(190px, 18vw, 300px);
}
.faq details {
  padding: 16px clamp(0px, 3vw, 34px);
}
.faq summary {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.35;
}
.faq p {
  margin-top: 6px;
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.45;
}

.budget {
  padding: clamp(80px, 7vw, 120px) 0 clamp(150px, 12vw, 210px);
}
.form-card {
  width: min(720px, calc(100% - 42px));
  padding: clamp(48px, 5vw, 70px) clamp(32px, 5vw, 70px) clamp(78px, 6vw, 110px);
  border-radius: 16px;
}
.form-logo {
  width: clamp(140px, 13vw, 220px);
  margin-bottom: 28px;
}
.form-card h2 {
  margin-bottom: clamp(30px, 4vw, 50px);
  font-size: clamp(30px, 3.1vw, 48px);
}
.form-card form {
  gap: 18px;
}
.form-card label,
.form-card input[type=text],
.form-card input[type=email],
.form-card input[type=tel] {
  font-size: clamp(14px, 1vw, 16px);
}
.form-card input[type=text],
.form-card input[type=email],
.form-card input[type=tel] {
  height: 54px;
}
.form-card fieldset {
  margin-top: 28px;
  gap: 12px 34px;
}
.form-card legend {
  margin-bottom: 22px;
  font-size: clamp(28px, 2.8vw, 42px);
}
.form-card fieldset label {
  font-size: clamp(22px, 2vw, 22px);
}
.form-card button {
  bottom: -34px;
  min-height: 64px;
  padding: 0 clamp(28px, 4vw, 56px);
  font-size: clamp(12px, .95vw, 15px);
}
.budget-tool {
  right: max(calc(50% - 540px), -90px);
  width: clamp(180px, 15vw, 280px);
  top: 53%;
}

.site-footer {
  padding: clamp(70px, 6vw, 105px) 0 46px;
}
.footer-grid {
  gap: 52px 70px;
}
.site-footer h2 {
  font-size: clamp(24px, 2vw, 34px);
}
.site-footer p,
.site-footer a,
.footer-nav,
.footer-small {
  font-size: clamp(14px, .95vw, 16px) !important;
}
.footer-small {
  margin-top: 38px !important;
  line-height: 1.55 !important;
}
.footer-bottom {
  margin-top: 46px;
  font-size: clamp(14px, 1vw, 16px);
}

@media (max-width: 980px) {
  .hero {
    height: 760px;
    min-height: 760px;
    padding-top: 180px;
    background-size: cover;
  }
  .hero h1 .line {
    white-space: normal;
  }
  .bg-cars {
    margin-top: -115px;
  }
  .story-grid,
  .brands-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .story-copy {
    max-width: 680px;
  }
  img.story-photo {
    max-width: 420px;
    max-height: 620px;
    margin: 20px auto 0;
  }
  .services-row-top,
  .services-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 250px));
  }
  .diff-grid,
  .solutions-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .diff-card {
    min-height: 0;
  }
  .audience-photo {
    max-width: 420px;
    margin: 0 auto;
  }
  .green-slash {
    position: relative;
    bottom: auto;
    margin-top: 35px;
    white-space: normal;
    padding-inline: 20px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }
  .hero {
    height: 700px;
    min-height: 700px;
    padding-top: 145px;
    background-size: cover;
  }
  .hero-logo {
    width: 145px;
  }
  .hero h1 {
    font-size: 29px;
  }
  .hero h1 .line {
    white-space: normal;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-contact a {
    font-size: 22px;
  }
  .bg-cars {
    margin-top: -90px;
  }
  .hero-cars {
    width: 96vw;
  }
  .story {
    padding-top: 65px;
  }
  .story h2,
  .brands h2,
  .audience h2,
  .diff-heading,
  .center-title,
  .faq h2 {
    font-size: 34px;
  }
  .ribbon {
    white-space: normal;
    padding-inline: 16px;
    line-height: 1.2;
  }
  .services-row-top,
  .services-row-bottom {
    grid-template-columns: 1fr;
    max-width: 290px;
  }
  .service-card {
    min-height: auto;
  }
  .diff-card {
    padding: 36px 26px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .review {
    min-height: 760px;
  }
  .review h2 {
    font-size: 31px;
  }
  .review h3 {
    font-size: 24px;
  }
  .audience {
    padding-bottom: 70px;
  }
  .audience-photo {
    height: auto;
  }
  .testimonial-grid {
    gap: 18px;
  }
  .form-card fieldset {
    grid-template-columns: 1fr;
  }
  .form-card button {
    width: min(100%, 340px);
    white-space: normal;
    text-align: center;
  }
  .budget-tool {
    opacity: .45;
  }
}

/* ==========================================================
   CORREÇÃO RESPONSIVA FINAL
   Mantém o layout desktop e impede elementos decorativos de
   ficarem sobre textos em tablets e celulares.
   ========================================================== */
section[id] {
  scroll-margin-top: 84px;
}

@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  section,
  .box-faq,
  .faixa-2 {
    max-width: 100%;
  }

  /* O texto desta seção tinha margem negativa e subia sobre a foto. */
  .audience-copy {
    margin-top: 0 !important;
  }

  .audience-grid {
    align-items: start;
  }

  .audience-copy,
  .review-content,
  .faq .container,
  .form-card {
    position: relative;
    z-index: 3;
  }

  /* Faixa passa a participar do fluxo, sem atravessar o conteúdo. */
  .green-slash {
    position: relative !important;
    inset: auto !important;
    bottom: auto !important;
    width: calc(100% + 28px);
    min-height: 56px;
    height: auto;
    margin: 36px -14px 0;
    padding: 14px 20px;
    white-space: normal;
    line-height: 1.25;
    transform: rotate(1.5deg);
  }

  /* Decorações continuam visíveis no tablet, mas atrás do conteúdo. */
  .review::after,
  .faq-tool,
  .budget-tool {
    z-index: 1;
    opacity: .16;
  }

  .review::after {
    right: -105px;
  }

  .faq-tool {
    left: -90px;
    top: -45px;
  }

  .budget-tool {
    right: -120px;
  }

  .faq::before {
    width: 72px;
    height: 72px;
  }

  .ribbon {
    width: 104vw;
    margin-left: -2vw;
  }

  .main-nav {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
}

@media (max-width: 640px) {
  section[id] {
    scroll-margin-top: 72px;
  }

  /* No celular as ferramentas decorativas são removidas para nunca
     cobrirem títulos, perguntas ou campos do formulário. */
  .review::after,
  .faq-tool,
  .budget-tool {
    display: none !important;
  }

  .audience {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .audience-grid {
    gap: 34px;
  }

  .audience-photo {
    width: min(100%, 360px);
    max-height: none;
    margin-inline: auto;
  }

  .audience-copy {
    width: 100%;
  }

  .audience h2 {
    margin-bottom: 28px;
  }

  .audience .check-list {
    gap: 16px;
  }

  .green-slash {
    width: calc(100% + 16px);
    margin: 34px -8px 0;
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: .06em;
    transform: rotate(1deg);
  }

  /* Faixas sem largura e rotação excessivas no celular. */
  .ribbon,
  .ribbon-blue,
  .ribbon-cyan,
  .faixa-2 .ribbon-cyan.big,
  .faixa-2 .ribbon-blue.small {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 44px;
    margin-left: 0;
    padding: 10px 16px;
    white-space: normal;
    line-height: 1.25;
    transform: none;
  }

  .ribbon-cyan,
  .faixa-2 .ribbon-blue.small {
    margin-top: 8px;
  }

  .faixa-2 {
    margin-top: 0;
    padding-top: 10px;
  }

  /* O botão deixa de ser absoluto e passa a ocupar espaço real no form. */
  .budget {
    padding-bottom: 90px;
    overflow: hidden;
  }

  .form-card {
    width: calc(100% - 28px);
    max-width: 520px;
    padding: 48px 24px 42px;
    overflow: hidden;
  }

  .form-card button {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    margin: 30px auto 0;
  }

  .form-card button:hover {
    transform: translateY(-2px);
  }

  .faq {
    padding-top: 78px;
  }

  .faq::before {
    width: 44px;
    height: 44px;
  }

  .faq details {
    padding-inline: 0;
  }

  .faq p {
    margin-left: 0 !important;
  }

  .review {
    min-height: auto;
  }

  .review-content {
    padding-top: 92px;
    padding-bottom: 70px;
  }

  .bt-3 {
    margin-top: 44px;
    padding-bottom: 0;
  }

  .site-footer::before {
    width: 28vw;
    height: 11vw;
  }
}

@media (max-width: 980px) {
  /* O cabeçalho deixa de flutuar sobre o conteúdo no mobile/tablet. */
  .site-header {
    position: relative !important;
    top: 0 !important;
  }
}

/* ============================================================
   CORREÇÃO DO HERO EM TODAS AS RESOLUÇÕES
   O bloco passa a crescer conforme o conteúdo. Assim, telefone e
   endereço sempre terminam antes dos carros, mantendo a mesma
   sobreposição dos carros entre o fundo azul e a seção branca.
   ============================================================ */
.hero {
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 255px;
  background-size: cover;
}

.bg-cars {
  margin-top: -190px;
}

@media (max-width: 980px) {
  .hero {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 170px;
  }

  .bg-cars {
    margin-top: -115px;
  }
}

@media (max-width: 640px) {
  .hero {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 130px;
  }

  .bg-cars {
    margin-top: -90px;
  }
}

/* ============================================================
   FORMULÁRIO - ENVIO POR SMTP
   ============================================================ */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  min-height: 1.5em;
  margin: 16px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status.is-loading {
  color: #102356;
}

.form-status.is-success {
  color: #08783e;
}

.form-status.is-error {
  color: #b42318;
}

#budget-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}
