/* ==========================================================================
   Reset
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: #17161A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

a {
  color: #154688;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

details > summary {
  list-style: none;
  cursor: pointer;
}

details > summary::-webkit-details-marker {
  display: none;
}

:root {
  --custom-primary: #D71059;
  --font-family: 'Archivo', var(--bs-font-sans-serif);
  --font-heading: 'Anton', var(--font-family);
  --font-mono: 'Space Mono', monospace;
}

.lp-2dbrindes {
  width: 100%;
  overflow-x: hidden;
  background: #FFFFFF;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #EFEAE6;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #17161A;
}

.site-header__logo img {
  height: 38px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
}

.site-header__nav a {
  color: #3B383F;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1FA855;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.site-header__cta i {
  font-size: 18px;
}

.site-header__cta:hover {
  background: #178a45;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: #17161A;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  filter: contrast(0.97) brightness(1);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 10, 13, 0.5) 0%, rgba(15, 14, 17, 0.4) 42%, rgba(23, 22, 26, 0.22) 100%);
}

.hero__glow--top {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #154688 0%, transparent 68%);
  opacity: 0.3;
  filter: blur(10px);
}

.hero__glow--bottom {
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #FFB800 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(10px);
}

.hero__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px 84px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #C3D6F5;
}

.hero__title {
  font-size: 52px;
  font-weight: 400;
  margin-top: 22px;
  text-wrap: balance;
}

.hero__title-accent {
  color: #8FB4F2;
}

.hero__title-underline {
  text-decoration: underline;
  text-decoration-color: #8FB4F2;
}

.hero__desc {
  font-family: var(--font-family);
  font-size: 19px;
  line-height: 1.55;
  color: #CFCACF;
  margin-top: 20px;
  max-width: 540px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 9px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #154688;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 17px;
  padding: 17px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(21, 70, 136, 0.4);
  transition: background 0.2s ease;
}

.btn-hero-primary:hover {
  background: #0F3269;
}

.hero__form-wrap {
  position: relative;
}

.hero__form-card {
  background: #fff;
  color: #17161A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.hero__form-title {
  font-size: 26px;
  font-weight: 400;
  color: #17161A;
  text-align: center;
}

.hero__form-desc {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.55;
  color: #55525A;
  margin-top: 8px;
  text-align: center;
}

.hero__form-note {
  font-family: var(--font-family);
  text-align: center;
  font-size: 13px;
  color: #8A8079;
  margin-top: 14px;
}

/* Form (build_form output) inside the hero card */
.hero__form-card form {
  margin-top: 20px;
}

.hero__form-card .form-group,
.hero__form-card .form-floating {
  margin-bottom: 0;
}

.hero__form-card .btn-custom-primary {
  width: 100%;
  margin-top: 4px;
}

.btn-custom-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background-color: #154688;
  border-color: #154688;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 12px;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: #0F3269 !important;
  border-color: #0F3269 !important;
  color: #fff !important;
}

/* ==========================================================================
   Faixa de produtos (Uma linha completa)
   ========================================================================== */
.feature-strip {
  background: #FAF6F3;
  padding: 72px 32px;
}

.feature-strip__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.feature-strip__title {
  font-size: 38px;
  font-weight: 400;
}

.feature-strip__desc {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.6;
  color: #55525A;
  margin-top: 16px;
}

.feature-strip__list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-family);
  font-size: 16px;
  color: #3B383F;
}

.feature-strip__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-strip__list li::before {
  content: '✔';
  color: #1FA855;
  font-size: 18px;
}

.feature-strip__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #ECE7E3;
  box-shadow: 0 24px 60px rgba(23, 22, 26, 0.1);
  background: #F4F1EC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-strip__badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #FFB800;
  color: #17161A;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* ==========================================================================
   Benefícios (Diferenciais)
   ========================================================================== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 32px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-header--wide {
  max-width: 700px;
}

.section-header__title {
  font-size: 40px;
  font-weight: 400;
}

.section-header__eyebrow {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #154688;
}

.section-header__desc {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.6;
  color: #55525A;
  margin-top: 16px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.benefit-card {
  background: #fff;
  border: 1px solid #ECE7E3;
  border-radius: 18px;
  padding: 26px;
}

.benefit-card__icon {
  font-size: 30px;
}

.benefit-card__title {
  font-size: 18px;
  font-weight: 400;
  margin-top: 14px;
}

.benefit-card__desc {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.55;
  color: #55525A;
  margin-top: 8px;
}

/* ==========================================================================
   Dor do cliente
   ========================================================================== */
.pain {
  background: #17161A;
  color: #fff;
  padding: 88px 32px;
}

.pain__inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.pain__title {
  font-size: 36px;
  font-weight: 400;
  text-wrap: balance;
}

.pain__text {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.65;
  color: #CFCACF;
  margin-top: 22px;
}

.pain__text--highlight {
  color: #fff;
  margin-top: 18px;
}

.pain__text--highlight strong {
  color: #8FB4F2;
}

.pain__media {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pain__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Público
   ========================================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.audience-card {
  background: #FAF6F3;
  border: 1px solid #ECE7E3;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.audience-card__icon {
  font-size: 34px;
  flex-shrink: 0;
}

.audience-card__title {
  font-size: 21px;
  font-weight: 400;
}

.audience-card__desc {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.55;
  color: #55525A;
  margin-top: 8px;
}

/* ==========================================================================
   Produtos
   ========================================================================== */
.products {
  background: #FAF6F3;
  padding: 88px 32px;
}

.products__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.product-card {
  background: #fff;
  border: 1px solid #ECE7E3;
  border-radius: 20px;
  overflow: hidden;
}

.product-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 22px;
}

.product-card__icon {
  font-size: 26px;
}

.product-card__title {
  font-size: 19px;
  font-weight: 400;
  margin-top: 10px;
}

.product-card__desc {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.5;
  color: #55525A;
  margin-top: 6px;
}

.products__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.products__note {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  background: #fff;
  border: 1px solid #ECE7E3;
  padding: 12px 20px;
  border-radius: 999px;
  color: #3B383F;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #154688;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.btn-catalog:hover {
  background: #0F3269;
}

/* ==========================================================================
   Como funciona
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid #ECE7E3;
  border-radius: 20px;
  padding: 30px 26px;
}

.process-step__number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #154688;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
}

.process-step__title {
  font-size: 19px;
  font-weight: 400;
  margin-top: 18px;
}

.process-step__desc {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.55;
  color: #55525A;
  margin-top: 8px;
}

/* ==========================================================================
   Comparativo
   ========================================================================== */
.comparison {
  background: #FAF6F3;
  padding: 88px 32px;
}

.comparison__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison__title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.comparison-col {
  background: #fff;
  border: 1px solid #ECE7E3;
  border-radius: 20px;
  padding: 34px;
}

.comparison-col--positive {
  background: #17161A;
  border: none;
  color: #fff;
  box-shadow: 0 24px 60px rgba(23, 22, 26, 0.18);
}

.comparison-col__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #8A8079;
}

.comparison-col--positive .comparison-col__title {
  color: #8FB4F2;
}

.comparison-col__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-family);
  font-size: 16px;
  color: #55525A;
}

.comparison-col--positive .comparison-col__list {
  color: #EDEAEF;
}

.comparison-col__list li {
  display: flex;
  gap: 12px;
}

.comparison-col__list li::before {
  content: '✕';
  color: #C7C0BA;
  font-weight: 700;
}

.comparison-col--positive .comparison-col__list li::before {
  content: '✓';
  color: #37D67A;
}

/* ==========================================================================
   Galeria
   ========================================================================== */
.gallery {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #EDE7E2;
  box-shadow: 0 10px 30px rgba(23, 22, 26, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ==========================================================================
   Prova social
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.stat-card {
  background: #17161A;
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 38px;
  color: #8FB4F2;
}

.stat-card__label {
  font-family: var(--font-family);
  font-size: 15px;
  color: #CFCACF;
  margin-top: 6px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #ECE7E3;
  border-radius: 20px;
  padding: 30px;
}

.testimonial-card__stars {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: #3B383F;
  margin-top: 14px;
  font-style: italic;
}

.testimonial-card__note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8A8079;
  margin-top: 16px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: #FAF6F3;
  padding: 88px 32px;
}

.faq__inner {
  max-width: 840px;
  margin: 0 auto;
}

.faq__title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 44px;
}

.faq-item {
  background: #fff;
  border: 1px solid #ECE7E3;
  border-radius: 16px;
  padding: 4px 24px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
}

.faq-chev {
  color: #154688;
  font-size: 24px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] .faq-chev {
  transform: rotate(45deg);
}

.faq-item p {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: #55525A;
  padding: 0 0 22px;
}

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final {
  position: relative;
  background: #154688;
  color: #fff;
  padding: 96px 32px;
  overflow: hidden;
}

.cta-final__glow {
  position: absolute;
  top: -100px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.cta-final__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-final__title {
  font-size: 44px;
  font-weight: 400;
  text-wrap: balance;
}

.cta-final__desc {
  font-family: var(--font-family);
  font-size: 19px;
  line-height: 1.6;
  color: #C9D9F2;
  margin-top: 20px;
}

.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1FA855;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 17px;
  padding: 18px 30px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.btn-whatsapp:hover {
  background: #178a45;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 28px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0F0E11;
  color: #CFCACF;
  padding: 56px 32px 32px;
}

.site-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
}

.footer-logo-box img {
  height: 32px;
  width: auto;
}

.site-footer__desc {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 340px;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 19px;
  transition: background 0.2s ease;
}

.social-icon--facebook:hover,
.social-icon--instagram:hover {
  background: #154688;
}

.social-icon--whatsapp:hover {
  background: #1FA855;
}

.site-footer__heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 15px;
}

.site-footer__list a {
  color: #CFCACF;
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid #232227;
  font-family: var(--font-family);
  font-size: 13px;
  color: #75727A;
  text-align: center;
}

/* ==========================================================================
   Mobile-only components (hidden on desktop by default, no desktop rules
   touched — these selectors do not exist outside the mobile media queries)
   ========================================================================== */
.site-header__toggle {
  display: none;
}

.mobile-nav,
.mobile-nav-backdrop,
.carousel-dots {
  display: none;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
    gap: 40px;
  }

  .hero__title {
    font-size: 42px;
  }

  .feature-strip__inner,
  .pain__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pain__media {
    order: -1;
  }

  .benefits-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid > :first-child {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Navbar */
  .site-header__inner {
    padding: 14px 20px;
    gap: 12px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid #ECE7E3;
    border-radius: 10px;
    padding: 0;
  }

  .site-header__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #17161A;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-header__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .site-header__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 17, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 90;
  }

  .mobile-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: #17161A;
    padding: 100px 28px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 95;
    overflow-y: auto;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav__link {
    display: flex;
    align-items: center;
    min-height: 52px;
    color: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 17px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    margin-top: 24px;
    background: #1FA855;
    color: #fff;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  /* Hero */
  .hero__inner {
    padding: 40px 20px 48px;
    gap: 32px;
  }

  .hero__badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .hero__title {
    font-size: 32px;
    margin-top: 18px;
  }

  .hero__desc {
    font-size: 16px;
    margin-top: 16px;
  }

  .hero__tags {
    gap: 8px;
    margin-top: 20px;
  }

  .hero__tag {
    font-size: 13px;
    padding: 8px 13px;
  }

  .hero__ctas {
    margin-top: 26px;
  }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 16px;
  }

  .hero__form-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

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

  .hero__form-desc {
    font-size: 14px;
  }

  .hero__form-card .btn-custom-primary {
    min-height: 48px;
  }

  /* Seções (espaçamento geral) */
  .section,
  .products,
  .comparison,
  .faq,
  .gallery,
  .pain,
  .feature-strip,
  .cta-final {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-header__title,
  .comparison__title,
  .faq__title {
    font-size: 28px;
  }

  .section-header__desc {
    font-size: 16px;
  }

  .feature-strip__inner,
  .pain__inner {
    gap: 28px;
  }

  .feature-strip__title {
    font-size: 26px;
  }

  .feature-strip__desc {
    font-size: 16px;
  }

  .pain__title {
    font-size: 26px;
  }

  .pain__text {
    font-size: 16px;
  }

  /* Benefícios */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .benefit-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .benefit-card__icon {
    font-size: 26px;
    flex-shrink: 0;
  }

  .benefit-card__title {
    font-size: 16px;
    margin-top: 0;
  }

  .benefit-card__desc {
    font-size: 14px;
  }

  .audience-grid {
    gap: 14px;
    margin-top: 36px;
  }

  .audience-card {
    padding: 22px;
    gap: 16px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .process-step {
    padding: 22px 20px;
  }

  .comparison-grid {
    gap: 14px;
    margin-top: 36px;
  }

  .comparison-col {
    padding: 24px;
  }

  /* Produtos — carrossel horizontal */
  .prod-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin: 36px -20px 0;
    padding: 4px 20px 6px;
  }

  .prod-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    scroll-snap-align: center;
    flex: 0 0 82%;
    max-width: 340px;
  }

  .products__footer {
    margin-top: 28px;
  }

  .btn-catalog {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* Galeria — carrossel horizontal */
  .gal-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    margin: 36px -20px 0;
    padding: 4px 20px 6px;
  }

  .gal-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    scroll-snap-align: center;
    flex: 0 0 78%;
    max-width: 320px;
  }

  /* Indicadores discretos (dots) */
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
  }

  .carousel-dots__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #DCD6D0;
    transition: width 0.25s ease, background 0.25s ease;
  }

  .carousel-dots__dot.is-active {
    width: 20px;
    background: #154688;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-card__value {
    font-size: 30px;
  }

  .testimonials-grid {
    gap: 14px;
    margin-top: 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  /* CTA */
  .cta-final {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cta-final__title {
    font-size: 28px;
  }

  .cta-final__desc {
    font-size: 16px;
  }

  .cta-final__buttons {
    margin-top: 28px;
  }

  .btn-whatsapp,
  .btn-outline-white {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* FAQ */
  .faq-list {
    margin-top: 32px;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 18px 0;
    min-height: 48px;
  }

  .faq-item p {
    font-size: 15px;
  }

  /* Footer */
  .site-footer {
    padding: 44px 20px 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__grid > :first-child {
    grid-column: auto;
  }

  .site-footer__desc {
    max-width: none;
  }
}

@media (max-width: 480px) {

  /* Hero */
  .hero__title {
    font-size: 27px;
  }

  .hero__form-card {
    padding: 20px 16px;
  }

  /* Produtos / Galeria */
  .product-card {
    flex-basis: 86%;
  }

  .gallery-item {
    flex-basis: 84%;
  }

  /* Prova social */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card__value {
    font-size: 26px;
  }
}

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

.float:hover {
  transform: scale(1.1);
}

.float img {
  max-width: 110%;
}