/* FASE 2: meta SEO, Open Graph, favicon, Analytics, robots.txt, sitemap.xml */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&family=Barlow:wght@400;500;700;800&display=swap');

:root {
  --color-navy: #011731;
  --color-red: #B82C2E;
  --color-red-hover: #962024;
  --color-green: #1E6C3B;
  --color-white: #FEFEFE;
  --header-height: 13rem;
  --header-overlap: 0.1;
  --header-offset: calc(var(--header-height) * (1 - var(--header-overlap)));
}

/* Header fixo — não rola; sombra e base do brasão ficam sobre o #hero */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-sizing: border-box;
  pointer-events: none;
  background: transparent;
}

/* Faixa navy só na parte superior (90%); inferior transparente para sobrepor o hero */
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-offset);
  background: linear-gradient(
    180deg,
    var(--color-navy) 0%,
    var(--color-navy) 65%,
    rgba(1, 23, 49, 0.97) 88%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

.site-header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  pointer-events: auto;
}

.site-header-logo-link {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  line-height: 0;
  text-decoration: none;
}

.site-header-logo {
  height: var(--header-height);
  width: auto;
  max-width: min(92vw, 20rem);
  object-fit: contain;
  transform: translateY(calc(var(--header-height) * var(--header-overlap)));
  filter: drop-shadow(0 8px 20px rgba(30, 108, 59, 0.6))
          drop-shadow(0 18px 42px rgba(30, 108, 59, 0.45));
}

/* Sombra verde sobre o conteúdo do hero (z-index acima do #hero) */
.site-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: calc(var(--header-height) * var(--header-overlap) * -0.5);
  transform: translateX(-50%);
  width: min(80%, 28rem);
  height: 3rem;
  background: radial-gradient(
    ellipse at center,
    rgba(30, 108, 59, 0.65) 0%,
    rgba(30, 108, 59, 0.35) 45%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 1;
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--color-navy);
  color: var(--color-white);
  margin: 0;
}

/* Section base */
.section-wrap {
  position: relative;
  width: 100%;
  background: var(--color-navy);
  overflow: hidden;
}

.section-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(255, 255, 255, 0.025) 38px,
      rgba(255, 255, 255, 0.025) 39px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(255, 255, 255, 0.025) 38px,
      rgba(255, 255, 255, 0.025) 39px
    );
}

/* Container padrão do site (max-w-7xl) */
.page-container,
.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .page-container,
  .section-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .page-container,
  .section-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* Typography */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-green);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.eyebrow--hero {
  font-size: 0.8125rem;
  letter-spacing: 0.1875rem;
  margin-bottom: 0.875rem;
}

h1, h2.section-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-white);
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.25rem);
  margin-bottom: 0.625rem;
}

/* Sobrescreve Tailwind Preflight (font-size: inherit) */
#hero .hero-headline {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 9vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 0.625rem;
}

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

@media (min-width: 1024px) {
  #hero .hero-headline {
    font-size: 3.25rem;
  }
}

/* Textos corridos — branco puro para contraste */
.hero-sub,
.sobre-body,
.section-subtitle,
.plano-desc,
.plano-features li,
.gar-card-text,
.gar-banner-body,
.faq-a p,
.cta-text,
.form-desc,
.form-info-item,
.ps-quote,
.sobre-quote span,
.sobre-card-text {
  color: var(--color-white);
}

.hero-sub strong,
.sobre-body strong,
.gar-banner-body strong,
.cta-text strong,
.form-info-item strong,
.ps-quote strong {
  color: var(--color-white);
  font-weight: 500;
}

h2.section-title {
  font-size: clamp(1.75rem, 5vw, 2.375rem);
  line-height: 1.05;
}

/* Sobrescreve Tailwind Preflight em títulos de seção */
h2.section-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
}

.section-title em,
h1 span {
  color: var(--color-red);
  font-style: normal;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-subtitle {
  max-width: 26.25rem;
  margin: 0.5rem auto 0;
}

/* Flag strips */
.flag-strip-h {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.flag-strip-h span {
  display: inline-block;
  height: 4px;
  width: 2rem;
}

.flag-strip-h--sm span {
  height: 3px;
}

.flag-divider {
  display: flex;
  gap: 0;
  margin-bottom: 1.25rem;
}

.flag-divider span {
  height: 3px;
  flex: 1;
}

/* Italian vertical bar (hero only) */
.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  display: flex;
  flex-direction: column;
  z-index: 3;
}

.bar-green { flex: 1; background: var(--color-green); }
.bar-white { flex: 1; background: var(--color-white); }
.bar-red { flex: 1; background: var(--color-red); }

/* CTA horizontal bars */
.cta-flag-bar {
  display: flex;
  height: 5px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.cta-flag-bar span { flex: 1; }
.cta-flag-bar--flip { transform: rotate(180deg); }

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--color-red);
  color: var(--color-white);
  font-family: 'Barlow', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09375rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
  align-self: center;
  margin-inline: auto;
}

.hero-content > .btn-cta {
  align-self: flex-start;
  margin-inline: 0;
}

.btn-cta:hover {
  background: var(--color-red-hover);
}

.btn-cta--lg {
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1rem 2.25rem;
  border-radius: 4px;
}

.btn-cta--block {
  width: 100%;
  align-self: stretch;
  margin-inline: 0;
}

.btn-cta--outline {
  background: transparent;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
}

.btn-cta--outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-cta-sub {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.4);
  margin-top: 0.625rem;
  letter-spacing: 0.03125rem;
}

/* Hero — inicia no topo da página; conteúdo fica abaixo do header fixo */
#hero.section-wrap {
  overflow: visible;
}

#hero {
  min-height: auto;
  overflow: visible;
  padding-top: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-offset) + 0.5rem);
}

@media (min-width: 1024px) {
  .hero-container {
    min-height: 560px;
    padding-bottom: 4.5rem;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 0 1.5rem;
  padding-left: 0.5rem;
  gap: 0;
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 560px;
    padding: 0;
    gap: 0;
  }
}

/* Coluna de texto */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.25rem 2rem 2rem 0.5rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 3.25rem 3rem 7rem 0.5rem;
  }
}

.hero-sub {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 21.25rem;
  margin: 0 0 2rem;
}

/* Coluna da imagem — sangra verticalmente */
.hero-image-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-wrap {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }

  .hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    /* fade suave da esquerda para integrar com o fundo */
    background: linear-gradient(
      to right,
      var(--color-navy, #011731) 0%,
      transparent 30%
    );
    pointer-events: none;
  }

  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: none;
  }
}

/* Mobile: mostra a imagem menor abaixo do texto */
@media (max-width: 1023px) {
  .hero-image-wrap {
    display: block;
    width: 100%;
    max-height: 260px;
    overflow: hidden;
  }

  .hero-image-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 20%;
  }
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0 1.75rem;
  padding-left: 0.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 0 1.75rem;
    padding-left: 0.5rem;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  padding: 0.4375rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.7);
}

.badge i {
  font-size: 0.875rem;
  color: var(--color-green);
}

/* Sobre */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.sobre-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.sobre-eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-green);
}

.sobre-body {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.sobre-body strong {
  font-weight: 500;
}

.sobre-quote {
  border-left: 3px solid var(--color-red);
  padding: 0.875rem 0 0.875rem 1rem;
  margin-top: 1.25rem;
}

.sobre-quote p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
  line-height: 1.2;
}

.sobre-quote span {
  font-size: 1rem;
  line-height: 1.6;
}

.sobre-card {
  display: flex;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem 1.125rem;
  margin-bottom: 0.75rem;
}

.sobre-card:last-child {
  margin-bottom: 0;
}

.sobre-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sobre-card-icon i { font-size: 1.125rem; }

.icon-green { background: rgba(30, 108, 59, 0.2); color: var(--color-green); }
.icon-red { background: rgba(184, 44, 46, 0.2); color: var(--color-red); }
.icon-white { background: rgba(254, 254, 254, 0.08); color: rgba(254, 254, 254, 0.7); }

.sobre-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  margin: 0 0 0.25rem;
}

.sobre-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Planos */
.planos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .planos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.plano-card {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plano-card.destaque {
  border: 2px solid var(--color-red);
}

.plano-badge {
  background: var(--color-red);
  color: var(--color-white);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  text-align: center;
  padding: 0.375rem 0;
}

.plano-img-area {
  background: #111827;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem;
}

.plano-img-area img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
}

.plano-img-label {
  position: absolute;
  bottom: 0.625rem;
  left: 0.75rem;
}

.cor-pill {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  padding: 0.1875rem 0.5rem;
  border-radius: 2px;
}

.cor-azul { background: #1a3a8a; color: var(--color-white); }
.cor-branca { background: var(--color-white); color: #1a3a8a; }

.plano-body {
  padding: 1.25rem 1.125rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plano-nome {
  font-family: 'Barlow', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
}

.plano-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.plano-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.plano-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.plano-features i {
  font-size: 1rem;
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

.plano-price-area {
  margin-bottom: 1rem;
}

.plano-price-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(254, 254, 254, 0.35);
  margin: 0 0 0.25rem;
}

.plano-price {
  font-family: 'Barlow', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
}

.plano-price span {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(254, 254, 254, 0.4);
}

.planos-obs {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(254, 254, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

/* Prova social */
.ps-stat-row,
.ps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .ps-stat-row,
  .ps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ps-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.125rem 1rem;
  text-align: center;
}

.ps-stat-num {
  font-family: 'Barlow', sans-serif;
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 0.25rem;
}

.ps-stat-num em {
  color: var(--color-red);
  font-style: normal;
}

.ps-stat-label {
  font-size: 1rem;
  color: rgba(254, 254, 254, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  margin: 0;
}

.ps-card {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.25rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.ps-card.featured {
  border-color: rgba(184, 44, 46, 0.4);
  background: rgba(184, 44, 46, 0.06);
}

.ps-stars {
  display: flex;
  gap: 0.1875rem;
}

.ps-stars i { font-size: 0.875rem; color: var(--color-red); }

.ps-quote {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.ps-quote strong {
  color: var(--color-white);
  font-style: normal;
  font-weight: 500;
}

.ps-author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.875rem;
}

.ps-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.av-green { background: rgba(30, 108, 59, 0.3); color: var(--color-green); }
.av-red { background: rgba(184, 44, 46, 0.3); color: var(--color-red); }
.av-blue { background: rgba(26, 58, 138, 0.5); color: #85B7EB; }

.ps-author-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  line-height: 1.2;
}

.ps-author-loc {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.35);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}

.ps-obs {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}

/* Garantia */
.gar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .gar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
}

.gar-icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.gar-icon-wrap i { font-size: 1.375rem; }

.icon-g { background: rgba(30, 108, 59, 0.15); color: var(--color-green); border-color: rgba(30, 108, 59, 0.25); }
.icon-r { background: rgba(184, 44, 46, 0.15); color: var(--color-red); border-color: rgba(184, 44, 46, 0.25); }
.icon-w { background: rgba(254, 254, 254, 0.06); color: rgba(254, 254, 254, 0.6); }

.gar-card-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  margin: 0;
}

.gar-card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.gar-banner {
  background: rgba(30, 108, 59, 0.08);
  border: 0.5px solid rgba(30, 108, 59, 0.25);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gar-banner {
    flex-direction: row;
    align-items: center;
    padding: 1.75rem 2rem;
    gap: 1.5rem;
  }
}

.gar-banner-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(30, 108, 59, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-green);
}

.gar-banner-icon i { font-size: 1.5rem; }

.gar-banner-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
}

.gar-banner-body {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.gar-banner-body strong {
  font-weight: 500;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.25rem;
}

.faq-item {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  text-align: left;
}

.faq-q-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.125rem;
  color: var(--color-red);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 1.125rem;
}

.faq-a.open {
  display: block;
}

.faq-a p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.faq-a strong {
  font-weight: 500;
}

.faq-cta-row {
  text-align: center;
}

.faq-cta-row .btn-cta {
  align-self: center;
  margin-inline: auto;
}

.faq-cta-label {
  font-size: 1rem;
  color: rgba(254, 254, 254, 0.35);
  margin-bottom: 0.875rem;
}

/* CTA final */
#cta .section-inner {
  text-align: center;
}

.cta-body {
  position: relative;
  z-index: 2;
  padding: 4.5rem 1.25rem 3.5rem;
}

@media (min-width: 640px) {
  .cta-body {
    padding: 4.5rem 2.75rem 3.5rem;
  }
}

.cta-headline {
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 28.75rem;
  margin: 0 auto 2.25rem;
}

.cta-text strong {
  font-weight: 500;
  font-style: italic;
}

.cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.cta-btn-wrap .btn-cta {
  align-self: center;
  margin-inline: auto;
}

.cta-scarcity {
  font-size: 1rem;
  color: rgba(254, 254, 254, 0.3);
  letter-spacing: 0.03125rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  justify-content: center;
}

.cta-scarcity i {
  font-size: 0.9rem;
  color: rgba(184, 44, 46, 0.6);
}

.cta-divider {
  border: none;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  margin: 0 0 2rem;
}

.cta-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-footer {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.cta-footer-item {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 1rem;
  color: rgba(254, 254, 254, 0.3);
}

.cta-footer-item i {
  font-size: 1rem;
  color: var(--color-green);
}

.bg-crest {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  z-index: 1;
  display: none;
}

.bg-crest-left {
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .bg-crest,
  .bg-crest-left {
    display: block;
  }
}

/* Formulário */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 3rem;
  }
}

.form-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

.form-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-info-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
}

.form-info-item i {
  font-size: 1rem;
  color: var(--color-green);
  flex-shrink: 0;
}

.form-info-item strong {
  font-weight: 500;
}

.form-info-item a {
  color: var(--color-white);
  text-decoration: none;
}

.form-info-item a:hover {
  color: var(--color-white);
}

.form-right {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-bottom: 1rem;
}

.field-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: rgba(254, 254, 254, 0.4);
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  color: var(--color-white);
  font-family: 'Barlow', sans-serif;
  outline: none;
  box-sizing: border-box;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(254, 254, 254, 0.2);
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: rgba(184, 44, 46, 0.5);
  box-shadow: 0 0 0 2px rgba(184, 44, 46, 0.12);
}

.field-input.invalid {
  border-color: rgba(184, 44, 46, 0.8);
}

.field-select {
  appearance: none;
}

.field-select option {
  background: #1a1f2e;
  color: var(--color-white);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field-textarea {
  resize: none;
  height: 4.5rem;
}

.submit-btn {
  width: 100%;
  background: var(--color-red);
  border: none;
  border-radius: 5px;
  padding: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
  cursor: pointer;
  margin-bottom: 0.75rem;
  transition: background 0.15s;
}

.submit-btn:hover {
  background: var(--color-red-hover);
}

.form-footer-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}

.error-message {
  display: none;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #fecaca;
  background: rgba(184, 44, 46, 0.2);
  border: 1px solid rgba(184, 44, 46, 0.45);
  border-radius: 0.375rem;
  text-align: center;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 1.5rem;
}

.success-msg i {
  font-size: 2.25rem;
  color: var(--color-green);
  margin-bottom: 0.75rem;
  display: block;
}

.success-msg p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
}

.success-msg span {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.45);
}

/* Rodapé */
#rodape {
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
}

.rodape-inner {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.125rem 1.25rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 640px) {
  .rodape-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 2rem;
  }
}

@media (min-width: 1024px) {
  .rodape-inner {
    padding: 1.125rem 2.5rem;
  }
}

.rodape-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rodape-flag {
  display: flex;
  flex-direction: column;
  width: 3px;
  height: 1.75rem;
  flex-shrink: 0;
}

.rodape-flag span { flex: 1; display: block; }

.rodape-clube {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(254, 254, 254, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  margin: 0 0 0.125rem;
}

.rodape-cnpj {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.25);
  margin: 0;
  letter-spacing: 0.01875rem;
}

.rodape-right {
  font-size: 0.8rem;
  color: rgba(212, 212, 212, 0.616);
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  flex-wrap: wrap;
}

.rodape-right i {
  font-size: 0.8rem;
  color: #12eb7c;
}

.rodape-right a {
  color: #d0fbe5;
  text-decoration: none;
}

.rodape-right a:hover {
  color: #12eb7c;
}

/* Section padding utility */
.section-pad {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .section-pad {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }
}
