:root {
  --red: #d90000;
  --yellow: #ffc401;
  --ink: #000000;
  --muted: #4b5563;
  --gray-bg: #edf2f7;
  --white: #ffffff;
  --footer: #0a0a0a;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 110px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

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

h1,
h2,
h3,
h4,
strong,
.brand {
  font-family: "Montserrat", sans-serif;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.container-sm {
  width: min(860px, 92%);
  margin: 0 auto;
}

.btn {
  border: 0;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-yellow {
  background: var(--yellow);
  color: #141414;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
}

.btn-yellow:hover {
  background: #ffd11f;
  transform: translateY(-1px);
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.16);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}

.btn-outline:hover {
  background: rgba(217, 0, 0, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid rgba(217, 0, 0, 0.4);
  outline-offset: 2px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: inline-block;
  width: 210px;
}
.brand img {
  width: 100%;
  height: auto;
}

/* .brand-mark img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
} */

/* .brand strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.brand span {
  display: block;
  font-size: 14px;
  font-style: italic;
  font-weight: 800;
} */

.menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.menu a span {
  white-space: nowrap;
}

.menu a:hover {
  color: var(--red);
  background: rgba(217, 0, 0, 0.06);
}

.menu a:focus-visible {
  outline: 2px solid rgba(217, 0, 0, 0.35);
  outline-offset: 2px;
}

.menu-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.menu a:hover .menu-icon {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(217, 0, 0, 0.4);
  outline-offset: 2px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 36px;
  padding: 64px 0 70px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
  font-size: 40px;
  font-weight: 800;
}

.hero h1 strong {
  display: block;
  font-size: 52px;
  color: var(--red);
  font-weight: 800;
}

.hero-subtitle {
  margin: 20px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  max-width: 520px;
}

.hero-subtitle span {
  color: var(--red);
}

.hero-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
}

.hero-list li img {
  width: 24px;
  height: 24px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-avatars {
  display: flex;
  align-items: center;
  padding-right: 8px;
}

.proof-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid #fff;
  margin-right: -8px;
}

.proof-stars {
  display: flex;
  gap: 4px;
}

.proof-stars img {
  width: 18px;
  height: 16px;
}

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.hero-media img {
  width: 100%;
  display: block;
  height: auto;
}

.hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  max-width: 270px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-badge span {
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.hero-badge p {
  margin: 3px 0 0;
  font-size: 13px;
}

.section {
  padding: 82px 0;
}

.section h2 {
  margin: 0;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
}

.section h2 span {
  color: var(--red);
}

.section > .container > p {
  text-align: center;
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 120%;
  max-width: 560px;
  margin-inline: auto;
}

.section-gray {
  background: var(--gray-bg);
}

.section-light {
  background: #fff;
}

.section-about-hero {
  background: #fff;
  padding-top: 0;
}

.about-title-band {
  width: 100%;
  padding: 28px 0;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #7d0000 0%, #b30000 52%, #d90000 100%);
}

.about-title-band h2 {
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.section.section-light > .container > p.stats-subtitle {
  margin-top: 16px;
  text-align: center;
  color: #4b5563;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  max-width: none;
}

.cards {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e3e7ee;
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.08),
    0 4px 6px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: #fbe5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.card-icon {
  width: 32px;
  height: 32px;
}

.card p {
  margin: 8px 0 14px;
  font-size: 14px;
  line-height: 140%;
  color: #677286;
}

.card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  text-decoration: none;
  color: var(--red);
  font-weight: 700;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    text-decoration-color 0.2s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.card a:hover {
  color: #b80000;
  transform: translateX(2px);
  text-decoration-color: currentColor;
}

.card a:focus-visible {
  outline: 2px solid rgba(217, 0, 0, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

.grid-icons {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.grid-icons div {
  text-align: center;
}

.feature-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}

.grid-icons strong {
  font-size: 12px;
  color: var(--red);
}

.grid-icons p {
  margin: 6px 0 0;
  font-size: 12px;
  color: #4d5766;
}

.section-coberturas {
  background: #fff;
}

.section-coberturas h2 {
  font-size: 36px;
  line-height: 51px;
}

.section-coberturas p.coverage-subtitle {
  margin-top: 16px;
  font-size: 18px;
  line-height: 28px;
  color: #4b5563;
}

.section-coberturas .grid-icons {
  margin-top: 58px;
  gap: 42px 68px;
}

.section-coberturas .coverage-item {
  text-align: center;
}

.section-coberturas .feature-icon {
  display: block;
  margin: 0 auto 34px;
  width: 64px;
  height: 64px;
}

.section-coberturas .grid-icons strong {
  display: block;
  line-height: 28px;
  font-size: 20px;
  color: #000;
}

.section-coberturas .grid-icons p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #4b5563;
}

.section-coberturas p.coverage-footnote {
  margin-top: 42px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #6a7282;
}

.banner-red {
  background:
    linear-gradient(rgba(155, 0, 0, 0.45), rgba(155, 0, 0, 0.45)),
    url("assets/images/banner-caminhos.png") center/cover no-repeat;
  color: #fff;
  padding: 64px 0;
}

.banner-red .container {
  /* max-width: 560px;  */
}

.section.banner-red > .container > p {
  margin: 0 auto;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #ffd6d6;
  text-shadow: 0 7px 19px rgba(0, 0, 0, 0.25);
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.steps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

#como-funciona.section-gray {
  background: #EFF5FA;
}

#como-funciona h2 {
  font-size: 36px;
  line-height: 51px;
}

.steps article {
  text-align: center;
}

.steps-subtitle {
  margin-top: 16px !important;
  font-size: 18px !important;
  line-height: 28px !important;
  color: #4b5563 !important;
}

.steps span {
  display: inline-flex;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}

.steps h3 {
  margin: 27px 0 10px;
  font-size: 20px;
  line-height: 1.15;
}

.steps p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #5e6877;
}

.steps-arrow {
  width: 26.25px;
  height: 30px;
}

.steps-cta {
  margin-top: 34px;
  text-align: center;
}

.stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stats article {
  text-align: center;
}

.stat-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 9999px;
  background: #f2dede;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
}

.stats strong {
  color: #000;
  font-size: 38px;
  line-height: 1;
}

.stats p {
  margin: 8px 0 0;
  color: #4b5563;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.testimonials-title {
  margin: 60px 0 14px;
  font-size: 32px;
  
}
.testimonials-title span {
  color: var(--red);
}

.testimonials {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials::-webkit-scrollbar {
  height: 8px;
}

.testimonials::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.testimonial-video {
  flex: 0 0 220px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.testimonial-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.faq details {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dde3ed;
  padding: 14px 16px;
  margin-top: 12px;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.faq details[open] summary img {
  transform: rotate(132deg);
}

.faq p {
  margin: 10px 0 0;
  color: #566173;
  font-size: 14px;
}

.cta-final {
  background: var(--red);
  color: #fff;
  text-align: center;
}

.cta-final .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-final h2 {
  color: #fff;
  font-size: 48px;
  line-height: normal;
  font-weight: 800;
  margin: 0;
}


.section.cta-final > .container > p {
  margin: 0;
  max-width: none;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.cta-final .btn-yellow {
  font-size: 16px;
  line-height: 20px;
  padding: 14px 20px;
}

.cta-contact {
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 39px;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.cta-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-contact img {
  width: 24px;
  height: 24px;
}

.footer {
  background: #000;
  color: #9ca3af;
  padding: 84px 0 64px;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #fff;
  /* text-decoration: underline */
  
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
}

.footer-brand > img {
  width: 224px;
  height: auto;
  display: block;
}

.footer-brand-mark {
  width: 56.725px;
  height: 64.524px;
  overflow: hidden;
  flex: 0 0 auto;
}

.footer-brand-mark img {
  height: 100%;
  width: 536.1%;
  max-width: none;
  display: block;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-brand-text img:first-child {
  width: 161.149px;
  height: 23.08px;
}

.footer-brand-text img:last-child {
  width: 133.223px;
  height: 10.192px;
}

.footer-brand-col p {
  margin: 0;
  max-width: 260px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer h4 {
  margin: 0;
  color: var(--red);
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.footer li {
  color: #9ca3af;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact li {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.inline-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}


.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 53px;
  padding-top: 22px;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-company p {
  margin: 0;
  color: #9ca3af;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.footer-copy {
  margin: 0;
  color: #c7cbd2;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 52px;
  height: 52px;
  display: inline-flex;
  /* border-radius: 9999px; */
  /* border: 1px solid red; */
  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 196, 1, 0.55);
  outline-offset: 4px;
}

.direitos a {
  display: inline-block;
  width: 24px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(14px);
  z-index: 65;
  width: min(92vw, 520px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
  margin: 0;
  color: #374151;
  font-size: 13px;
  line-height: 1.35;
}

.cookie-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  border: 0;
  border-radius: 8px;
  padding: 7px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.cookie-btn-muted {
  background: #f3f4f6;
  color: #374151;
}

.cookie-btn-accept {
  background: var(--yellow);
  color: #111827;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr 420px;
    gap: 28px;
  }

  .hero h1 span {
    font-size: 34px;
  }

  .hero h1 strong {
    font-size: 46px;
  }

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-coberturas .grid-icons {
    gap: 36px;
  }
}

@media (max-width: 1100px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .menu a {
    align-items: center;
    padding: 10px 12px;
  }

  .menu a span br {
    display: none;
  }

  .menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
  }

  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .stats,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-final h2 {
    font-size: 36px;
  }

  .cta-contact {
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer {
    padding: 68px 0 48px;
  }

  .footer-grid {
    gap: 28px 32px;
  }
}

@media (max-width: 992px) {
  .topbar-inner {
    gap: 14px;
  }

  .brand {
    width: 180px;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .hero h1 span {
    font-size: 30px;
  }

  .hero h1 strong {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
    margin-inline: auto;
  }

  .hero-list {
    justify-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: 30px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-arrow {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .testimonials {
    gap: 16px;
  }

  .testimonial-video {
    flex-basis: 208px;
  }

  .cta-final h2 {
    font-size: 34px;
  }

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

@media (max-width: 768px) {
  .topbar-inner {
    gap: 12px;
    padding: 10px 0;
  }

  .topbar .btn {
    font-size: 12px;
    padding: 9px 12px;
  }

  .brand {
    width: 152px;
  }

  .hero {
    padding: 34px 0 44px;
  }

  .hero-proof {
    flex-wrap: wrap;
  }

  .hero h1 span {
    font-size: 26px;
  }

  .hero h1 strong {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section h2 {
    font-size: 26px;
  }

  .grid-icons,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .testimonial-video {
    flex-basis: min(78vw, 260px);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .cookie-banner {
    width: min(94vw, 560px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    bottom: 14px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-arrow {
    display: none;
  }

  .section.banner-red > .container > p {
    font-size: 24px;
    line-height: 34px;
  }

  .cta-final h2 {
    font-size: 28px;
  }

  .section.cta-final > .container > p {
    font-size: 16px;
    line-height: 24px;
  }

  .cta-contact {
    flex-direction: column;
    gap: 8px;
  }

  .footer {
    padding: 56px 0 40px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand-col p {
    max-width: 100%;
  }

  .footer-brand > img {
    width: 200px;
  }
}

@media (max-width: 520px) {
  .container,
  .container-sm {
    width: min(100%, 94%);
  }

  .topbar .btn {
    display: none;
  }

  .hero h1 span {
    font-size: 24px;
  }

  .hero h1 strong {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-list li {
    font-size: 16px;
  }

  .hero-badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .section {
    padding: 56px 0;
  }

  .section h2 {
    font-size: 24px;
  }

  .steps span {
    width: 96px;
    height: 96px;
    font-size: 46px;
    line-height: 46px;
  }

  .steps h3 {
    font-size: 18px;
  }

  .stats strong {
    font-size: 32px;
  }

  .stats p {
    font-size: 15px;
  }

  .testimonials-title {
    font-size: 26px;
  }

  .faq summary {
    font-size: 14px;
  }

  .cta-final h2 {
    font-size: 24px;
  }

  .cta-final .btn-yellow {
    width: 100%;
  }
}
