:root {
  --azul-950: #020b18;
  --azul-900: #05162d;
  --azul-850: #071d3a;
  --azul-800: #0a2850;
  --azul-700: #123c72;

  --laranja: #ff5a00;
  --laranja-claro: #ff7a22;

  --verde: #13b83f;
  --verde-hover: #0e9833;

  --branco: #ffffff;
  --cinza-50: #f6f8fb;
  --cinza-100: #edf1f6;
  --cinza-300: #c8d2df;
  --cinza-500: #8998ab;

  --vermelho: #df2d2d;

  --borda-clara: rgba(255, 255, 255, 0.12);
  --borda-escura: rgba(8, 34, 68, 0.14);

  --sombra: 0 18px 46px rgba(2, 11, 24, 0.16);

  --largura: 1180px;
  --raio: 18px;
}

/* Reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cinza-50);
  color: var(--azul-900);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Cabeçalho */

.cabecalho {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  border-bottom: 1px solid rgba(255, 90, 0, 0.28);
  backdrop-filter: blur(14px);
}

.cabecalho-conteudo {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marca {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-cabecalho {
  display: block;
  width: auto;
  height: 92px;
  max-width: 230px;
  object-fit: contain;
}

.botao-blog,
.botao-secundario {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--laranja);
  border-radius: 10px;
  color: var(--branco);
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.botao-blog:hover,
.botao-secundario:hover {
  background: var(--laranja);
  color: var(--branco);
  transform: translateY(-2px);
}

/* Botões */

.botao-whatsapp {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--verde);
  color: var(--branco);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(19, 184, 63, 0.26);
  transition: 0.2s ease;
}


.botao-whatsapp:hover {
  background: var(--verde-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(19, 184, 63, 0.34);
}

.botao-whatsapp:focus-visible,
.botao-blog:focus-visible,
.botao-secundario:focus-visible,
.faq-pergunta:focus-visible {
  outline: 3px solid var(--laranja);
  outline-offset: 4px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 705px;
  background:
    linear-gradient(
      90deg,
      rgba(2, 13, 29, 0.88) 0%,
      rgba(2, 13, 29, 0.82) 28%,
      rgba(2, 13, 29, 0.58) 45%,
      rgba(2, 13, 29, 0.22) 65%,
      rgba(2, 13, 29, 0.00) 100%
    ),
    url("./fotocapa.png?v=3") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, black);
}

.hero-conteudo {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1440px);
  min-height: 705px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
}

.sobrelinha,
.secao-cabecalho > span,
.cta-final span {
  display: block;
  margin-bottom: 12px;
  color: var(--laranja);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(3.4rem, 6.5vw, 6.7rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--laranja);
}

.hero h2 {
  margin-top: 20px;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.hero-descricao {
  max-width: 650px;
  margin-top: 24px;
  color: var(--cinza-100);
  font-size: 1.08rem;
}

.hero-publico {
  max-width: 680px;
  margin: 14px 0 30px;
  padding-left: 16px;
  border-left: 3px solid var(--laranja);
  color: var(--cinza-300);
  font-size: 0.94rem;
  font-weight: 600;
  text-transform: uppercase;
}

.prova-social {
  margin-top: 12px;
  color: var(--cinza-300);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-painel {
  width: min(100%, 420px);
  min-height: 480px;
  padding: 42px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 34, 0.55);
  border-radius: 32px;
  background:
    linear-gradient(
      155deg,
      rgba(18, 60, 114, 0.88),
      rgba(2, 11, 24, 0.96)
    );
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.hero-painel::before,
.hero-painel::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 90, 0, 0.4);
  border-radius: 50%;
}

.hero-painel::before {
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -80px;
}

.hero-painel::after {
  width: 160px;
  height: 160px;
  right: -40px;
  bottom: -10px;
}

.hero-painel-tag {
  display: inline-block;
  margin-bottom: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--laranja);
  color: var(--branco);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-painel strong {
  max-width: 300px;
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 2.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-painel ul {
  margin-top: 38px;
  display: grid;
  gap: 18px;
}

.hero-painel li {
  position: relative;
  padding-left: 28px;
  color: var(--cinza-100);
  font-weight: 600;
}

.hero-painel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--verde);
  font-weight: 900;
}

/* Benefícios */

.beneficios {
  position: relative;
  z-index: 2;
  padding: 46px 0 70px;
  background: var(--branco);
}

.grade-beneficios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.beneficio {
  min-height: 190px;
  display: flex;
  gap: 18px;
  padding: 28px 22px;
  border: 1px solid var(--borda-escura);
  border-radius: var(--raio);
  background: var(--branco);
  box-shadow: 0 12px 30px rgba(5, 22, 45, 0.08);
}

.beneficio-icone {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--laranja);
  border-radius: 14px;
  color: var(--laranja);
  font-size: 1.35rem;
  font-weight: 900;
}

.beneficio h3 {
  margin-bottom: 8px;
  color: var(--azul-900);
  font-family: "League Spartan", sans-serif;
  font-size: 1.15rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.beneficio p {
  color: #566579;
  font-size: 0.88rem;
}

/* Títulos de seção */

.secao-cabecalho {
  max-width: 760px;
  margin-bottom: 44px;
}

.secao-cabecalho h2,
.cta-final h2 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.secao-cabecalho p {
  margin-top: 16px;
  color: #627186;
}

.centralizado {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Como funciona */

.como-funciona {
  padding: 100px 0;
  background: var(--cinza-50);
}

.como-funciona-grade {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 54px;
}

.video-placeholder {
  min-height: 480px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(255, 90, 0, 0.25),
      transparent 28%
    ),
    linear-gradient(145deg, var(--azul-800), var(--azul-950));
  box-shadow: var(--sombra);
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.video-placeholder-conteudo {
  position: relative;
  z-index: 1;
  max-width: 330px;
  padding: 34px;
  color: var(--branco);
  text-align: center;
}

.play,
.depoimento-video span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  padding-left: 6px;
  border-radius: 50%;
  background: var(--laranja);
  color: var(--branco);
  font-size: 1.75rem;
  box-shadow: 0 12px 30px rgba(255, 90, 0, 0.34);
}

.video-placeholder-conteudo strong {
  display: block;
  margin-bottom: 10px;
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.video-placeholder-conteudo p {
  color: var(--cinza-300);
}

.como-funciona-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  color: #45556b;
  font-size: 1rem;
}

.aviso-repasse {
  margin-top: 12px;
  padding: 26px;
  border-left: 5px solid var(--laranja);
  border-radius: 0 14px 14px 0;
  background: var(--branco);
  box-shadow: 0 12px 30px rgba(5, 22, 45, 0.08);
}

.aviso-repasse strong {
  display: block;
  margin-bottom: 8px;
  color: var(--laranja);
  font-family: "League Spartan", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

/* Depoimentos */

.depoimentos {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at center top,
      rgba(18, 60, 114, 0.6),
      transparent 40%
    ),
    linear-gradient(150deg, var(--azul-950), var(--azul-800));
  color: var(--branco);
}

.depoimentos .secao-cabecalho p {
  color: var(--cinza-300);
}

.depoimentos .secao-cabecalho h2 span {
  color: var(--laranja);
}

.carrossel-depoimentos {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
}

.depoimento-placeholder {
  min-width: 220px;
  padding: 12px 12px 22px;
  border: 1px solid rgba(255, 122, 34, 0.55);
  border-radius: 18px;
  background: rgba(7, 29, 58, 0.86);
  text-align: center;
  scroll-snap-align: start;
}

.depoimento-video {
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 13px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 90, 0, 0.18),
      rgba(255, 255, 255, 0.05)
    );
}

.depoimento-video span {
  width: 58px;
  height: 58px;
  margin: 0;
  font-size: 1.2rem;
}

.depoimento-placeholder strong {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.depoimento-placeholder small {
  color: var(--cinza-300);
}

.cta-centralizado {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-centralizado small {
  color: var(--cinza-300);
}

/* FAQ */

.faq-secao {
  padding: 100px 0;
  background: var(--branco);
}

.faq {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 12px;
  background: var(--cinza-50);
}

.faq-pergunta {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border: 0;
  border-radius: 12px;
  background: var(--laranja);
  color: var(--branco);
  cursor: pointer;
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  transition: 0.2s ease;
}

.faq-pergunta:hover {
  background: #e95100;
}

.faq-pergunta span {
  font-size: 1.45rem;
  transition: transform 0.25s ease;
}

.faq-pergunta[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-resposta {
  padding: 22px;
  border: 1px solid rgba(255, 90, 0, 0.2);
  border-top: 0;
  color: #4e5e73;
  background: var(--branco);
}

/* Equipe */

.equipe {
  padding: 100px 0;
  color: var(--branco);
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(18, 60, 114, 0.55),
      transparent 40%
    ),
    var(--azul-950);
}

.grade-equipe {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1050px;
  margin-inline: auto;
}

.membro-equipe {
  padding: 28px 22px 24px;
  border: 1px solid rgba(255, 122, 34, 0.55);
  border-radius: 22px;
  background: linear-gradient(
    160deg,
    rgba(14, 43, 80, 0.98),
    rgba(4, 20, 42, 0.98)
  );
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.membro-foto {
  width: min(220px, 88%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 22px;
  overflow: hidden;
  border: 3px solid var(--laranja);
  border-radius: 50%;
  background: var(--azul-800);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.membro-foto img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.membro-equipe h3 {
  margin: 0;
  color: var(--laranja);
  font-family: "League Spartan", sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.membro-equipe p {
  min-height: 44px;
  margin: 8px 0 0;
  color: var(--cinza-300);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .grade-equipe {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .equipe {
    padding: 72px 0;
  }

  .grade-equipe {
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .membro-foto {
    width: min(210px, 82%);
  }
}

/* Segurança */

.seguranca {
  padding: 100px 0;
  background: var(--cinza-50);
}

.seguranca-painel {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 60px;
  padding: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 0, 0.55);
  border-radius: 28px;
  color: var(--branco);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 90, 0, 0.15),
      transparent 30%
    ),
    linear-gradient(145deg, var(--azul-950), var(--azul-800));
  box-shadow: var(--sombra);
}

.seguranca-texto > p {
  max-width: 690px;
  color: var(--cinza-300);
}

.seguranca-texto ul {
  margin: 28px 0;
  display: grid;
  gap: 12px;
}

.seguranca-texto li {
  position: relative;
  padding-left: 28px;
}

.seguranca-texto li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--laranja);
  font-weight: 900;
}

.contato-seguranca {
  display: inline-block;
  color: var(--branco);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--verde);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.celular-placeholder {
  width: min(100%, 290px);
  aspect-ratio: 0.53;
  justify-self: center;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 8px solid #111927;
  border-radius: 44px;
  background: #01060d;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(4deg);
}

.celular-tela {
  width: 100%;
  height: 100%;
  padding: 72px 22px 28px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at center top,
      rgba(255, 90, 0, 0.32),
      transparent 27%
    ),
    linear-gradient(var(--azul-800), var(--azul-950));
}

.celular-tela span {
  display: block;
  margin-bottom: 8px;
  color: var(--laranja);
  font-weight: 800;
}

.celular-tela strong {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.celular-tela ul {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}

.celular-tela li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--borda-clara);
  color: var(--cinza-100);
  font-size: 0.82rem;
}

/* CTA final */

.cta-final {
  padding: 70px 0;
  background: var(--branco);
}

.cta-final-conteudo {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 46px;
  border-radius: 24px;
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-800), var(--azul-950));
}

.cta-final p {
  max-width: 680px;
  margin-top: 14px;
  color: var(--cinza-300);
}

/* Blog */

.blog-destaque {
  padding: 100px 0;
  background: var(--cinza-50);
}

.grade-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.artigo-card {
  overflow: hidden;
  border: 1px solid var(--borda-escura);
  border-radius: 18px;
  background: var(--branco);
  box-shadow: 0 12px 30px rgba(5, 22, 45, 0.07);
}

.artigo-imagem {
  aspect-ratio: 16 / 8.5;
  display: grid;
  place-items: center;
  color: var(--cinza-300);
  font-weight: 700;
  text-transform: uppercase;
  background:
    linear-gradient(
      145deg,
      var(--azul-800),
      var(--azul-950)
    );
}

.artigo-card h3 {
  padding: 24px 24px 8px;
  font-family: "League Spartan", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.artigo-card p {
  padding: 0 24px 28px;
  color: #617086;
  font-size: 0.9rem;
}

.blog-destaque .cta-centralizado small {
  color: #617086;
}

/* Rodapé */

.rodape {
  background: #ff6a00;
  padding: 50px 0 30px;
}

.rodape-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.rodape-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rodape-rede {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.rodape-rede:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.rodape-rede img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.rodape-linha {
  width: 100%;
  max-width: 1280px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.rodape-inferior {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rodape-inferior p,
.rodape-inferior a {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.rodape-inferior a {
  text-decoration: none;
  font-weight: 500;
}

.rodape-inferior a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rodape {
    padding: 40px 0 24px;
  }

  .rodape-rede {
    width: 56px;
    height: 56px;
  }

  .rodape-rede img {
    width: 24px;
    height: 24px;
  }

  .rodape-inferior {
    justify-content: center;
    text-align: center;
  }

  .rodape-inferior p,
  .rodape-inferior a {
    font-size: 14px;
  }
}

/* Tablet */

@media (max-width: 1020px) {
  .hero-conteudo {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-painel {
    min-height: 390px;
  }

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

  .como-funciona-grade {
    grid-template-columns: 1fr;
  }

  .carrossel-depoimentos {
    grid-template-columns: repeat(4, 260px);
  }

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

  .seguranca-painel {
    grid-template-columns: 1fr;
  }

  .celular-placeholder {
    width: 250px;
  }

  .cta-final-conteudo {
    grid-template-columns: 1fr;
  }
}

/* Celular */

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--largura));
  }

  .cabecalho-conteudo {
    min-height: 66px;
  }

  .marca-escudo {
    width: 42px;
    height: 46px;
    border-radius: 14px 14px 17px 17px;
    font-size: 1.1rem;
  }

  .marca-texto strong {
    font-size: 1.03rem;
  }

  .marca-texto small {
    display: none;
  }

  .botao-blog {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.86rem;
  }

  .hero-conteudo {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero h2 {
    font-size: 1.55rem;
  }

  .hero-descricao {
    font-size: 0.98rem;
  }

  .hero-publico {
    font-size: 0.78rem;
  }

  .botao-whatsapp {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    font-size: 0.83rem;
    text-align: center;
  }

  .hero-painel {
    min-height: 380px;
    padding: 30px;
  }

  .hero-painel strong {
    font-size: 1.95rem;
  }

  .beneficios,
  .como-funciona,
  .depoimentos,
  .faq-secao,
  .equipe,
  .seguranca,
  .blog-destaque {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .grade-beneficios {
    grid-template-columns: 1fr;
  }

  .beneficio {
    min-height: auto;
  }

  .video-placeholder {
    min-height: 390px;
  }

  .secao-cabecalho {
    margin-bottom: 34px;
  }

  .secao-cabecalho h2,
  .cta-final h2 {
    font-size: 2.45rem;
  }

  .carrossel-depoimentos {
    grid-template-columns: repeat(4, 76vw);
  }

  .grade-equipe {
    grid-template-columns: 1fr;
  }

  .membro-equipe {
    max-width: 380px;
    width: 100%;
    margin-inline: auto;
  }

  .seguranca-painel {
    min-height: auto;
    gap: 42px;
    padding: 34px 22px;
  }

  .celular-placeholder {
    width: 220px;
  }

  .cta-final {
    padding: 60px 0;
  }

  .cta-final-conteudo {
    padding: 32px 22px;
  }

  .grade-blog {
    grid-template-columns: 1fr;
  }

  .rodape-inferior {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


.cabecalho {
  background: #ffffff;
}

.cabecalho-conteudo {
  min-height: 78px;
}

.marca {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-principal {
  display: block;
  width: auto;
  height: 58px;
  max-width: 250px;
  object-fit: contain;
}

/* Topo principal */

.hero {
  min-height: 680px;
  background: #020b18;
}

.hero::before {
  display: none;
}

.hero-conteudo {
  width: min(100% - 40px, 1440px);
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(480px, 0.92fr) minmax(600px, 1.08fr);
  align-items: stretch;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-texto {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 0;
}

.hero h1 {
  font-size: clamp(3.6rem, 5.3vw, 6.1rem);
  line-height: 0.9;
}

.hero h2 {
  margin-top: 24px;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

/* Lateral com a imagem */

.hero-visual {
  min-width: 0;
  height: 680px;
  position: relative;
  overflow: hidden;
  display: block;
}

.hero-imagem {
  opacity: 0;
  visibility: hidden;
}

/* Faixa diagonal sobre a divisão */

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -8%;
  bottom: -8%;
  left: -38px;
  width: 76px;
  border-left: 4px solid #ff5a00;
  border-right: 2px solid #ff5a00;
  background: rgba(2, 11, 24, 0.82);
  transform: skewX(-18deg);
  pointer-events: none;
}

/* Selo sobre a imagem */

.hero-selo {
  position: absolute;
  z-index: 4;
  right: 44px;
  bottom: 48px;
  width: 245px;
  padding: 28px 26px;
  border: 2px solid #ff5a00;
  border-radius: 22px;
  background: rgba(3, 20, 43, 0.94);
  color: #ffffff;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.36);
}

.hero-selo strong {
  display: block;
  color: #ff5a00;
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-selo span {
  display: block;
  margin-top: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-selo small {
  display: block;
  margin-top: 14px;
  color: #c8d2df;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Remove o painel antigo, caso algum estilo ainda permaneça */

.hero-painel,
.hero-painel-tag {
  display: none;
}

/* Tablet */

@media (max-width: 1100px) {
  .hero-conteudo {
    grid-template-columns: 1fr 1fr;
  }

  .hero-texto {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  padding-left: clamp(52px, 5vw, 88px);
  padding-right: 20px;
}
}

/* Celular */

@media (max-width: 800px) {
  .cabecalho-conteudo {
    min-height: 68px;
  }

  .logo-principal {
    height: 46px;
    max-width: 190px;
  }

  @media (max-width: 800px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(
        180deg,
        rgba(2, 13, 29, 0.50) 0%,
        rgba(2, 13, 29, 0.82) 38%,
        rgba(2, 13, 29, 0.95) 68%,
        rgba(2, 13, 29, 1) 100%
      ),
      url("./fotocapa.png?v=3") center center / cover no-repeat;
  }

  .hero-conteudo {
    display: block;
    min-height: auto;
    padding-top: 330px;
    padding-bottom: 45px;
    width: 100%;
  }

  .hero-texto {
    max-width: none;
    padding: 0 24px;
  }
}

  .hero-visual {
    order: 2;
    width: 100%;
    height: 420px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-imagem {
    object-position: 67% center;
  }

  .hero-selo {
    right: 18px;
    bottom: 20px;
    width: 205px;
    padding: 22px;
  }

  .hero-selo strong {
    font-size: 1.55rem;
  }
}

/* ==================================================
   CARROSSEL DE DEPOIMENTOS — PROVA SOCIAL
   Cole este bloco no final do style.css
   ================================================== */

.depoimentos {
  overflow: hidden;
  background: linear-gradient(115deg, #020b18 0%, #061a36 52%, #0a2a55 100%);
}

.depoimentos-carrossel {
  width: 100%;
  margin-top: 42px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 16px;
}

.depoimentos-janela {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.depoimentos-janela::-webkit-scrollbar {
  display: none;
}

.depoimentos-trilho {
  display: flex;
  gap: 22px;
}

.depoimento-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(34, 45, 75, 0.98), rgba(14, 31, 59, 0.98));
  border: 1px solid rgba(255, 90, 0, 0.72);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.depoimento-midia {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #121c31;
  cursor: pointer;
}

.depoimento-midia img,
.depoimento-midia iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.depoimento-midia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 11, 24, 0.45) 100%);
  pointer-events: none;
}

.depoimento-midia.video-carregado::after {
  display: none;
}

.depoimento-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff5a00;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(255, 90, 0, 0.35);
  transition: transform 0.22s ease, background 0.22s ease;
}

.depoimento-midia:hover .depoimento-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #ff7022;
}

.depoimento-informacoes {
  min-height: 104px;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.depoimento-informacoes strong {
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
}

.depoimento-informacoes span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.35;
}

.depoimentos-seta {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.depoimentos-seta:hover {
  background: #ff5a00;
  border-color: #ff5a00;
  transform: scale(1.06);
}

.depoimentos-seta:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
}

.depoimentos-indicadores {
  min-height: 12px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.depoimentos-indicador {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.depoimentos-indicador.ativo {
  width: 26px;
  background: #ff5a00;
}

@media (max-width: 1100px) {
  .depoimento-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 680px) {
  .depoimentos-carrossel {
    margin-top: 30px;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .depoimentos-trilho {
    gap: 14px;
  }

  .depoimento-card {
    flex-basis: 100%;
  }

  .depoimentos-seta {
    width: 36px;
    height: 36px;
    font-size: 1.55rem;
  }

  .depoimento-informacoes {
    min-height: 92px;
    padding: 17px 14px 19px;
  }
}

/* =========================================================
   AJUSTES FINAIS — CABEÇALHO, HERO E EQUIPE
   ========================================================= */

/* Cabeçalho em três colunas */
.cabecalho {
  position: relative;
  top: auto;
}

.cabecalho-conteudo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.marca {
  justify-self: start;
}

.cabecalho-redes {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.rede-social {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff5a00;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.rede-social:hover {
  background: #e84f00;
  transform: translateY(-2px);
}

.rede-social i {
  font-size: 1.08rem;
}

.botao-blog {
  justify-self: end;
}

/* Ajustes do texto e do selo do topo */
@media (min-width: 901px) {
  .hero-texto {
    position: relative;
    left: clamp(28px, 2.4vw, 46px);
  }

  .hero-selo {
    transform: translate(-34px, -28px);
    z-index: 5;
  }
}

/* Remove todos os desenhos que ficam atrás do quadro + de 4 mil */
.hero-visual::before,
.hero-visual::after,
.hero-selo::before,
.hero-selo::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   EQUIPE — SEIS PESSOAS NA MESMA LINHA
   ========================================================= */

.equipe {
  overflow: hidden;
}

.equipe .secao-cabecalho {
  margin-bottom: 32px;
}

.grade-equipe {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.membro-equipe {
  min-width: 0;
  padding: 18px 8px 20px;
  border: 1px solid rgba(255, 90, 0, 0.7);
  border-radius: 18px;
  background: rgba(7, 29, 58, 0.88);
  text-align: center;
  box-shadow: none;
}

.foto-placeholder {
  display: none;
}

.foto-equipe {
  width: 118px;
  height: 118px;
  display: block;
  margin: 0 auto 14px;
  border: 3px solid #ff5a00;
  border-radius: 50%;
  background: #071d3a;
  object-fit: cover;
  object-position: center;
}

.membro-equipe h3 {
  margin: 0;
  color: #ff5a00;
  font-family: "League Spartan", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.membro-equipe p {
  min-height: 42px;
  margin-top: 7px;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.4;
}

/* Tablet: mantém os cards em uma fileira com rolagem */
@media (max-width: 1100px) {
  .grade-equipe {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 158px;
    justify-content: start;
    overflow-x: auto;
    padding: 4px 0 14px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .membro-equipe {
    scroll-snap-align: start;
  }

  .foto-equipe {
    width: 112px;
    height: 112px;
  }
}

/* Celular */
@media (max-width: 800px) {
  .cabecalho-conteudo {
    grid-template-columns: 1fr auto;
  }

  .cabecalho-redes {
    display: none;
  }

  .hero-texto {
    left: auto;
  }

  .hero-selo {
    transform: none;
  }

  .grade-equipe {
    grid-auto-columns: 152px;
  }

  .foto-equipe {
    width: 108px;
    height: 108px;
  }
}

/* =========================================================
   AJUSTES FINAIS — CABEÇALHO, HERO E EQUIPE
   ========================================================= */

/* Cabeçalho em três colunas */
.cabecalho {
  position: relative;
  top: auto;
}

.cabecalho-conteudo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.marca {
  justify-self: start;
}

.cabecalho-redes {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.rede-social {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff5a00;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.rede-social:hover {
  background: #e84f00;
  transform: translateY(-2px);
}

.rede-social i {
  font-size: 1.08rem;
}

.botao-blog {
  justify-self: end;
}

/* Ajustes do texto e do selo do topo */
@media (min-width: 901px) {
  .hero-texto {
    position: relative;
    left: clamp(28px, 2.4vw, 46px);
  }

  .hero-selo {
    transform: translate(-34px, -28px);
    z-index: 5;
  }
}

/* Remove todos os desenhos que ficam atrás do quadro + de 4 mil */
.hero-visual::before,
.hero-visual::after,
.hero-selo::before,
.hero-selo::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   EQUIPE — SEIS PESSOAS NA MESMA LINHA
   ========================================================= */

.equipe {
  overflow: hidden;
}

.equipe .secao-cabecalho {
  margin-bottom: 32px;
}

.grade-equipe {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.membro-equipe {
  min-width: 0;
  padding: 18px 8px 20px;
  border: 1px solid rgba(255, 90, 0, 0.7);
  border-radius: 18px;
  background: rgba(7, 29, 58, 0.88);
  text-align: center;
  box-shadow: none;
}

.foto-placeholder {
  display: none;
}

.foto-equipe {
  width: 118px;
  height: 118px;
  display: block;
  margin: 0 auto 14px;
  border: 3px solid #ff5a00;
  border-radius: 50%;
  background: #071d3a;
  object-fit: cover;
  object-position: center;
}

.membro-equipe h3 {
  margin: 0;
  color: #ff5a00;
  font-family: "League Spartan", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.membro-equipe p {
  min-height: 42px;
  margin-top: 7px;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.4;
}

/* Tablet: mantém os cards em uma fileira com rolagem */
@media (max-width: 1100px) {
  .grade-equipe {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 158px;
    justify-content: start;
    overflow-x: auto;
    padding: 4px 0 14px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .membro-equipe {
    scroll-snap-align: start;
  }

  .foto-equipe {
    width: 112px;
    height: 112px;
  }
}

/* Celular */
@media (max-width: 800px) {
  .cabecalho-conteudo {
    grid-template-columns: 1fr auto;
  }

  .cabecalho-redes {
    display: none;
  }

  .hero-texto {
    left: auto;
  }

  .hero-selo {
    transform: none;
  }

  .grade-equipe {
    grid-auto-columns: 152px;
  }

  .foto-equipe {
    width: 108px;
    height: 108px;
  }
}

/* =========================================================
   CORREÇÃO DO TOPO PRINCIPAL
   ========================================================= */

/* Une o fundo escuro com a imagem da cegonha */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #020d1d 0%,
      #020d1d 31%,
      rgba(2, 13, 29, 0.98) 38%,
      rgba(2, 13, 29, 0.88) 45%,
      rgba(2, 13, 29, 0.48) 56%,
      rgba(2, 13, 29, 0.08) 72%,
      rgba(2, 13, 29, 0) 100%
    ),
    url("./hero-cegonha-rota48.png.webp") center right / cover no-repeat;
}

/* Mantém a divisão apenas para posicionar texto e selo */
.hero-conteudo {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  min-height: 705px;
}

/* A imagem já está no fundo da seção */
.hero-imagem {
  opacity: 0;
  visibility: hidden;
}

/* Texto do lado esquerdo */
.hero-texto {
  position: relative;
  left: 0;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  padding-left: clamp(52px, 5vw, 88px);
  padding-right: 20px;
}

/* Veículos com até: uma única linha */
.hero-texto h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 4vw, 65px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1px;
  text-transform: uppercase;
}

/* Cada frase permanece em sua própria linha */
.hero-texto h1,
.hero-texto h1 span {
  white-space: nowrap;
}

/* 40% abaixo da FIPE: mesmo tamanho da frase anterior */
.hero-texto h1 span {
  display: block;
  margin-top: 10px;
  color: #ff5a00;
  font-size: inherit;
  line-height: inherit;
}

/* Potencial real de margem */
.hero-texto h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(27px, 2.15vw, 37px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Lista igual ao modelo do anexo */
.hero-topicos {
  display: grid;
  gap: 13px;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.hero-topicos li {
  position: relative;
  padding-left: 30px;
  color: #ffffff;
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 600;
  line-height: 1.35;
}

.hero-topicos li::before {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 0;
  color: #ff5a00;
  font-size: 25px;
  font-weight: 800;
}

/* Bloco: repasse para lojistas */
.hero-publico {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 30px;
  padding: 7px 0 7px 20px;
  border-left: 3px solid #ff5a00;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-publico span,
.hero-publico strong {
  display: block;
  color: #ffffff;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.3;
}

.hero-publico span {
  font-weight: 600;
}

.hero-publico strong {
  font-weight: 800;
}

/* Botão com tamanho semelhante ao anexo */
.hero-texto .botao-whatsapp {
  width: fit-content;
  min-width: 350px;
  padding: 18px 30px;
}

/* Mantém apenas o quadrado de membros */
.hero-visual::before,
.hero-visual::after,
.hero-selo::before,
.hero-selo::after {
  display: none !important;
  content: none !important;
}

/* Posicionamento do quadrado */
.hero-selo {
  position: absolute;
  z-index: 5;
  right: clamp(42px, 5vw, 82px);
  bottom: 64px;
  transform: none;
}

/* Tablet e telas menores */
@media (max-width: 1100px) {
  .hero-conteudo {
    grid-template-columns: 50% 50%;
    min-height: 650px;
  }

  .hero-texto {
    padding-left: 42px;
  }

  .hero-texto h1 {
    font-size: clamp(36px, 4vw, 49px);
  }

  .hero-selo {
    right: 25px;
    bottom: 35px;
  }
}

/* Celular */
@media (max-width: 800px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(2, 13, 29, 0.34) 0%,
        rgba(2, 13, 29, 0.82) 38%,
        #020d1d 67%,
        #020d1d 100%
      ),
      url("./Carreta.png") top center / auto 48% no-repeat;
  }

  .hero-conteudo {
    display: block;
    min-height: auto;
    padding-top: 330px;
    padding-bottom: 45px;
  }

  .hero-texto {
    max-width: none;
    padding: 0 24px;
  }

  .hero-texto h1 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .hero-texto h1,
  .hero-texto h1 span {
    white-space: normal;
  }

  .hero-visual {
    position: static;
  }

  .hero-selo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 290px);
    margin: 30px auto 0;
  }

  .hero-texto .botao-whatsapp {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   REMOVER A PLACA DE FUNDO DO SELO "+ DE 4 MIL"
   Mantém somente o quadrado com as informações
   ========================================================= */

.hero-visual > *:not(.hero-selo) {
  display: none !important;
}

.hero-visual::before,
.hero-visual::after,
.hero-selo::before,
.hero-selo::after {
  display: none !important;
  content: none !important;
}

/* garante que só o card principal apareça */
.hero-selo {
  position: absolute;
  right: clamp(42px, 5vw, 82px);
  bottom: 64px;
  z-index: 10;
}

/* =========================================================
   RESTAURAÇÃO DO CARROSSEL DE BENEFÍCIOS
   ========================================================= */

.beneficios-carrossel {
  position: relative;
  width: 100%;
  padding: 62px 0 36px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #061a36 0%,
      #0a2f60 50%,
      #061a36 100%
    );
}

.beneficios-carrossel-conteudo {
  position: relative;
  width: min(100% - 40px, 1460px);
  margin: 0 auto;
  padding: 0 58px;
}

.beneficios-janela {
  width: 100%;
  overflow: hidden;
}

.beneficios-trilho {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.beneficio-slide {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
}

.beneficio-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
  object-fit: contain;
}

.beneficios-seta {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(15, 53, 98, 0.94);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.beneficios-seta:hover:not(:disabled) {
  background: #ff5a00;
  transform: translateY(-50%) scale(1.05);
}

.beneficios-seta:disabled {
  opacity: 0.3;
  cursor: default;
}

.beneficios-seta-anterior {
  left: 0;
}

.beneficios-seta-proxima {
  right: 0;
}

.beneficios-indicadores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 14px;
  margin-top: 30px;
}

.beneficios-indicador {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.beneficios-indicador.ativo {
  width: 28px;
  background: #ff5a00;
}

/* Tablet */
@media (max-width: 1050px) {
  .beneficios-carrossel-conteudo {
    width: min(100% - 28px, 900px);
    padding: 0 52px;
  }

  .beneficio-slide {
    flex-basis: calc((100% - 20px) / 2);
  }

  .beneficios-trilho {
    gap: 20px;
  }
}

/* Celular */
@media (max-width: 650px) {
  .beneficios-carrossel {
    padding: 40px 0 28px;
  }

  .beneficios-carrossel-conteudo {
    width: 100%;
    padding: 0 48px;
  }

  .beneficios-trilho {
    gap: 16px;
  }

  .beneficio-slide {
    flex-basis: 100%;
  }

  .beneficios-seta {
    width: 40px;
    height: 40px;
    font-size: 27px;
  }

  .beneficios-seta-anterior {
    left: 4px;
  }

  .beneficios-seta-proxima {
    right: 4px;
  }

  .beneficios-indicadores {
    margin-top: 22px;
  }
}

/* =========================================================
   FAQ — DUAS COLUNAS INDEPENDENTES
   ========================================================= */

.faq {
  max-width: 980px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;

  gap: 22px;
}

.faq-coluna {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 16px;
}

.faq-item {
  width: 100%;
  margin: 0;

  align-self: flex-start;
}

.faq-pergunta {
  width: 100%;
}

.faq-resposta {
  width: 100%;
}

/* No celular, volta para uma coluna e mantém a ordem original */
@media (max-width: 850px) {
  .faq {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

/* =========================================================
   CORREÇÃO COMPLETA DO CARROSSEL DE DEPOIMENTOS
   ========================================================= */

.depoimentos {
  position: relative;
  overflow: hidden;
  padding: 75px 0;
  background:
    linear-gradient(
      90deg,
      #03142b 0%,
      #0a2e5c 50%,
      #03142b 100%
    );
}

.depoimentos .container {
  width: min(100% - 40px, 1360px);
  margin: 0 auto;
}

.depoimentos .secao-cabecalho {
  margin-bottom: 46px;
}

.depoimentos-carrossel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.depoimentos-janela {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.depoimentos-trilho {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

.depoimento-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ff5a00;
  border-radius: 19px;
  background: #0a254d;
}

.depoimento-midia {
  position: relative;
  display: block;
  width: 100%;
  height: 390px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #152844;
  cursor: pointer;
}

.depoimento-midia img,
.depoimento-midia iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.depoimento-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff5a00;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 28px rgba(255, 90, 0, 0.35);
}

.video-carregado .depoimento-play {
  display: none;
}

.depoimento-informacoes {
  min-height: 94px;
  padding: 20px 12px;
  text-align: center;
}

.depoimento-informacoes strong {
  display: block;
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.depoimento-informacoes span {
  display: block;
  margin-top: 6px;
  color: #d7e2f0;
  font-size: 0.96rem;
}

.depoimentos-seta {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(13, 49, 91, 0.95);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.depoimentos-seta:hover:not(:disabled) {
  background: #ff5a00;
}

.depoimentos-seta:disabled {
  opacity: 0.3;
  cursor: default;
}

.depoimentos-indicadores {
  display: flex;
  min-height: 14px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 25px;
}

.depoimentos-indicador {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.depoimentos-indicador.ativo {
  width: 27px;
  background: #ff5a00;
}

.depoimentos .cta-centralizado {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  margin-top: 38px;
}

.depoimentos .cta-centralizado .botao-whatsapp {
  width: auto;
  min-width: 350px;
  max-width: 100%;
  padding: 18px 30px;
  white-space: nowrap;
  word-break: normal;
}

.depoimentos .cta-centralizado small {
  display: block;
  color: #ffffff;
  text-align: center;
}

/* Tablet */
@media (max-width: 1100px) {
  .depoimentos-carrossel {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 12px;
  }

  .depoimentos-trilho {
    gap: 20px;
  }

  .depoimento-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

/* Celular */
@media (max-width: 680px) {
  .depoimentos {
    padding: 50px 0;
  }

  .depoimentos .container {
    width: min(100% - 20px, 520px);
  }

  .depoimentos-carrossel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 7px;
  }

  .depoimentos-trilho {
    gap: 16px;
  }

  .depoimento-card {
    flex-basis: 100%;
  }

  .depoimento-midia {
    height: 450px;
  }

  .depoimentos-seta {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .depoimentos .cta-centralizado .botao-whatsapp {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

/* =========================================================
   SEÇÃO CUIDADO COM GOLPES
   ========================================================= */

/* =========================================================
   SEÇÃO GOLPES — NOVA IMAGEM E NOVA DISTRIBUIÇÃO
   ========================================================= */

.golpes {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 620px;
  max-height: 760px;
  padding: 0;
  color: #ffffff;
  background: url("./fundo-golpes.png.png") center center / 100% 100% no-repeat;
}

.golpes-conteudo {
  position: relative;
  z-index: 2;
  width: min(100% - 60px, 1320px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.golpes-texto {
  width: min(100%, 620px);
  margin-left: clamp(20px, 3vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.golpes-tag {
  display: inline-block;
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.golpes-titulo {
  margin: 0;
  color: #ff5a00;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 560px;
}

.golpes-linha {
  width: min(100%, 700px);
  height: 1px;
  margin: 18px 0 18px;
  background: rgba(82, 174, 255, 0.28);
  box-shadow: 0 0 10px rgba(63, 167, 255, 0.16);
}

.golpes-descricao {
  max-width: 560px;
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.golpes-bloco {
  margin-top: 34px;
}

.golpes-subtitulo {
  margin: 0 0 18px;
  color: #ff5a00;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 2.6vw, 2.95rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  max-width: 520px;
}

.golpes-beneficios {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 8px 36px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.golpes-beneficios li {
  position: relative;
  padding-left: 18px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.golpes-beneficios li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  color: #ff5a00;
  font-size: 1rem;
  font-weight: 800;
}

.golpes-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 8px;
  background: #1cc94c;
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(28, 201, 76, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.golpes-botao:hover {
  background: #15b13f;
  transform: translateY(-2px);
}

.golpes-botao i {
  font-size: 1.18rem;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1050px) {
  .golpes {
    min-height: 560px;
    aspect-ratio: auto;
    padding: 42px 0;
    background: url("./fundo-golpes.png.png") center center / cover no-repeat;
  }

  .golpes-conteudo {
    width: min(100% - 40px, 980px);
    min-height: auto;
    align-items: flex-start;
  }

  .golpes-texto {
    width: min(100%, 560px);
    margin-left: 0;
  }

  .golpes-titulo {
    font-size: 2.6rem;
    max-width: 480px;
  }

  .golpes-descricao {
    max-width: 500px;
    font-size: 0.88rem;
  }

  .golpes-bloco {
    margin-top: 28px;
  }

  .golpes-subtitulo {
    font-size: 2.2rem;
    max-width: 480px;
  }

  .golpes-beneficios {
    gap: 8px 24px;
  }

  .golpes-beneficios li {
    font-size: 0.88rem;
  }
}

/* =========================
   CELULAR
   ========================= */
@media (max-width: 760px) {
  .golpes {
    min-height: auto;
    aspect-ratio: auto;
    padding: 42px 0 46px;
    background:
      linear-gradient(
        180deg,
        rgba(1, 10, 27, 0.82) 0%,
        rgba(1, 10, 27, 0.9) 38%,
        rgba(1, 10, 27, 0.98) 100%
      ),
      url("./fundo-golpes.png.png") 72% top / cover no-repeat;
  }

  .golpes-conteudo {
    width: min(100% - 24px, 560px);
    height: auto;
    align-items: flex-start;
  }

  .golpes-texto {
    width: 100%;
    margin-left: 0;
  }

  .golpes-tag {
    font-size: 0.8rem;
  }

  .golpes-titulo {
    font-size: 2.2rem;
    line-height: 0.95;
    max-width: 100%;
  }

  .golpes-linha {
    margin: 16px 0;
  }

  .golpes-descricao {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .golpes-bloco {
    margin-top: 28px;
  }

  .golpes-subtitulo {
    font-size: 1.9rem;
    line-height: 1;
    max-width: 100%;
  }

  .golpes-beneficios {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .golpes-beneficios li {
    white-space: normal;
    font-size: 0.9rem;
  }

  .golpes-botao {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.05rem;
    text-align: center;
  }
}
/* =========================================================
   CARROSSEL DE DEPOIMENTOS — 4 VÍDEOS POR VEZ
   ========================================================= */

.depoimentos-janela {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.depoimentos-trilho {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

.depoimento-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
}

/* Tablet: dois vídeos */
@media (max-width: 1100px) {
  .depoimentos-trilho {
    gap: 20px;
  }

  .depoimento-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

/* Celular: um vídeo */
@media (max-width: 680px) {
  .depoimentos-trilho {
    gap: 16px;
  }

  .depoimento-card {
    flex-basis: 100%;
  }
}

/* Ícone correto do WhatsApp nos botões */
.botao-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.botao-whatsapp i {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.botao-whatsapp span {
  display: inline-block;
}

/* Ícone do WhatsApp em todos os botões */

.botao-whatsapp,
.golpes-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Ícone do WhatsApp em todos os botões */
.botao-whatsapp,
.golpes-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.botao-whatsapp i,
.golpes-botao i {
  display: inline-block;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
}

.botao-whatsapp span {
  display: inline-block;
}

/* =========================================================
   PADRÃO ÚNICO DOS BOTÕES DO WHATSAPP
   ========================================================= */

/* Impede qualquer ícone automático criado pelo CSS */
.botao-whatsapp::before,
.botao-whatsapp::after,
.golpes-botao::before,
.golpes-botao::after {
  content: none !important;
  display: none !important;
}

/* Padrão visual de todos os botões */
.botao-whatsapp,
.golpes-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-height: 58px;
  padding: 14px 30px;

  border: 0;
  border-radius: 8px;

  background: #13b83f;
  color: #ffffff !important;

  font-family: "League Spartan", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;

  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  box-shadow: 0 12px 28px rgba(19, 184, 63, 0.28);

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Corrige especialmente o span do botão da chamada final */
.botao-whatsapp span,
.cta-final .botao-whatsapp span {
  display: inline-block;
  margin: 0;
  color: #ffffff !important;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  line-height: inherit;
  text-transform: uppercase;
}

/* Mantém somente o ícone que está escrito no HTML */
.botao-whatsapp i,
.golpes-botao i {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  margin: 0;

  color: #ffffff !important;
  font-size: 1.35rem;
  line-height: 1;
}

/* Efeito ao passar o mouse */
.botao-whatsapp:hover,
.golpes-botao:hover {
  background: #0e9833;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(19, 184, 63, 0.36);
}

/* Celular */
@media (max-width: 700px) {
  .botao-whatsapp,
  .golpes-botao {
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
    font-size: 0.96rem;
  }
}

/* =========================================================
   AJUSTE DA SEÇÃO "CUIDADO COM GOLPES"
   ========================================================= */

.golpes {
  padding: 56px 0 52px;
  background-position: center right;
  background-size: cover;
}

.golpes-conteudo {
  min-height: 620px;
  align-items: flex-start;
}

.golpes-texto {
  max-width: 620px;
}

.golpes-tag {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.golpes-titulo {
  font-size: 4.2rem;
  line-height: 0.92;
  margin-bottom: 18px;
}

.golpes-descricao {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.golpes-texto p {
  font-size: 1rem;
  line-height: 1.45;
}

.golpes-subtitulo {
  font-size: 4.3rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 520px;
  margin: 34px 0 18px;
}

.golpes-lista-beneficios {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 42px;
  row-gap: 10px;
  align-items: start;
  justify-content: start;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.golpes-lista-beneficios li {
  font-size: 0.98rem;
  line-height: 1.3;
  white-space: nowrap;
}

.golpes-botao,
.botao-whatsapp {
  min-height: 58px;
  padding: 16px 30px;
  font-size: 1.08rem;
}

/* linha divisória mais leve */
.golpes-linha {
  margin: 18px 0 18px;
  opacity: 0.35;
}

/* desktop um pouco menor */
@media (max-width: 1200px) {
  .golpes {
    padding: 48px 0 46px;
    background-size: cover;
  }

  .golpes-conteudo {
    min-height: 560px;
  }

  .golpes-titulo {
    font-size: 3.5rem;
  }

  .golpes-subtitulo {
    font-size: 3.5rem;
    max-width: 460px;
  }

  .golpes-lista-beneficios {
    column-gap: 28px;
  }
}

/* tablet */
@media (max-width: 900px) {
  .golpes {
    padding: 42px 0;
    background-position: center right;
    background-size: cover;
  }

  .golpes-conteudo {
    min-height: auto;
  }

  .golpes-texto {
    max-width: 100%;
  }

  .golpes-titulo {
    font-size: 2.9rem;
  }

  .golpes-subtitulo {
    font-size: 2.7rem;
    max-width: 100%;
  }

  .golpes-lista-beneficios {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .golpes-lista-beneficios li {
    white-space: normal;
  }
}

/* celular */
@media (max-width: 640px) {
  .golpes-titulo {
    font-size: 2.3rem;
  }

  .golpes-subtitulo {
    font-size: 2.1rem;
    line-height: 1;
  }

  .golpes-descricao,
  .golpes-texto p,
  .golpes-lista-beneficios li {
    font-size: 0.95rem;
  }
}

/* =========================================================
   AJUSTE FINAL DA SEÇÃO GOLPES
   ========================================================= */

.golpes {
  position: relative;
  padding: 0;
  background-image: url("./fundo-golpes.png.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto; /* mostra a imagem inteira sem cortar */
  min-height: 760px; /* altura próxima da arte */
  display: flex;
  align-items: stretch;
}

.golpes .container {
  width: 100%;
}

.golpes-conteudo {
  min-height: 760px;
  display: flex;
  align-items: flex-start;
}

.golpes-texto {
  max-width: 660px;
  padding-top: 68px;
  padding-bottom: 40px;
}

.golpes-tag {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.golpes-titulo {
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  color: #ff5a00;
  margin: 0 0 26px;
  white-space: nowrap; /* mantém em uma linha */
}

.golpes-linha {
  width: 100%;
  max-width: 860px;
  height: 1px;
  background: rgba(120, 190, 255, 0.35);
  margin: 0 0 22px;
}

.golpes-descricao,
.golpes-texto p {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #ffffff;
  max-width: 640px;
  margin-bottom: 12px;
}

.golpes-subtitulo {
  font-size: 3.35rem;
  line-height: 1.02;
  font-weight: 800;
  color: #ff5a00; /* laranja */
  max-width: 620px; /* faz quebrar em 2 linhas */
  margin: 48px 0 24px;
  text-transform: uppercase;
}

.golpes-lista-beneficios {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 42px;
  row-gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.golpes-lista-beneficios li {
  font-size: 0.95rem;
  line-height: 1.25;
  color: #ffffff;
  white-space: nowrap;
}

.golpes-lista-beneficios li::before {
  content: "✓";
  color: #ff5a00;
  font-weight: 800;
  margin-right: 8px;
}

.golpes-botao,
.botao-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 30px;
  border-radius: 12px;
  background: #19c441;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(25, 196, 65, 0.28);
}

.golpes-botao:hover,
.botao-whatsapp:hover {
  background: #16ae39;
  color: #ffffff;
}

/* ajuste em telas menores */
@media (max-width: 1200px) {
  .golpes,
  .golpes-conteudo {
    min-height: 680px;
  }

  .golpes-texto {
    padding-top: 56px;
  }

  .golpes-titulo {
    font-size: 3.3rem;
  }

  .golpes-subtitulo {
    font-size: 2.8rem;
    max-width: 520px;
  }

  .golpes-lista-beneficios {
    column-gap: 24px;
  }
}

@media (max-width: 900px) {
  .golpes {
    background-size: cover;
    min-height: auto;
    padding: 48px 0;
  }

  .golpes-conteudo {
    min-height: auto;
  }

  .golpes-texto {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .golpes-titulo {
    font-size: 2.4rem;
    white-space: normal;
  }

  .golpes-subtitulo {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .golpes-lista-beneficios {
    grid-template-columns: 1fr;
  }

  .golpes-lista-beneficios li {
    white-space: normal;
  }
}

/* =========================================================
   SEÇÃO GOLPES — CONFIGURAÇÃO DEFINITIVA
   ========================================================= */

/* Computador */
@media (min-width: 901px) {
  .golpes {
    position: relative !important;
    width: 100% !important;

    /*
      A imagem original é 2048 x 1152, proporção 16:9.
      A seção acompanha exatamente essa proporção.
    */
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    height: auto !important;

    padding: 0 !important;
    overflow: hidden !important;

    color: #ffffff !important;

    background-image: url("./fundo-golpes.png.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 100% 100% !important;
  }

  /*
    Centraliza o conteúdo e impede que ele fique
    encostado na borda esquerda.
  */
  .golpes .container,
  .golpes-conteudo {
    width: min(calc(100% - 120px), 1400px) !important;
    max-width: 1400px !important;
    min-height: 100% !important;
    height: 100% !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: flex-start !important;
  }

  .golpes-texto {
    width: 58% !important;
    max-width: 760px !important;

    margin: 0 !important;
    padding: clamp(42px, 4.2vw, 78px) 0 30px !important;
  }

  .golpes-tag {
    display: block !important;
    margin: 0 0 6px !important;

    color: #ffffff !important;
    font-size: clamp(0.72rem, 0.8vw, 0.9rem) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
  }

  .golpes-titulo {
    width: 100% !important;
    max-width: 650px !important;

    margin: 0 !important;

    color: #ff5a00 !important;
    font-family: "League Spartan", sans-serif !important;
    font-size: clamp(2.4rem, 3.25vw, 3.7rem) !important;
    font-weight: 800 !important;
    line-height: 0.88 !important;
    letter-spacing: -0.015em !important;
    white-space: normal !important;
    text-transform: uppercase !important;
  }

  .golpes-linha {
    width: 100% !important;
    max-width: 690px !important;
    height: 1px !important;

    margin: clamp(14px, 1.5vw, 22px) 0
      clamp(14px, 1.5vw, 22px) !important;

    background: rgba(91, 180, 255, 0.28) !important;
    box-shadow: none !important;
  }

  .golpes-descricao,
  .golpes-texto > p {
    width: 100% !important;
    max-width: 690px !important;

    margin: 0 0 8px !important;

    color: #ffffff !important;
    font-size: clamp(0.72rem, 0.82vw, 0.9rem) !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
  }

  .golpes-bloco {
    width: 100% !important;
    max-width: 760px !important;
    margin-top: clamp(24px, 3vw, 46px) !important;
  }

  .golpes-subtitulo {
    width: 100% !important;
    max-width: 720px !important;

    margin: 0 0 clamp(12px, 1.4vw, 20px) !important;

    color: #ff5a00 !important;
    font-family: "League Spartan", sans-serif !important;
    font-size: clamp(2rem, 2.65vw, 3.05rem) !important;
    font-weight: 800 !important;
    line-height: 0.94 !important;
    letter-spacing: -0.015em !important;
    text-transform: uppercase !important;

    /*
      Largura calculada para a frase ficar
      normalmente em apenas duas linhas.
    */
    text-wrap: balance;
  }

  /* Classe correta existente no HTML */
  .golpes-beneficios {
    display: grid !important;
    grid-template-columns: max-content max-content !important;
    grid-template-rows: repeat(3, auto) !important;
    grid-auto-flow: column !important;

    justify-content: start !important;
    align-items: start !important;

    gap: 6px clamp(26px, 3vw, 46px) !important;

    width: fit-content !important;
    max-width: 100% !important;

    margin: 0 0 clamp(14px, 1.6vw, 22px) !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .golpes-beneficios li {
    position: relative !important;

    margin: 0 !important;
    padding-left: 17px !important;

    color: #ffffff !important;
    font-size: clamp(0.7rem, 0.8vw, 0.88rem) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
  }

  .golpes-beneficios li::before {
    content: "✓" !important;
    position: absolute !important;
    top: -1px !important;
    left: 0 !important;

    color: #ff5a00 !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
  }

  .golpes-botao {
    width: auto !important;
    min-width: 320px !important;
    min-height: 52px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    padding: 12px 26px !important;
    border: 0 !important;
    border-radius: 8px !important;

    background: #13b83f !important;
    color: #ffffff !important;

    font-size: clamp(0.9rem, 1vw, 1.08rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;

    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;

    box-shadow: 0 12px 28px rgba(19, 184, 63, 0.28) !important;
  }

  .golpes-botao:hover {
    background: #0e9833 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
  }
}

/* Tablet e celular */
@media (max-width: 900px) {
  .golpes {
    min-height: auto !important;
    aspect-ratio: auto !important;
    padding: 46px 0 !important;

    background-image:
      linear-gradient(
        rgba(2, 11, 24, 0.82),
        rgba(2, 11, 24, 0.94)
      ),
      url("./fundo-golpes.png.png") !important;

    background-position: 72% top !important;
    background-size: auto 500px !important;
    background-repeat: no-repeat !important;
  }

  .golpes .container,
  .golpes-conteudo {
    width: min(calc(100% - 32px), 620px) !important;
    min-height: auto !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .golpes-texto {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .golpes-titulo {
    max-width: 100% !important;
    font-size: clamp(2.2rem, 10vw, 3rem) !important;
    white-space: normal !important;
  }

  .golpes-descricao,
  .golpes-texto > p {
    font-size: 0.9rem !important;
  }

  .golpes-bloco {
    margin-top: 38px !important;
  }

  .golpes-subtitulo {
    max-width: 100% !important;
    color: #ff5a00 !important;
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
  }

  .golpes-beneficios {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    grid-auto-flow: row !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .golpes-beneficios li {
    white-space: normal !important;
    font-size: 0.88rem !important;
  }

  .golpes-botao {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* =========================================================
   SEÇÃO GOLPES — AJUSTE DEFINITIVO
   Mantém a imagem proporcional e posiciona o conteúdo mais abaixo.
   ========================================================= */

@media (min-width: 901px) {
  .golpes {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 720px !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: #ffffff !important;
    background-color: #020b18 !important;
    background-image: url("./fundo-golpes.png.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .golpes .container,
  .golpes-conteudo {
    position: relative !important;
    z-index: 2 !important;
    width: min(calc(100% - 80px), 1420px) !important;
    max-width: 1420px !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
  }

  .golpes-texto {
    width: min(54%, 720px) !important;
    max-width: 720px !important;
    margin: 0 !important;
    padding: 0 0 clamp(48px, 5.2vw, 88px) clamp(8px, 1.3vw, 22px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }

  .golpes-tag {
    display: block !important;
    margin: 0 0 5px !important;
    color: #ffffff !important;
    font-size: clamp(0.72rem, 0.75vw, 0.84rem) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
  }

  .golpes-titulo {
    width: 100% !important;
    max-width: 700px !important;
    margin: 0 !important;
    color: #ff5a00 !important;
    font-family: "League Spartan", sans-serif !important;
    font-size: clamp(2.25rem, 2.8vw, 3.15rem) !important;
    font-weight: 800 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
  }

  .golpes-linha {
    width: 100% !important;
    max-width: 700px !important;
    height: 1px !important;
    margin: clamp(11px, 1.2vw, 17px) 0 !important;
    background: rgba(82, 174, 255, 0.27) !important;
    box-shadow: none !important;
  }

  .golpes-descricao,
  .golpes-texto > p {
    width: 100% !important;
    max-width: 690px !important;
    margin: 0 0 7px !important;
    color: #ffffff !important;
    font-size: clamp(0.72rem, 0.78vw, 0.86rem) !important;
    font-weight: 500 !important;
    line-height: 1.42 !important;
  }

  .golpes-bloco {
    width: 100% !important;
    max-width: 720px !important;
    margin-top: clamp(20px, 2.3vw, 34px) !important;
  }

  .golpes-subtitulo {
    width: 100% !important;
    max-width: 690px !important;
    margin: 0 0 clamp(12px, 1.3vw, 18px) !important;
    color: #ff5a00 !important;
    font-family: "League Spartan", sans-serif !important;
    font-size: clamp(1.85rem, 2.25vw, 2.55rem) !important;
    font-weight: 800 !important;
    line-height: 0.96 !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
  }

  .golpes-beneficios {
    display: grid !important;
    grid-template-columns: max-content max-content !important;
    grid-template-rows: repeat(3, auto) !important;
    grid-auto-flow: column !important;
    justify-content: start !important;
    align-items: start !important;
    gap: 6px clamp(24px, 2.8vw, 42px) !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 0 0 clamp(14px, 1.5vw, 21px) !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .golpes-beneficios li {
    position: relative !important;
    margin: 0 !important;
    padding-left: 17px !important;
    color: #ffffff !important;
    font-size: clamp(0.7rem, 0.76vw, 0.84rem) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
  }

  .golpes-beneficios li::before {
    content: "✓" !important;
    position: absolute !important;
    top: -1px !important;
    left: 0 !important;
    color: #ff5a00 !important;
    font-size: 0.96rem !important;
    font-weight: 900 !important;
  }

  .golpes-botao {
    width: auto !important;
    min-width: 340px !important;
    min-height: 54px !important;
    padding: 12px 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #13b83f !important;
    color: #ffffff !important;
    font-family: "League Spartan", sans-serif !important;
    font-size: clamp(0.94rem, 1vw, 1.08rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    box-shadow: 0 12px 28px rgba(19, 184, 63, 0.3) !important;
  }

  .golpes-botao:hover {
    background: #0e9833 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
  }

  .golpes-botao i {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
  }
}

@media (max-width: 900px) {
  .golpes {
    min-height: auto !important;
    height: auto !important;
    aspect-ratio: auto !important;
    padding: 46px 0 !important;
    background-color: #020b18 !important;
    background-image:
      linear-gradient(
        180deg,
        rgba(2, 11, 24, 0.82),
        rgba(2, 11, 24, 0.96)
      ),
      url("./fundo-golpes.png.png") !important;
    background-repeat: no-repeat !important;
    background-position: 72% top !important;
    background-size: auto 540px !important;
  }

  .golpes .container,
  .golpes-conteudo {
    width: min(calc(100% - 30px), 620px) !important;
    height: auto !important;
    min-height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
  }

  .golpes-texto {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .golpes-titulo {
    white-space: normal !important;
    font-size: clamp(2.1rem, 9vw, 2.85rem) !important;
  }

  .golpes-descricao,
  .golpes-texto > p {
    font-size: 0.9rem !important;
  }

  .golpes-bloco {
    margin-top: 34px !important;
  }

  .golpes-subtitulo {
    color: #ff5a00 !important;
    font-size: clamp(1.9rem, 8.5vw, 2.65rem) !important;
  }

  .golpes-beneficios {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    grid-auto-flow: row !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .golpes-beneficios li {
    white-space: normal !important;
    font-size: 0.88rem !important;
  }

  .golpes-botao {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* =========================================================
   RODAPÉ DEFINITIVO — FUNDO LARANJA E ÍCONES PERSONALIZADOS
   ========================================================= */

.rodape {
  position: relative;
  width: 100%;
  padding: 48px 0 28px;
  background: #ff5a00;
  color: #ffffff;
}

.rodape-conteudo {
  width: min(calc(100% - 40px), 1300px);
  margin: 0 auto;
  display: block;
}

.rodape-redes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
}

/* Remove os círculos brancos antigos */
.rodape-rede {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 0;

  background: transparent;
  color: #ffffff;

  overflow: visible;
  text-decoration: none;
  box-shadow: none;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Mantém o arquivo inteiro visível */
.rodape-rede img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 100%;
  max-height: 100%;

  margin: 0;
  padding: 0;

  object-fit: contain;
  object-position: center;

  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Ajustes individuais para equilíbrio visual */
.rodape-rede[aria-label*="Instagram"] img {
  width: 46px;
  height: 46px;
}

.rodape-rede[aria-label*="TikTok"] img {
  width: 43px;
  height: 43px;
}

.rodape-rede[aria-label*="Facebook"] img {
  width: 43px;
  height: 43px;
}

.rodape-rede[aria-label*="YouTube"] img {
  width: 50px;
  height: 50px;
}

.rodape-rede[aria-label*="Kwai"] img {
  width: 47px;
  height: 47px;
}

.rodape-rede:hover {
  background: transparent;
  transform: translateY(-4px) scale(1.06);
  opacity: 0.86;
  box-shadow: none;
}

.rodape-linha {
  width: 100%;
  height: 1px;
  margin: 34px 0 24px;
  background: rgba(255, 255, 255, 0.42);
}

.rodape-inferior {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}

.rodape-inferior p {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.rodape-inferior a {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rodape-inferior a:hover {
  color: #082347;
}

/* Neutraliza elementos antigos do rodapé */
.rodape .redes-sociais,
.rodape .rodape-links {
  display: none !important;
}

/* Celular */
@media (max-width: 700px) {
  .rodape {
    padding: 38px 0 24px;
  }

  .rodape-conteudo {
    width: min(calc(100% - 24px), 560px);
  }

  .rodape-redes {
    gap: 18px;
  }

  .rodape-rede {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .rodape-rede img {
    width: 40px;
    height: 40px;
  }

  .rodape-rede[aria-label*="Instagram"] img {
    width: 39px;
    height: 39px;
  }

  .rodape-rede[aria-label*="TikTok"] img,
  .rodape-rede[aria-label*="Facebook"] img {
    width: 36px;
    height: 36px;
  }

  .rodape-rede[aria-label*="YouTube"] img {
    width: 42px;
    height: 42px;
  }

  .rodape-rede[aria-label*="Kwai"] img {
    width: 40px;
    height: 40px;
  }

  .rodape-linha {
    margin: 28px 0 20px;
  }

  .rodape-inferior {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .rodape-inferior p,
  .rodape-inferior a {
    font-size: 0.82rem;
  }
}

/* =========================================================
   PADRONIZAÇÃO VISUAL DOS ÍCONES DO RODAPÉ
   ========================================================= */

.rodape-rede {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;
  background: transparent;
}

/* Tamanho-base */
.rodape-rede img {
  display: block;
  width: 42px;
  height: 42px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

/* Ajuste individual para todos parecerem do mesmo tamanho */
.rodape-rede[aria-label*="Instagram"] img {
  width: 43px;
  height: 43px;
}

.rodape-rede[aria-label*="TikTok"] img {
  width: 41px;
  height: 41px;
}

.rodape-rede[aria-label*="Facebook"] img {
  width: 39px;
  height: 39px;
}

.rodape-rede[aria-label*="YouTube"] img {
  width: 44px;
  height: 44px;
}

.rodape-rede[aria-label*="Kwai"] img {
  width: 42px;
  height: 42px;
}

/* Celular */
@media (max-width: 700px) {
  .rodape-rede {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .rodape-rede[aria-label*="Instagram"] img {
    width: 37px;
    height: 37px;
  }

  .rodape-rede[aria-label*="TikTok"] img {
    width: 35px;
    height: 35px;
  }

  .rodape-rede[aria-label*="Facebook"] img {
    width: 34px;
    height: 34px;
  }

  .rodape-rede[aria-label*="YouTube"] img {
    width: 38px;
    height: 38px;
  }

  .rodape-rede[aria-label*="Kwai"] img {
    width: 36px;
    height: 36px;
  }
}

.golpes-subtitulo {
  max-width: 100% !important;
  margin-bottom: 18px !important;
}

/* =========================================================
   SEÇÃO GOLPES — ARTE ÚNICA EM LARGURA TOTAL
   Imagem: golpesimagem.png
   ========================================================= */

.golpes.golpes-com-arte {
  position: relative !important;

  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  background-position: initial !important;
  background-size: initial !important;
  background-repeat: no-repeat !important;
}

/* Remove qualquer fundo ou elemento decorativo antigo */
.golpes.golpes-com-arte::before,
.golpes.golpes-com-arte::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* A tag picture ocupa toda a largura disponível */
.golpes.golpes-com-arte .golpes-picture {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
}

/* Imagem de ponta a ponta, sem bordas e sem corte */
.golpes.golpes-com-arte .golpes-imagem {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  object-fit: contain !important;
  object-position: center center !important;

  background: transparent !important;
  box-shadow: none !important;
}

/* Esconde qualquer conteúdo antigo que tenha permanecido no HTML */
.golpes.golpes-com-arte .golpes-conteudo,
.golpes.golpes-com-arte .golpes-texto,
.golpes.golpes-com-arte .golpes-tag,
.golpes.golpes-com-arte .golpes-titulo,
.golpes.golpes-com-arte .golpes-linha,
.golpes.golpes-com-arte .golpes-descricao,
.golpes.golpes-com-arte .golpes-bloco,
.golpes.golpes-com-arte .golpes-subtitulo,
.golpes.golpes-com-arte .golpes-beneficios,
.golpes.golpes-com-arte .golpes-botao {
  display: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .golpes.golpes-com-arte,
  .golpes.golpes-com-arte .golpes-picture,
  .golpes.golpes-com-arte .golpes-imagem {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Celular */
@media (max-width: 700px) {
  .golpes.golpes-com-arte,
  .golpes.golpes-com-arte .golpes-picture,
  .golpes.golpes-com-arte .golpes-imagem {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* =========================================================
   SEÇÃO EQUIPE — IMAGEM ÚNICA EM LARGURA TOTAL
   Imagem utilizada: equipe.png
   ========================================================= */

.equipe.equipe-com-arte {
  position: relative !important;

  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Remove elementos decorativos ou fundos antigos */
.equipe.equipe-com-arte::before,
.equipe.equipe-com-arte::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* A tag picture ocupa toda a largura */
.equipe.equipe-com-arte .equipe-picture {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* Imagem de ponta a ponta */
.equipe.equipe-com-arte .equipe-imagem {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  object-fit: contain !important;
  object-position: center center !important;

  background: transparent !important;
  box-shadow: none !important;
}

/* Esconde qualquer estrutura antiga da equipe */
.equipe.equipe-com-arte .container,
.equipe.equipe-com-arte .secao-cabecalho,
.equipe.equipe-com-arte .grade-equipe,
.equipe.equipe-com-arte .membro-equipe,
.equipe.equipe-com-arte .foto-equipe {
  display: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .equipe.equipe-com-arte,
  .equipe.equipe-com-arte .equipe-picture,
  .equipe.equipe-com-arte .equipe-imagem {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Celular */
@media (max-width: 700px) {
  .equipe.equipe-com-arte,
  .equipe.equipe-com-arte .equipe-picture,
  .equipe.equipe-com-arte .equipe-imagem {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* =========================================================
   EQUIPE — RECORTE DAS SOBRAS SUPERIOR E INFERIOR
   ========================================================= */

.equipe.equipe-com-arte {
  position: relative !important;
  width: 100% !important;

  /* Altura visível do banner da equipe */
  height: clamp(330px, 30vw, 500px) !important;
  min-height: 0 !important;
  max-height: 500px !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
  background: #020b18 !important;
}

.equipe.equipe-com-arte .equipe-picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;
}

.equipe.equipe-com-arte .equipe-imagem {
  display: block !important;

  width: 100% !important;
  height: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: cover !important;

  /*
    Ajusta qual parte da imagem aparece.
    47% traz um pouco mais da parte superior.
  */
  object-position: center 47% !important;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .equipe.equipe-com-arte {
    height: clamp(300px, 42vw, 430px) !important;
  }

  .equipe.equipe-com-arte .equipe-imagem {
    object-position: center 47% !important;
  }
}

/* Celular — temporariamente utiliza a mesma imagem */
@media (max-width: 700px) {
  .equipe.equipe-com-arte {
    height: 300px !important;
  }

  .equipe.equipe-com-arte .equipe-imagem {
    object-fit: cover !important;
    object-position: center 45% !important;
  }
}

/* =========================================================
   CAPA DEFINITIVA — NOVA IMAGEM fotocapa.png
   ========================================================= */

.hero {
  position: relative !important;
  width: 100% !important;
  min-height: 705px !important;
  overflow: hidden !important;

  /*
    O ?v=2 força o navegador e a Cloudflare
    a carregarem a imagem nova.
  */
  background-image: url("./fotocapa.png?v=3") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  background-color: #020b18 !important;
}

/* Remove qualquer camada ou desenho antigo sobre a nova capa */
.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Mantém a área das escritas exatamente sobre a imagem */
.hero-conteudo {
  position: relative !important;
  z-index: 2 !important;

  width: min(calc(100% - 40px), 1440px) !important;
  min-height: 705px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: 46% 54% !important;
  align-items: center !important;

  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Mantém as escritas no lado esquerdo */
.hero-texto {
  position: relative !important;
  z-index: 4 !important;

  width: 100% !important;
  max-width: 720px !important;

  margin: 0 !important;
  padding-left: clamp(52px, 5vw, 88px) !important;
  padding-right: 20px !important;

  left: 0 !important;
}

/* Primeira frase branca */
.hero-texto h1 {
  color: #ffffff !important;
}

/* Segunda frase continua laranja */
.hero-texto h1 span {
  color: #ff5a00 !important;
}

/* Mantém os outros textos brancos */
.hero-texto h2,
.hero-topicos li,
.hero-publico,
.hero-publico span,
.hero-publico strong {
  color: #ffffff !important;
}

/*
  Esconde a imagem antiga que ainda existe no HTML.
  Agora a imagem está aplicada como fundo.
*/
.hero-imagem {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/*
  A nova fotocapa.png já possui o quadro
  “+ de 4 mil”, portanto o quadro do HTML é escondido.
*/
.hero-selo {
  display: none !important;
}

/* Remove todos os desenhos antigos da área visual */
.hero-visual,
.hero-visual::before,
.hero-visual::after,
.hero-selo::before,
.hero-selo::after {
  background: none !important;
}

.hero-visual::before,
.hero-visual::after,
.hero-selo::before,
.hero-selo::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .hero {
    min-height: 650px !important;
    background-image: url("./fotocapa.png?v=3") !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .hero-conteudo {
    min-height: 650px !important;
    grid-template-columns: 50% 50% !important;
  }

  .hero-texto {
    padding-left: 42px !important;
  }
}

/* =========================================================
   CELULAR
   Enquanto não houver uma capa própria para celular
   ========================================================= */

@media (max-width: 800px) {
  .hero {
    min-height: auto !important;

    background-image:
      linear-gradient(
        180deg,
        rgba(2, 13, 29, 0.12) 0%,
        rgba(2, 13, 29, 0.58) 38%,
        rgba(2, 13, 29, 0.94) 68%,
        #020d1d 100%
      ),
      url("./fotocapa.png?v=3") !important;

    background-repeat: no-repeat !important;
    background-position: 68% top !important;
    background-size: auto 430px !important;
  }

  .hero-conteudo {
    display: block !important;
    width: 100% !important;
    min-height: auto !important;

    padding-top: 360px !important;
    padding-bottom: 45px !important;
  }

  .hero-texto {
    width: min(calc(100% - 32px), 680px) !important;
    max-width: none !important;

    margin: 0 auto !important;
    padding: 0 !important;
  }

  .hero-texto h1 {
    color: #ffffff !important;
  }

  .hero-texto h1 span {
    color: #ff5a00 !important;
  }
}
/* =========================================================
   ÍCONES PERSONALIZADOS DAS REDES SOCIAIS NO CABEÇALHO
   ========================================================= */

.cabecalho-redes {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.cabecalho-redes .rede-social {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 50%;

  /*
    Como os arquivos são vazados, o fundo branco
    aparecerá nas áreas transparentes da imagem.
  */
  background: #ffffff;

  color: inherit;
  overflow: hidden;
  text-decoration: none;

  box-shadow: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

/* Arquivos PNG laranja personalizados */
.cabecalho-redes .rede-social img {
  display: block;

  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 50%;

  object-fit: contain;
  object-position: center;

  background: transparent;
  box-shadow: none;
}

/* Esconde ícones antigos do Font Awesome, caso permaneçam */
.cabecalho-redes .rede-social i {
  display: none !important;
}

/* Efeito ao passar o mouse */
.cabecalho-redes .rede-social:hover {
  background: #ffffff;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 20px rgba(5, 22, 45, 0.18);
  opacity: 0.92;
}

/* Tablet */
@media (max-width: 1000px) {
  .cabecalho-redes {
    gap: 10px;
  }

  .cabecalho-redes .rede-social {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

/* Celular: mantém oculto conforme configuração atual do site */
@media (max-width: 800px) {
  .cabecalho-redes {
    display: none;
  }
}
/* =========================================================
   CABEÇALHO — MAIS ALTURA E MAIS RESPIRO
   ========================================================= */

.cabecalho-conteudo {
  min-height: 96px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Mantém a logo proporcional */
.logo-principal {
  height: 62px !important;
  width: auto !important;
  max-width: 260px !important;
}

/* Mantém os ícones centralizados */
.cabecalho-redes {
  align-self: center !important;
}

/* Tablet */
@media (max-width: 1000px) {
  .cabecalho-conteudo {
    min-height: 88px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .logo-principal {
    height: 56px !important;
  }
}

/* Celular */
@media (max-width: 800px) {
  .cabecalho-conteudo {
    min-height: 78px !important;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .logo-principal {
    height: 50px !important;
    max-width: 200px !important;
  }
}
/* =========================================================
   CAPA RESPONSIVA — CELULAR
   Fundo: capacelular.png
   ========================================================= */

@media (max-width: 800px) {

  /* Seção completa da capa */
  .hero {
    position: relative !important;
    width: 100% !important;

    min-height: clamp(920px, 245vw, 1080px) !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
    background-color: #020b18 !important;

    background-image: url("./capacelular.png?v=1") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  /* Remove filtros e imagens antigas da capa */
  .hero::before,
  .hero::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  /* Estrutura principal */
  .hero-conteudo {
    position: relative !important;
    z-index: 2 !important;

    display: block !important;

    width: 100% !important;
    min-height: clamp(920px, 245vw, 1080px) !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  /* Bloco com todas as escritas */
  .hero-texto {
    position: relative !important;
    z-index: 5 !important;

    left: auto !important;
    top: auto !important;

    width: calc(100% - 40px) !important;
    max-width: 560px !important;

    margin: 0 auto !important;

    /*
      Espaço superior semelhante ao modelo enviado.
    */
    padding: clamp(125px, 34vw, 165px) 0 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* Título principal */
  .hero-texto h1 {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    color: #ffffff !important;

    font-family: "League Spartan", sans-serif !important;
    font-size: clamp(2.15rem, 10.2vw, 3.05rem) !important;
    font-weight: 800 !important;
    line-height: 0.94 !important;
    letter-spacing: -0.02em !important;

    text-align: left !important;
    text-transform: uppercase !important;
    white-space: normal !important;
  }

  /* 40% abaixo da FIPE */
  .hero-texto h1 span {
    display: block !important;

    margin-top: 8px !important;

    color: #ff5a00 !important;
    font-size: inherit !important;
    line-height: inherit !important;

    white-space: normal !important;
  }

  /* Potencial real de margem */
  .hero-texto h2 {
    margin: clamp(40px, 11vw, 56px) 0 0 !important;

    color: #ffffff !important;

    font-family: "League Spartan", sans-serif !important;
    font-size: clamp(1.45rem, 7vw, 2rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    text-align: left !important;
    text-transform: uppercase !important;
  }

  /* Lista de benefícios */
  .hero-topicos {
    display: grid !important;
    gap: 8px !important;

    margin: clamp(38px, 10vw, 52px) 0 0 !important;
    padding: 0 !important;
  }

  .hero-topicos li {
    position: relative !important;

    padding-left: 34px !important;

    color: #ffffff !important;

    font-size: clamp(0.98rem, 4.4vw, 1.28rem) !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
  }

  .hero-topicos li::before {
    content: "✓" !important;

    position: absolute !important;
    top: -3px !important;
    left: 0 !important;

    color: #ff5a00 !important;

    font-size: 1.8rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
  }

  /* Bloco para lojistas, investidores e pessoa física */
  .hero-publico {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;

    width: 100% !important;

    margin: clamp(36px, 10vw, 50px) 0 0 !important;
    padding: 6px 0 6px 17px !important;

    border-left: 3px solid #ff5a00 !important;

    color: #ffffff !important;
    text-transform: uppercase !important;
  }

  .hero-publico span,
  .hero-publico strong {
    display: block !important;

    color: #ffffff !important;

    font-size: clamp(0.78rem, 3.65vw, 1rem) !important;
    line-height: 1.35 !important;
  }

  .hero-publico span {
    font-weight: 600 !important;
  }

  .hero-publico strong {
    font-weight: 800 !important;
  }

  /* Botão do WhatsApp */
  .hero-texto .botao-whatsapp {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 62px !important;

    margin: clamp(40px, 10vw, 52px) 0 0 !important;
    padding: 14px 18px !important;

    border-radius: 14px !important;

    background: #13c943 !important;
    color: #ffffff !important;

    font-size: clamp(0.93rem, 4.2vw, 1.15rem) !important;
    font-weight: 800 !important;

    white-space: nowrap !important;
    text-align: center !important;
  }

  .hero-texto .botao-whatsapp i {
    color: #ffffff !important;
    font-size: 1.45rem !important;
  }

  .hero-texto .botao-whatsapp span {
    color: #ffffff !important;
  }

  /*
    A imagem antiga do desktop permanece escondida.
    O fundo agora vem de capacelular.png.
  */
  .hero-imagem {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  /*
    Reativa a área visual para mostrar as informações
    de membros no final da capa.
  */
  .hero-visual {
    position: static !important;

    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
    background: none !important;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none !important;
    content: none !important;
  }

  /* Bloco “+ de 4 mil” sem o quadrado */
  .hero-selo {
    position: absolute !important;
    z-index: 6 !important;

    left: 50% !important;
    right: auto !important;
    bottom: clamp(54px, 14vw, 76px) !important;

    display: grid !important;
    grid-template-columns: auto auto !important;
    align-items: baseline !important;
    justify-content: center !important;
    column-gap: 7px !important;

    width: calc(100% - 40px) !important;
    max-width: 500px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    text-align: center !important;

    transform: translateX(-50%) !important;
  }

  .hero-selo::before,
  .hero-selo::after {
    display: none !important;
    content: none !important;
  }

  .hero-selo strong {
    display: block !important;

    color: #ff5a00 !important;

    font-family: "League Spartan", sans-serif !important;
    font-size: clamp(1.65rem, 7vw, 2.15rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    text-transform: uppercase !important;
  }

  .hero-selo span {
    display: block !important;

    margin: 0 !important;

    color: #ffffff !important;

    font-size: clamp(0.85rem, 3.7vw, 1.05rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;

    text-transform: uppercase !important;
  }

  .hero-selo small {
    grid-column: 1 / -1 !important;

    display: block !important;

    margin-top: 7px !important;

    color: #ffffff !important;

    font-size: clamp(0.84rem, 3.7vw, 1.05rem) !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;

    text-align: center !important;
  }
}
/* =========================================================
   BLOG — CARROSSEL NO CELULAR
   ========================================================= */

@media (max-width: 700px) {

  .blog-destaque {
    padding: 62px 0 54px !important;
    overflow: hidden !important;
  }

  .blog-destaque .secao-cabecalho {
    width: min(calc(100% - 34px), 520px) !important;
    margin: 0 auto 30px !important;
  }

  .blog-destaque .secao-cabecalho h2 {
    font-size: clamp(2.25rem, 10vw, 3rem) !important;
    line-height: 0.94 !important;
  }

  .blog-destaque .secao-cabecalho p {
    max-width: 420px !important;
    margin: 18px auto 0 !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  /*
    A grade vira um carrossel horizontal.
  */
  .grade-blog {
    width: 100% !important;
    display: flex !important;
    gap: 16px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    padding: 4px 22px 20px !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .grade-blog::-webkit-scrollbar {
    display: none !important;
  }

  /*
    Card menor, deixando uma pequena parte do próximo visível.
  */
  .artigo-card {
    flex: 0 0 84% !important;
    min-width: 0 !important;
    max-width: 390px !important;

    border-radius: 18px !important;
    scroll-snap-align: center !important;

    box-shadow: 0 10px 28px rgba(5, 22, 45, 0.1) !important;
  }

  .artigo-imagem {
    aspect-ratio: 16 / 8.2 !important;
    min-height: 190px !important;

    font-size: 0.9rem !important;
    text-align: center !important;
  }

  .artigo-card h3 {
    padding: 22px 22px 8px !important;

    font-size: 1.35rem !important;
    line-height: 1.08 !important;
  }

  .artigo-card p {
    padding: 0 22px 24px !important;

    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  .blog-destaque .cta-centralizado {
    margin-top: 24px !important;
  }

  .blog-destaque .botao-secundario {
    min-height: 48px !important;
    padding: 0 24px !important;
  }
}
/* =========================================================
   GOLPES RESPONSIVO CELULAR
   No mobile, mostra a arte pronta golpecelular.png
   ========================================================= */

.golpes-mobile-imagem {
  display: none;
}

.golpes-mobile-imagem img {
  display: block;
  width: 100%;
  height: auto;
}

/* celular */
@media (max-width: 700px) {
  .golpes {
    padding: 0 !important;
    background: none !important;
    min-height: auto !important;
    aspect-ratio: auto !important;
  }

  .golpes .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* esconde a montagem antiga no celular */
  .golpes-conteudo {
    display: none !important;
  }

  /* mostra a arte pronta no celular */
  .golpes-mobile-imagem {
    display: block !important;
    width: 100%;
  }
}
/* =========================================================
   SEÇÃO GOLPES — IMAGENS RESPONSIVAS DEFINITIVAS
   Desktop: golpesimagem.png
   Celular: golpecelular.png
   ========================================================= */

.golpes-imagem-secao {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;

  background: #020b18 !important;
  border: 0 !important;
}

.golpes-picture {
  display: block !important;
  width: 100% !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;
}

.golpes-imagem-responsiva {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;
  object-position: center !important;

  border: 0 !important;
  background: #020b18 !important;
}

/* Remove qualquer estrutura antiga que tenha permanecido */
.golpes-mobile-imagem {
  display: none !important;
}

/* Celular */
@media (max-width: 700px) {
  .golpes-imagem-secao,
  .golpes-picture,
  .golpes-imagem-responsiva {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .golpes-imagem-responsiva {
    object-fit: contain !important;
    object-position: center top !important;
  }
}
/* =========================================================
   SEÇÃO EQUIPE — IMAGENS RESPONSIVAS
   Desktop: equipe.png
   Celular: equipecelular.png
   ========================================================= */

.equipe-imagem-secao {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
  background: #020b18 !important;
  border: 0 !important;
}

.equipe-picture {
  display: block !important;
  width: 100% !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;
}

.equipe-imagem-responsiva {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;
  object-position: center top !important;

  border: 0 !important;
  background: #020b18 !important;
}

/* Se alguma estrutura antiga sobrar, esconde */
.equipe .container,
.grade-equipe,
.membro-equipe,
.equipe .secao-cabecalho {
  display: none !important;
}

/* Celular */
@media (max-width: 700px) {
  .equipe-imagem-secao,
  .equipe-picture,
  .equipe-imagem-responsiva {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .equipe-imagem-responsiva {
    object-fit: contain !important;
    object-position: center top !important;
  }
}
.equipe {
  border-bottom: none !important;
  box-shadow: none !important;
}

.golpes {
  border-top: none !important;
  box-shadow: none !important;
}

.equipe::before,
.equipe::after,
.golpes::before,
.golpes::after {
  display: none !important;
  content: none !important;
}
/* Remove a emenda entre equipe e golpes */

.equipe-imagem-secao {
  position: relative !important;
  z-index: 2 !important;
  margin-bottom: -5px !important;
}

.golpes-imagem-secao {
  position: relative !important;
  z-index: 1 !important;
  margin-top: 0 !important;
}

.equipe-imagem-responsiva,
.golpes-imagem-responsiva {
  display: block !important;
  width: 100% !important;
  border: 0 !important;
  outline: 0 !important;
  vertical-align: bottom !important;
}

/* =========================================================
   CABEÇALHO NOVA IDENTIDADE — CORREÇÃO FINAL
   Este bloco deve ficar no final absoluto do style.css
   ========================================================= */

.cabecalho {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;

  width: 100% !important;
  background: #000000 !important;

  border-top: 0 !important;
  border-bottom: 1px solid rgba(255, 90, 0, 0.35) !important;

  box-shadow: none !important;
  backdrop-filter: none !important;
}

.cabecalho .container {
  width: min(100% - 40px, 1320px) !important;
}

.cabecalho-conteudo {
  min-height: 94px !important;

  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;

  gap: 24px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Logo alinhada à esquerda */
.marca {
  justify-self: start !important;
  display: flex !important;
  align-items: center !important;

  margin: 0 !important;
  padding: 0 !important;
}

.logo-cabecalho {
  display: block !important;

  width: 150px !important;
  max-width: 150px !important;
  height: 76px !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;
  object-position: left center !important;
}

/* Redes sociais permanecem no centro */
.cabecalho-redes {
  justify-self: center !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 14px !important;
  margin: 0 !important;
}

/* Mantém os ícones exatamente como estão */
.rede-social {
  flex: 0 0 auto !important;
}

/* Botão Blog laranja */
.botao-blog {
  justify-self: end !important;

  min-height: 46px !important;
  padding: 0 26px !important;

  border: 2px solid #ff5a00 !important;
  border-radius: 10px !important;

  background: #ff5a00 !important;
  color: #ffffff !important;

  font-weight: 800 !important;
  text-decoration: none !important;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease !important;
}

/* Ao passar o mouse: botão branco */
.botao-blog:hover {
  background: #ffffff !important;
  color: #ff5a00 !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* Tablet */
@media (max-width: 900px) {
  .cabecalho .container {
    width: min(100% - 28px, 1320px) !important;
  }

  .cabecalho-conteudo {
    min-height: 84px !important;
  }

  .logo-cabecalho {
    width: 125px !important;
    max-width: 125px !important;
    height: 66px !important;
  }

  .cabecalho-redes {
    gap: 9px !important;
  }

  .rede-social {
    width: 38px !important;
    height: 38px !important;
  }

  .botao-blog {
    min-height: 42px !important;
    padding: 0 18px !important;
  }
}

/* Celular */
@media (max-width: 700px) {
  .cabecalho-conteudo {
    min-height: 74px !important;
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
  }

  .logo-cabecalho {
    width: 100px !important;
    max-width: 100px !important;
    height: 58px !important;
  }

  .cabecalho-redes {
    display: none !important;
  }

  .botao-blog {
    min-height: 40px !important;
    padding: 0 16px !important;
    font-size: 0.85rem !important;
  }
}

/* =========================================================
   CABEÇALHO PRETO — NOVA IDENTIDADE ROTA 48
   ========================================================= */

.cabecalho {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;

  width: 100% !important;
  margin: 0 !important;

  background: #000000 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 90, 0, 0.35) !important;

  box-shadow: none !important;
  backdrop-filter: none !important;
}

.cabecalho .container {
  width: calc(100% - 48px) !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
}

.cabecalho-conteudo {
  min-height: 88px !important;

  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;

  gap: 24px !important;

  padding: 6px 0 !important;
}

/* Logo no canto esquerdo */
.marca {
  justify-self: start !important;

  display: flex !important;
  align-items: center !important;

  margin: 0 !important;
  padding: 0 !important;

  text-decoration: none !important;
}

.logo-cabecalho {
  display: block !important;

  width: 128px !important;
  max-width: 128px !important;
  height: 72px !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;
  object-position: left center !important;
}

/* Redes centralizadas */
.cabecalho-redes {
  justify-self: center !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 14px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* Mantém as imagens atuais das redes */
.rede-social {
  flex: 0 0 auto !important;
}

/* Botão Blog laranja */
.botao-blog {
  justify-self: end !important;

  min-height: 44px !important;
  padding: 0 25px !important;

  border: 2px solid #ff5a00 !important;
  border-radius: 10px !important;

  background: #ff5a00 !important;
  color: #ffffff !important;

  font-weight: 800 !important;
  text-decoration: none !important;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease !important;
}

.botao-blog:hover {
  background: #ffffff !important;
  color: #ff5a00 !important;
  border-color: #ffffff !important;

  transform: translateY(-2px) !important;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 701px) and (max-width: 1024px) {
  .cabecalho .container {
    width: calc(100% - 32px) !important;
  }

  .cabecalho-conteudo {
    min-height: 80px !important;
    gap: 16px !important;
  }

  .logo-cabecalho {
    width: 108px !important;
    max-width: 108px !important;
    height: 64px !important;
  }

  .cabecalho-redes {
    gap: 8px !important;
  }

  .rede-social {
    width: 36px !important;
    height: 36px !important;
  }

  .rede-social img {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain !important;
  }

  .botao-blog {
    min-height: 40px !important;
    padding: 0 17px !important;
    font-size: 0.86rem !important;
  }
}

/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 700px) {
  .cabecalho .container {
    width: calc(100% - 24px) !important;
  }

  .cabecalho-conteudo {
    min-height: 68px !important;

    grid-template-columns: 1fr auto !important;

    gap: 12px !important;

    padding: 5px 0 !important;
  }

  .marca {
    justify-self: start !important;
  }

  .logo-cabecalho {
    width: 86px !important;
    max-width: 86px !important;
    height: 56px !important;
  }

  /* No celular permanecem somente logo e Blog */
  .cabecalho-redes {
    display: none !important;
  }

  .botao-blog {
    justify-self: end !important;

    min-height: 38px !important;
    padding: 0 15px !important;

    border-radius: 8px !important;

    font-size: 0.82rem !important;
  }
}

/* =========================================================
   AJUSTE FINAL — ÍCONES E BOTÃO BLOG MENORES
   NÃO ALTERA O TAMANHO DA LOGO
   ========================================================= */

/* Computador */
.cabecalho-redes {
  gap: 9px !important;
}

.rede-social {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
}

.rede-social img {
  display: block !important;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  object-fit: contain !important;
}

.botao-blog {
  min-height: 36px !important;
  height: 36px !important;

  padding: 0 16px !important;

  border-radius: 8px !important;

  font-size: 0.84rem !important;
  line-height: 1 !important;
}

/* Tablet */
@media (min-width: 701px) and (max-width: 1024px) {
  .cabecalho-redes {
    gap: 7px !important;
  }

  .rede-social,
  .rede-social img {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    max-width: 29px !important;
  }

  .botao-blog {
    min-height: 34px !important;
    height: 34px !important;

    padding: 0 14px !important;

    font-size: 0.79rem !important;
  }
}

/* Celular */
@media (max-width: 700px) {
  .cabecalho-redes {
    display: none !important;
  }

  .botao-blog {
    min-height: 32px !important;
    height: 32px !important;

    padding: 0 12px !important;

    border-radius: 7px !important;

    font-size: 0.75rem !important;
  }
}

/* Fundo preto do carrossel de benefícios */
.beneficios-carrossel {
  background: #000000 !important;
}

/* Garante que toda a área interna também fique preta */
.beneficios-carrossel-conteudo,
.beneficios-janela,
.beneficios-trilho {
  background: #000000 !important;
}

/* =========================================================
   NOVA IDENTIDADE ROTA 48 — CORREÇÃO GERAL DEFINITIVA
   Este bloco precisa ficar no final absoluto do CSS
   ========================================================= */


/* =========================================================
   1. CABEÇALHO
   Preto, não fixo, ícones e botão menores
   ========================================================= */

.cabecalho {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;

  z-index: 100 !important;

  width: 100% !important;
  margin: 0 !important;

  background: #000000 !important;

  border: 0 !important;
  border-bottom: 1px solid rgba(255, 90, 0, 0.35) !important;

  box-shadow: none !important;
  backdrop-filter: none !important;
}

.cabecalho .container {
  width: calc(100% - 48px) !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
}

.cabecalho-conteudo {
  min-height: 82px !important;

  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;

  gap: 20px !important;

  padding: 5px 0 !important;
}


/* Logo: permanece no tamanho atual */

.marca {
  justify-self: start !important;

  display: flex !important;
  align-items: center !important;

  margin: 0 !important;
  padding: 0 !important;

  text-decoration: none !important;
}

.logo-cabecalho {
  display: block !important;

  width: 128px !important;
  max-width: 128px !important;
  height: 72px !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;
  object-position: left center !important;
}


/* Ícones menores */

.cabecalho-redes {
  justify-self: center !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 8px !important;

  margin: 0 !important;
  padding: 0 !important;
}

.rede-social {
  width: 30px !important;
  height: 30px !important;

  min-width: 30px !important;
  min-height: 30px !important;

  flex: 0 0 30px !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 50% !important;

  background: transparent !important;
}

.rede-social img {
  display: block !important;

  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;

  margin: 0 !important;

  object-fit: contain !important;
}

.rede-social:hover {
  background: transparent !important;
  transform: translateY(-2px) !important;
}


/* Botão Blog menor */

.botao-blog {
  justify-self: end !important;

  min-height: 34px !important;
  height: 34px !important;

  padding: 0 14px !important;

  border: 2px solid #ff5a00 !important;
  border-radius: 8px !important;

  background: #ff5a00 !important;
  color: #ffffff !important;

  font-size: 0.80rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;

  text-decoration: none !important;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease !important;
}

.botao-blog:hover {
  background: #ffffff !important;
  color: #ff5a00 !important;
  border-color: #ffffff !important;

  transform: translateY(-2px) !important;
}


/* =========================================================
   2. CAPA — NOVA fotocapa.png
   Computador e tablet
   ========================================================= */

.hero {
  background-color: #000000 !important;

  background-image: url("./fotocapa.png?v=10") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

/*
  A imagem fotocapa.png já possui o quadro + de 4 mil,
  portanto o quadro criado no HTML continua escondido.
*/

.hero-selo {
  display: none !important;
}

.hero-imagem {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}


/* =========================================================
   3. CARROSSEL DE BENEFÍCIOS
   Muda somente o fundo para preto
   ========================================================= */

.beneficios-carrossel {
  background: #000000 !important;
  background-image: none !important;
}

.beneficios-carrossel-conteudo,
.beneficios-janela,
.beneficios-trilho {
  background: transparent !important;
}


/* =========================================================
   4. CARROSSEL DE DEPOIMENTOS
   Muda somente o fundo para preto
   ========================================================= */

.depoimentos {
  background: #000000 !important;
  background-image: none !important;
}

.depoimentos .container,
.depoimentos-carrossel,
.depoimentos-janela,
.depoimentos-trilho {
  background: transparent !important;
}


/* =========================================================
   5. EQUIPE
   Usa a imagem equipe.png e equipecelular.png
   ========================================================= */

.equipe-imagem-secao {
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;

  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;

  background: #000000 !important;
}

.equipe-picture {
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;
}

.equipe-imagem-responsiva {
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;

  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;
}


/* =========================================================
   6. CTA FINAL
   Troca somente o quadro azul para preto
   ========================================================= */

.cta-final-conteudo {
  background: #000000 !important;
  background-image: none !important;

  border: 1px solid rgba(255, 90, 0, 0.25) !important;

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.16) !important;
}


/* =========================================================
   7. BOTÃO ACESSAR O BLOG
   Texto preto
   ========================================================= */

.blog-destaque .botao-secundario {
  color: #000000 !important;
  border-color: #ff5a00 !important;
  background: transparent !important;
}

.blog-destaque .botao-secundario:hover {
  color: #ffffff !important;
  background: #ff5a00 !important;
  border-color: #ff5a00 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 701px) and (max-width: 1024px) {

  .cabecalho .container {
    width: calc(100% - 32px) !important;
  }

  .cabecalho-conteudo {
    min-height: 74px !important;
    gap: 14px !important;
  }

  .logo-cabecalho {
    width: 108px !important;
    max-width: 108px !important;
    height: 64px !important;
  }

  .cabecalho-redes {
    gap: 6px !important;
  }

  .rede-social,
  .rede-social img {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    min-height: 27px !important;
    max-width: 27px !important;
  }

  .rede-social {
    flex-basis: 27px !important;
  }

  .botao-blog {
    min-height: 32px !important;
    height: 32px !important;

    padding: 0 12px !important;

    font-size: 0.75rem !important;
  }

  .hero {
    background-image: url("./fotocapa.png?v=10") !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .cta-final-conteudo {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 700px) {

  .cabecalho .container {
    width: calc(100% - 24px) !important;
  }

  .cabecalho-conteudo {
    min-height: 64px !important;

    grid-template-columns: 1fr auto !important;

    gap: 10px !important;

    padding: 4px 0 !important;
  }

  .logo-cabecalho {
    width: 86px !important;
    max-width: 86px !important;
    height: 54px !important;
  }

  .cabecalho-redes {
    display: none !important;
  }

  .botao-blog {
    min-height: 30px !important;
    height: 30px !important;

    padding: 0 11px !important;

    border-radius: 7px !important;

    font-size: 0.72rem !important;
  }

  /*
    No celular permanece a imagem feita especificamente
    para celular.
  */

  .hero {
    background-image: url("./capacelular.png?v=10") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .beneficios-carrossel,
  .depoimentos {
    background: #000000 !important;
    background-image: none !important;
  }

  .equipe-imagem-secao,
  .equipe-picture,
  .equipe-imagem-responsiva {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .cta-final-conteudo {
    grid-template-columns: 1fr !important;
    padding: 32px 22px !important;
  }

  .blog-destaque .botao-secundario {
    color: #000000 !important;
  }
}

/* =========================================================
   AJUSTES FINAIS — SETAS, EQUIPE, DEPOIMENTOS
   ========================================================= */

/* SETAS DO CARROSSEL DE BENEFÍCIOS */
.beneficios-seta {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
  box-shadow: none !important;
}

.beneficios-seta:hover:not(:disabled) {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-50%) scale(1.05) !important;
}

.beneficios-seta:disabled {
  opacity: 0.35 !important;
  background: #000000 !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}


/* SETAS DO CARROSSEL DE DEPOIMENTOS */
.depoimentos-seta {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
  box-shadow: none !important;
}

.depoimentos-seta:hover:not(:disabled) {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.depoimentos-seta:disabled {
  opacity: 0.35 !important;
  background: #000000 !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}


/* PARTE DE NOME E CIDADE DOS DEPOIMENTOS */
.depoimento-informacoes {
  background: #000000 !important;
}

.depoimento-informacoes strong {
  color: #ffffff !important;
}

.depoimento-informacoes span {
  color: rgba(255, 255, 255, 0.78) !important;
}


/* IMAGEM DA EQUIPE */
.equipe-imagem-secao {
  background: #000000 !important;
}

.equipe-picture {
  display: block !important;
  width: 100% !important;
}

.equipe-imagem-responsiva {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  background: #000000 !important;
  object-fit: contain !important;
  object-position: center top !important;
}

/* =========================================================
   EQUIPE + GOLPES UNIFICADOS NO DESKTOP E TABLET
   No celular continuam separados
   ========================================================= */

/* Desktop e tablet: esconde a segunda seção de golpes */
@media (min-width: 701px) {
  .golpes-imagem-secao {
    display: none !important;
  }

  .equipe-imagem-secao,
  .equipe-picture,
  .equipe-imagem-responsiva {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #000000 !important;
  }
}

/* Celular: mantém equipe e golpes separados */
@media (max-width: 700px) {
  .equipe-imagem-secao,
  .golpes-imagem-secao {
    display: block !important;
    width: 100% !important;
  }

  .equipe-imagem-responsiva,
  .golpes-imagem-responsiva {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }
}

/* =========================================================
   EQUIPE E GOLPES — RESPONSIVIDADE DEFINITIVA

   Desktop/tablet: equipegolpe.png
   Celular: equipecelular.png + golpecelular.png
   ========================================================= */

.bloco-equipe-golpes {
  display: block !important;
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  line-height: 0 !important;
  overflow: hidden !important;

  background: #000000 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* =========================================================
   COMPUTADOR E TABLET
   ========================================================= */

@media (min-width: 701px) {

  /* Mostra somente a imagem unificada */
  .bloco-equipe-golpes > .equipe-golpe-desktop {
    display: block !important;

    width: 100% !important;
    max-width: none !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center top !important;

    border: 0 !important;
    outline: 0 !important;

    vertical-align: bottom !important;
  }

  /* Esconde completamente as imagens de celular */
  .bloco-equipe-golpes > .equipe-golpe-mobile {
    display: none !important;
  }

  .bloco-equipe-golpes .equipe-mobile-imagem,
  .bloco-equipe-golpes .golpes-mobile-imagem {
    display: none !important;
  }
}

/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 700px) {

  /* Esconde completamente a imagem unificada */
  .bloco-equipe-golpes > .equipe-golpe-desktop {
    display: none !important;
  }

  /* Mostra o bloco das imagens de celular */
  .bloco-equipe-golpes > .equipe-golpe-mobile {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 0 !important;

    background: #000000 !important;
  }

  /* Equipe em cima e golpes embaixo */
  .bloco-equipe-golpes .equipe-mobile-imagem,
  .bloco-equipe-golpes .golpes-mobile-imagem {
    display: block !important;

    width: 100% !important;
    max-width: none !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center top !important;

    border: 0 !important;
    outline: 0 !important;

    vertical-align: bottom !important;
  }
}

/* =========================================================
   EQUIPE E GOLPES — EXIBIÇÃO FINAL

   Desktop e tablet: equipegolpe.png
   Celular: equipecelular.png + golpecelular.png
   ========================================================= */

.bloco-equipe-golpes {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
  line-height: 0 !important;

  background: #000000 !important;

  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}


/* =========================================================
   COMPUTADOR E TABLET
   ========================================================= */

@media screen and (min-width: 701px) {

  /* Mostra somente equipegolpe.png */
  .bloco-equipe-golpes > .equipe-golpe-desktop {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center top !important;

    border: 0 !important;
    outline: 0 !important;
  }

  /* Esconde completamente as imagens do celular */
  .bloco-equipe-golpes > .equipe-golpe-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;

    width: 0 !important;
    height: 0 !important;
    max-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
  }

  .bloco-equipe-golpes > .equipe-golpe-mobile > img {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 700px) {

  /* Esconde equipegolpe.png */
  .bloco-equipe-golpes > .equipe-golpe-desktop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;

    width: 0 !important;
    height: 0 !important;
  }

  /* Mostra o bloco próprio do celular */
  .bloco-equipe-golpes > .equipe-golpe-mobile {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100% !important;
    height: auto !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
    background: #000000 !important;
  }

  /* Equipe em cima e golpes embaixo */
  .bloco-equipe-golpes > .equipe-golpe-mobile > img {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center top !important;

    border: 0 !important;
    outline: 0 !important;
  }
}

/* =========================================================
   LOGO DO RODAPÉ
   ========================================================= */

.rodape-logo-link {
  display: block !important;
  width: fit-content !important;

  margin: 0 auto 26px !important;
  padding: 0 !important;

  text-decoration: none !important;
}

.rodape-logo {
  display: block !important;

  width: 145px !important;
  max-width: 100% !important;
  height: auto !important;

  margin: 0 auto !important;
  padding: 0 !important;

  object-fit: contain !important;

  border: 0 !important;
  outline: 0 !important;

  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18)) !important;
}

/* Deixa os ícones abaixo da logo */
.rodape-redes {
  margin-top: 0 !important;
}


/* Tablet */
@media screen and (min-width: 701px) and (max-width: 1024px) {
  .rodape-logo-link {
    margin-bottom: 23px !important;
  }

  .rodape-logo {
    width: 125px !important;
  }
}


/* Celular */
@media screen and (max-width: 700px) {
  .rodape-logo-link {
    margin-bottom: 20px !important;
  }

  .rodape-logo {
    width: 105px !important;
  }
}

/* =========================================================
   CABEÇALHO MAIOR — DESKTOP E TABLET
   Logo sobrepondo levemente a capa
   ========================================================= */

@media screen and (min-width: 701px) {

  .cabecalho {
    position: relative !important;
    top: auto !important;
    z-index: 100 !important;

    width: 100% !important;

    background: #000000 !important;
    border-bottom: 1px solid rgba(255, 90, 0, 0.45) !important;

    overflow: visible !important;
  }

  .cabecalho .container {
    width: calc(100% - 48px) !important;
    max-width: 1440px !important;

    margin: 0 auto !important;

    overflow: visible !important;
  }

  .cabecalho-conteudo {
    min-height: 108px !important;

    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;

    column-gap: 12px !important;

    padding: 8px 0 !important;

    overflow: visible !important;
  }

  /* Logo maior e descendo sobre a capa */
  .marca {
    position: relative !important;
    z-index: 110 !important;

    justify-self: start !important;

    display: flex !important;
    align-items: center !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateY(27px) !important;
  }

  .logo-cabecalho {
    display: block !important;

    width: 175px !important;
    max-width: 175px !important;
    height: 120px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: left center !important;

    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.38)) !important;
  }

  /* Redes ficam mais próximas do botão Blog */
  .cabecalho-redes {
    justify-self: end !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 7px !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .rede-social,
  .rede-social img {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    max-width: 29px !important;
  }

  .rede-social {
    flex: 0 0 29px !important;
  }

  .botao-blog {
    justify-self: end !important;

    min-height: 34px !important;
    height: 34px !important;

    margin-left: 5px !important;
    padding: 0 14px !important;

    font-size: 0.78rem !important;
  }

  /* Permite que a logo fique sobre a capa */
  .hero {
    position: relative !important;
    z-index: 1 !important;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (min-width: 701px) and (max-width: 1024px) {

  .cabecalho .container {
    width: calc(100% - 30px) !important;
  }

  .cabecalho-conteudo {
    min-height: 94px !important;
    column-gap: 9px !important;
  }

  .marca {
    transform: translateY(21px) !important;
  }

  .logo-cabecalho {
    width: 145px !important;
    max-width: 145px !important;
    height: 100px !important;
  }

  .cabecalho-redes {
    gap: 5px !important;
  }

  .rede-social,
  .rede-social img {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    max-width: 25px !important;
  }

  .rede-social {
    flex-basis: 25px !important;
  }

  .botao-blog {
    min-height: 31px !important;
    height: 31px !important;

    margin-left: 3px !important;
    padding: 0 11px !important;

    font-size: 0.70rem !important;
  }
}

/* =========================================================
   CABEÇALHO COMPACTO — DESKTOP E TABLET
   Logo maior, alinhada com o texto da capa
   ========================================================= */

@media screen and (min-width: 701px) {

  .cabecalho {
    position: relative !important;
    z-index: 100 !important;

    width: 100% !important;

    background: #000000 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 90, 0, 0.38) !important;

    overflow: visible !important;
  }

  .cabecalho .container {
    width: min(100% - 40px, 1440px) !important;
    margin: 0 auto !important;

    overflow: visible !important;
  }

  .cabecalho-conteudo {
    position: relative !important;

    min-height: 72px !important;
    height: 72px !important;

    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    align-items: center !important;

    gap: 10px !important;

    padding: 0 !important;

    overflow: visible !important;
  }

  /* Logo maior, sem aumentar a altura da barra */
  .marca {
    position: absolute !important;

    /*
      Usa o mesmo deslocamento aplicado ao texto da capa,
      deixando a logo alinhada com “VEÍCULOS COM ATÉ”.
    */
    left: clamp(28px, 2.4vw, 46px) !important;
    top: 50% !important;

    z-index: 110 !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateY(-30%) !important;
  }

  .logo-cabecalho {
    display: block !important;

    width: 190px !important;
    max-width: 190px !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: left center !important;

    filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.42)) !important;
  }

  /* Redes e Blog agrupados no lado direito */
  .cabecalho-redes {
    grid-column: 2 !important;
    justify-self: end !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 7px !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .rede-social,
  .rede-social img {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
  }

  .rede-social {
    flex: 0 0 28px !important;
  }

  .botao-blog {
    grid-column: 3 !important;
    justify-self: end !important;

    min-height: 34px !important;
    height: 34px !important;

    margin-left: 4px !important;
    padding: 0 14px !important;

    font-size: 0.78rem !important;
  }

  /* Permite que a logo avance sobre a capa */
  .hero {
    position: relative !important;
    z-index: 1 !important;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (min-width: 701px) and (max-width: 1024px) {

  .cabecalho .container {
    width: calc(100% - 30px) !important;
  }

  .cabecalho-conteudo {
    min-height: 66px !important;
    height: 66px !important;

    gap: 7px !important;
  }

  .marca {
    left: 20px !important;
    transform: translateY(-27%) !important;
  }

  .logo-cabecalho {
    width: 155px !important;
    max-width: 155px !important;
  }

  .cabecalho-redes {
    gap: 5px !important;
  }

  .rede-social,
  .rede-social img {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
  }

  .rede-social {
    flex-basis: 24px !important;
  }

  .botao-blog {
    min-height: 31px !important;
    height: 31px !important;

    padding: 0 11px !important;

    font-size: 0.70rem !important;
  }
}

/* =========================================================
   ALINHAMENTO FINAL DA LOGO NO CABEÇALHO
   Desktop e tablet
   ========================================================= */

/* Desktop */
@media screen and (min-width: 1025px) {
  .marca {
    /*
      O cabeçalho possui 72px e os ícones 28px.
      22px alinha o topo da logo com o topo dos ícones.
    */
    top: 22px !important;

    left: clamp(28px, 2.4vw, 46px) !important;

    transform: none !important;
  }

  .logo-cabecalho {
    width: 190px !important;
    max-width: 190px !important;
    height: auto !important;
  }
}

/* Tablet */
@media screen and (min-width: 701px) and (max-width: 1024px) {
  .marca {
    /*
      No tablet, o cabeçalho possui 66px e os ícones 24px.
    */
    top: 21px !important;
    left: 20px !important;

    transform: none !important;
  }

  .logo-cabecalho {
    width: 155px !important;
    max-width: 155px !important;
    height: auto !important;
  }
}

/* =========================================================
   POSIÇÃO FINAL DA LOGO — DESKTOP E TABLET
   ========================================================= */

/* Desktop */
@media screen and (min-width: 1025px) {
  header.cabecalho .cabecalho-conteudo > a.marca {
    position: absolute !important;
    top: 22px !important;
    left: 86px !important;

    /* Move visualmente a logo até alinhar com o texto */
    transform: translateX(44px) !important;

    z-index: 200 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  header.cabecalho .cabecalho-conteudo > a.marca .logo-cabecalho {
    display: block !important;
    width: 190px !important;
    max-width: 190px !important;
    height: auto !important;
    margin: 0 !important;
  }
}

/* Tablet */
@media screen and (min-width: 701px) and (max-width: 1024px) {
  header.cabecalho .cabecalho-conteudo > a.marca {
    position: absolute !important;
    top: 21px !important;
    left: 56px !important;

    transform: translateX(28px) !important;

    z-index: 200 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  header.cabecalho .cabecalho-conteudo > a.marca .logo-cabecalho {
    display: block !important;
    width: 155px !important;
    max-width: 155px !important;
    height: auto !important;
    margin: 0 !important;
  }
}

/* =========================
   CAPA MOBILE PERSONALIZADA
   ========================= */

.hero-mobile {
  display: none;
}

@media (max-width: 800px) {
  /* topo do celular: somente redes + blog centralizados */
  .cabecalho-conteudo {
    min-height: 72px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .marca {
    display: none;
  }

  .cabecalho-redes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .rede-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .botao-blog {
    min-height: 40px;
    padding: 0 16px;
    margin: 0;
    font-size: 0.92rem;
  }

  /* mantém desktop/tablet escondidos no celular */
  .hero-texto,
  .hero-visual {
    display: none;
  }

  .hero {
    min-height: auto;
    background: #020202;
  }

  .hero-conteudo {
    width: min(100% - 20px, 480px);
    min-height: auto;
    display: block;
    padding: 16px 0 22px;
  }

  .hero-mobile {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
  }

  .hero-mobile-imagem {
    display: block;
    width: 100%;
    height: auto;
  }

  /* botão no meio entre a frase final e o bloco + de 4 mil */
  .botao-whatsapp-mobile {
    position: absolute;
    left: 50%;
    top: 73%;
    transform: translateX(-50%);
    width: min(82%, 320px);
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.82rem;
    line-height: 1.15;
    text-align: center;
    z-index: 3;
    box-shadow: 0 12px 28px rgba(19, 184, 63, 0.32);
  }

  .botao-whatsapp-mobile::before {
    font-size: 1rem;
  }
}

/* =========================================================
   CABEÇALHO DO CELULAR
   Somente ícones das redes sociais centralizados
   ========================================================= */

@media screen and (max-width: 700px) {

  header.cabecalho {
    position: relative !important;
    width: 100% !important;
    background: #000000 !important;
    border-bottom: 1px solid rgba(255, 90, 0, 0.4) !important;
  }

  header.cabecalho .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 16px !important;
  }

  header.cabecalho .cabecalho-conteudo {
    width: 100% !important;
    min-height: 64px !important;
    height: 64px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 0 !important;
    padding: 0 !important;
  }

  /* Esconde a logo pequena do cabeçalho */
  header.cabecalho .cabecalho-conteudo > .marca {
    display: none !important;
  }

  /* Esconde o botão Blog no celular */
  header.cabecalho .cabecalho-conteudo > .botao-blog {
    display: none !important;
  }

  /* Mostra e centraliza as redes sociais */
  header.cabecalho .cabecalho-redes {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;

    gap: 9px !important;
  }

  header.cabecalho .rede-social {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;
  }

  header.cabecalho .rede-social img {
    display: block !important;

    width: 31px !important;
    height: 31px !important;
    max-width: 31px !important;

    object-fit: contain !important;
  }
}

/* =========================================================
   CELULAR — ESCONDER COMPLETAMENTE A CAPA ANTIGA
   Mantém somente capacelularlogonova.png
   ========================================================= */

@media screen and (max-width: 700px) {

  /* Esconde todo o conteúdo antigo da capa */
  body main section.hero .hero-conteudo > .hero-texto,
  body main section.hero .hero-conteudo > .hero-visual {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;

    width: 0 !important;
    height: 0 !important;
    max-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
  }

  /* Mantém somente a nova capa do celular */
  body main section.hero .hero-conteudo > .hero-mobile {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 auto !important;
    padding: 0 !important;
  }

  body main section.hero .hero-conteudo {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;

    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  body main section.hero {
    min-height: 0 !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #000000 !important;
  }
}

/* =========================================================
   CAPA — AJUSTE SOMENTE PARA TABLET
   Mantém o conteúdo dentro da parte preta
   ========================================================= */

@media screen and (min-width: 701px) and (max-width: 1100px) {

  body main .hero .hero-conteudo {
    width: 100% !important;
    min-height: 600px !important;
    padding: 0 !important;
  }

  body main .hero .hero-texto {
    width: 47% !important;
    max-width: 470px !important;
    min-height: 600px !important;

    padding:
      48px
      24px
      44px
      clamp(34px, 5vw, 64px) !important;

    left: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  /* Título principal */
  body main .hero .hero-texto h1 {
    max-width: 410px !important;

    font-size: clamp(2.35rem, 4.7vw, 3.15rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.02em !important;
  }

  body main .hero .hero-texto h1 span {
    display: block !important;
  }

  /* Potencial real de margem */
  body main .hero .hero-texto h2 {
    max-width: 390px !important;

    margin-top: 18px !important;

    font-size: clamp(1.12rem, 2.4vw, 1.48rem) !important;
    line-height: 1.1 !important;
  }

  /* Lista de benefícios */
  body main .hero .hero-topicos {
    max-width: 400px !important;

    margin-top: 22px !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  body main .hero .hero-topicos li {
    font-size: clamp(0.74rem, 1.5vw, 0.88rem) !important;
    line-height: 1.3 !important;
  }

  /* Texto sobre lojistas e pessoa física */
  body main .hero .hero-publico {
    max-width: 390px !important;

    margin-top: 22px !important;
    padding-left: 14px !important;

    font-size: clamp(0.64rem, 1.35vw, 0.76rem) !important;
    line-height: 1.35 !important;
  }

  body main .hero .hero-publico span,
  body main .hero .hero-publico strong {
    display: block !important;
  }

  /* Botão menor */
  body main .hero .hero-texto > .botao-whatsapp {
    width: min(100%, 320px) !important;
    min-height: 46px !important;

    margin-top: 22px !important;
    padding: 0 14px !important;

    font-size: 0.72rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
  }
}
