/* =========================================
PROGEM | LANDING PAGE HEXA 2026
CSS REFEITO - LIMPO, RESPONSIVO E COM FOCO EM CONVERSÃO
========================================= */

/* =========================================
1. TOKENS / VARIÁVEIS
========================================= */

:root {
  --blue: #004fff;
  --blue-light: #2f7dff;
  --blue-neon: #00a3ff;

  --green: #00c853;
  --green-dark: #009624;

  --yellow: #ffd600;
  --gold: #ffb703;

  --dark: #020617;
  --dark-2: #071126;
  --dark-3: #0b1630;

  --white: #ffffff;
  --muted: #d7e1f3;
  --muted-2: #9fb0ca;

  --surface: rgba(15, 23, 42, 0.82);
  --surface-strong: rgba(15, 23, 42, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.08);

  --border: rgba(255, 255, 255, 0.13);
  --border-blue: rgba(47, 125, 255, 0.28);
  --border-yellow: rgba(255, 214, 0, 0.34);

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 34px;

  --shadow-soft: 0 20px 54px rgba(0, 0, 0, 0.22);
  --shadow-dark: 0 32px 90px rgba(0, 0, 0, 0.38);
  --shadow-blue: 0 24px 70px rgba(0, 79, 255, 0.24);
  --shadow-yellow: 0 22px 48px rgba(255, 214, 0, 0.24);

  --container: 1200px;
  --header-h: 86px;

  --offer-bg: url("../images/fundoverde.jpeg");
  --modules-bg: url("../images/fundoverde.jpeg");
  --countdown-bg: url("../images/fundo2.png");
  --tech-bg: url("../images/fundo1.png");
  --form-bg: url("../images/capa.png");
}

/* =========================================
2. RESET / BASE
========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

/* =========================================
3. HEADER
========================================= */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  background: rgba(2, 6, 23, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.header-content {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding-block: 10px;
}

.logo img {
  width: 188px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

/* O cliente final não precisa ver referência interna à campanha no cabeçalho */
.header-campaign-badge {
  display: none !important;
}

/* =========================================
4. HERO
========================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 92px;

  /*
    Ajuste principal da imagem:
    - cover mantém a tela cheia
    - 78% center empurra a arte para mostrar melhor o jogador da direita
    - reduza para 74% se quiser imagem mais central
    - aumente para 82% se quiser mostrar ainda mais a direita
  */
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.86) 0%,
      rgba(2, 6, 23, 0.72) 32%,
      rgba(2, 6, 23, 0.38) 56%,
      rgba(2, 6, 23, 0.12) 100%
    ),
    url("../images/capa.png");
  background-size: cover;
  background-position: 78% center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 79, 255, 0.18), transparent 32%),
    radial-gradient(circle at 78% 38%, rgba(255, 214, 0, 0.10), transparent 28%),
    radial-gradient(circle at 86% 46%, rgba(0, 200, 83, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(2, 6, 23, 0) 58%, #020617 100%);
}

.hero-stadium-lights {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: screen;
  background:
    linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.08) 13%, transparent 16%),
    linear-gradient(250deg, transparent 8%, rgba(255, 255, 255, 0.07) 10%, transparent 14%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
  gap: 0;
}

.hero-content {
  max-width: 680px;
}

.hero-tag,
.form-tag {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 214, 0, 0.30);
  border-radius: 999px;
  background: rgba(255, 214, 0, 0.12);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 5.4vw, 74px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  color: var(--yellow);
  text-shadow: 0 0 34px rgba(255, 214, 0, 0.34);
}

.hero p {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.30);
}

.hero-benefits {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 40px rgba(0, 79, 255, 0.12);
  color: #f7fbff;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.benefit i {
  flex-shrink: 0;
  color: var(--green);
}

.benefit-text {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.ordinal {
  font-size: 0.65em;
  font-weight: 900;
  vertical-align: super;
  line-height: 1;
}

.benefit-text .ordinal {
  vertical-align: 0.45em;
}

.hero-actions {
  margin-top: 28px;
  max-width: 680px;
}

.hero-actions .btn-primary {
  width: 100%;
}

/* Removidos do hero para não cobrir a imagem */
.hero .hero-cta-card,
.hero-score-card,
.campaign-strip {
  display: none !important;
}

/* =========================================
5. BOTÕES
========================================= */

.btn-primary,
.btn-secondary,
.btn-submit {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  border-radius: 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition:
    transform 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.28s ease;
}

.btn-primary,
.btn-submit {
  width: 100%;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--yellow), #ffb703);
  box-shadow: var(--shadow-yellow);
  color: #071126;
}

.btn-secondary {
  width: fit-content;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 24px 54px rgba(0, 200, 83, 0.27);
  color: var(--white);
  white-space: nowrap;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-submit:hover {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.04);
}

.btn-primary::before,
.btn-secondary::before,
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transition: left 0.65s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-submit:hover::before {
  left: 120%;
}

/* =========================================
6. HEADERS DE SEÇÃO
========================================= */

.section-header {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header.compact {
  margin-bottom: 46px;
}

.section-header span,
.tech-kicker,
.countdown-section-copy span {
  display: inline-block;
  color: #9ec8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.section-header h2,
.tech-banner h2,
.form-copy h2,
.countdown-section-copy h2 {
  margin-top: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.section-header h2 strong,
.tech-banner h2 strong,
.form-copy h2 strong,
.countdown-section-copy h2 strong {
  color: var(--yellow);
}

.section-header p,
.countdown-section-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

/* =========================================
7. CONDIÇÃO ESPECIAL / OFERTA
========================================= */

.offer-section,
.squad-section,
.proof-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.offer-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.56) 0%,
      rgba(3, 18, 48, 0.46) 48%,
      rgba(2, 19, 61, 0.70) 100%
    ),
    var(--offer-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.offer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 200, 83, 0.13), transparent 24%),
    radial-gradient(circle at 88% 15%, rgba(255, 214, 0, 0.12), transparent 24%);
  pointer-events: none;
}

.offer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.offer-section .container {
  position: relative;
  z-index: 2;
}

.offer-section .section-header span {
  color: var(--yellow);
}

.offer-section .section-header h2 strong {
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.22);
}

.offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.offer-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.72),
      rgba(15, 23, 42, 0.48)
    );
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.offer-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.28),
    0 0 46px rgba(255, 255, 255, 0.12);
}

.offer-card.featured {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.74),
      rgba(15, 23, 42, 0.48)
    );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(255, 255, 255, 0.10);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Space Grotesk", sans-serif;
  font-size: 58px;
  font-weight: 900;
}

.offer-card i {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 42px;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
}

.offer-card h3,
.squad-card h3,
.solution-summary-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.18;
}

.offer-card p,
.squad-card p,
.solution-summary-card p {
  position: relative;
  z-index: 1;
  color: #e8f0ff;
  font-size: 17px;
  line-height: 1.75;
}

/* =========================================
8. MÓDULOS INTEGRADOS
========================================= */

.squad-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 19, 61, 0.78) 0%,
      rgba(2, 6, 23, 0.84) 100%
    ),
    var(--modules-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.squad-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(47, 125, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 78%, rgba(0, 200, 83, 0.13), transparent 32%);
  pointer-events: none;
}

.squad-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 125, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.36;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.squad-section .section-header,
.squad-grid {
  position: relative;
  z-index: 2;
}

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

.squad-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(47, 125, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.squad-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 125, 255, 0.45);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.26), 0 0 40px rgba(0, 79, 255, 0.12);
}

.squad-icon,
.squad-card:nth-child(even) .squad-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(47, 125, 255, 0.34);
  border-radius: 20px;
  background: rgba(47, 125, 255, 0.13);
  box-shadow: 0 14px 34px rgba(0, 79, 255, 0.18);
  color: var(--blue-light);
  font-size: 27px;
  transition: transform 0.32s ease;
}

.squad-card:hover .squad-icon {
  transform: rotate(-7deg) scale(1.08);
}

/* =========================================
9. CRONÔMETRO / CTA ENTRE SEÇÕES
========================================= */

.cta-countdown-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.78) 0%,
      rgba(3, 18, 48, 0.68) 48%,
      rgba(2, 6, 23, 0.82) 100%
    ),
    var(--countdown-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.cta-countdown-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 214, 0, 0.16), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(0, 200, 83, 0.14), transparent 30%);
  pointer-events: none;
}

.countdown-section-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.cta-countdown-section .hero-cta-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

/* Reaproveitamento do card de CTA fora do hero */
.hero-cta-card {
  position: relative;
  max-width: 690px;
  padding: 22px;
  border: 1px solid rgba(255, 214, 0, 0.34);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.12), rgba(0, 200, 83, 0.08) 55%, rgba(0, 79, 255, 0.12));
  box-shadow: var(--shadow-dark), inset 0 0 28px rgba(255, 214, 0, 0.05);
  backdrop-filter: blur(14px);
}

.cta-copy {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.cta-copy strong {
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.cta-copy span {
  color: #eef5ff;
  font-weight: 700;
}

.countdown-alert {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.58);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.34);
}

.stopwatch-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(255, 214, 0, 0.36);
  color: #052e16;
  font-size: 22px;
  animation: clockPulse 1.1s ease-in-out infinite;
}

.countdown-title {
  display: block;
  margin-bottom: 9px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.countdown-timer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.time-box {
  min-width: 64px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 214, 0, 0.25);
  border-radius: 12px;
  background: linear-gradient(180deg, #0b1220, #050a16);
  text-align: center;
}

.time-box strong {
  display: block;
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 214, 0, 0.42);
}

.time-box span {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.time-box.seconds strong {
  color: var(--green);
  text-shadow: 0 0 10px rgba(0, 200, 83, 0.40);
}

.time-separator {
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
  animation: blinkSeparator 1s step-end infinite;
}

/* =========================================
10. BANNER TECNOLÓGICO
========================================= */

.tech-banner {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.88) 0%,
      rgba(2, 19, 61, 0.72) 50%,
      rgba(0, 79, 255, 0.38) 100%
    ),
    var(--tech-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.tech-grid-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 200, 83, 0.12), transparent 30%),
    radial-gradient(circle at 80% 68%, rgba(255, 214, 0, 0.10), transparent 25%);
}

.tech-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(700px) rotateX(55deg) translateY(-18%);
  transform-origin: top center;
}

.tech-banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
}

.tech-banner p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

/* =========================================
11. SOLUÇÕES RESUMIDAS
========================================= */

.solutions-summary-section,
.proof-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 79, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #020617 0%, #07122c 100%);
}

.solutions-summary-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.solution-summary-card,
.proof-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.solution-summary-card:hover,
.proof-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 125, 255, 0.44);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26), 0 0 42px rgba(0, 79, 255, 0.10);
}

.solution-summary-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(47, 125, 255, 0.30);
  border-radius: 20px;
  background: rgba(47, 125, 255, 0.12);
  color: var(--blue-light);
  font-size: 26px;
}

/* Compatibilidade caso o HTML ainda esteja usando .proof-section */
.proof-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-light);
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.proof-card span {
  color: var(--muted);
  line-height: 1.65;
}

/* =========================================
12. FORMULÁRIO FINAL
========================================= */

#formulario {
  scroll-margin-top: var(--header-h);
}

.form-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.94) 0%,
      rgba(2, 6, 23, 0.86) 42%,
      rgba(2, 6, 23, 0.64) 100%
    ),
    var(--form-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 214, 0, 0.18), transparent 30%),
    radial-gradient(circle at 82% 74%, rgba(0, 200, 83, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.84));
  pointer-events: none;
}

.flag-line {
  position: absolute;
  top: 34px;
  left: -2%;
  right: -2%;
  z-index: 1;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  pointer-events: none;
  transform: rotate(-2deg);
}

.flag-line::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.42);
}

.flag-line span {
  width: 34px;
  height: 44px;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%);
  background: var(--yellow);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.28));
  transform-origin: top center;
  animation: flagWave 1.9s ease-in-out infinite;
}

.flag-line span:nth-child(2n) {
  background: var(--green);
  animation-delay: 0.15s;
}

.flag-line span:nth-child(3n) {
  background: var(--blue-light);
  animation-delay: 0.28s;
}

.confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.confetti i {
  position: absolute;
  top: -12px;
  width: 10px;
  height: 16px;
  opacity: 0.75;
  animation: confettiFall 5.6s linear infinite;
}

.confetti i:nth-child(1) { left: 6%; background: var(--yellow); animation-delay: 0.2s; }
.confetti i:nth-child(2) { left: 13%; background: var(--green); animation-delay: 1.4s; }
.confetti i:nth-child(3) { left: 20%; background: var(--blue-light); animation-delay: 0.7s; }
.confetti i:nth-child(4) { left: 29%; background: var(--yellow); animation-delay: 2.1s; }
.confetti i:nth-child(5) { left: 38%; background: var(--green); animation-delay: 1.0s; }
.confetti i:nth-child(6) { left: 46%; background: var(--blue-light); animation-delay: 2.8s; }
.confetti i:nth-child(7) { left: 55%; background: var(--yellow); animation-delay: 0.3s; }
.confetti i:nth-child(8) { left: 64%; background: var(--green); animation-delay: 1.8s; }
.confetti i:nth-child(9) { left: 72%; background: var(--blue-light); animation-delay: 0.9s; }
.confetti i:nth-child(10) { left: 80%; background: var(--yellow); animation-delay: 2.4s; }
.confetti i:nth-child(11) { left: 88%; background: var(--green); animation-delay: 1.1s; }
.confetti i:nth-child(12) { left: 95%; background: var(--blue-light); animation-delay: 3.1s; }

.form-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: stretch;
  justify-items: stretch;
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
}

.form-copy {
  width: 100%;
  max-width: 520px;
  padding: clamp(28px, 4vh, 44px) clamp(22px, 2.5vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(12px);
  box-sizing: border-box;
}

.form-copy h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.form-copy p {
  max-width: none;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
}

.form-copy .hero-tag,
.form-copy .form-tag {
  margin-bottom: 14px;
  padding: 10px 16px;
  font-size: 12px;
  border-color: rgba(47, 125, 255, 0.34);
  background: rgba(0, 79, 255, 0.18);
  color: #9ec8ff;
}

.form-benefits-show {
  margin-top: 8px;
}

.form-benefits {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--green);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 79, 255, 0.06));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  color: #f8fbff;
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  transform: translateX(-28px) scale(0.94);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 200, 83, 0.18);
  border: 1px solid rgba(0, 200, 83, 0.4);
  color: var(--green);
  font-size: 18px;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
}

.benefit-text {
  flex: 1;
}

.form-benefits-show.revealed .form-benefits li:nth-child(1) {
  animation: benefitReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.1s;
}

.form-benefits-show.revealed .form-benefits li:nth-child(2) {
  animation: benefitReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.35s;
}

.form-benefits-show.revealed .form-benefits li:nth-child(3) {
  animation: benefitReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
}

@keyframes benefitReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.form-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow-dark), 0 0 70px rgba(0, 79, 255, 0.18);
  backdrop-filter: blur(18px);
}

.form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--blue-light));
}

.form-wrapper h3 {
  margin-bottom: 10px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
}

.form-wrapper > p {
  margin-bottom: 22px;
  color: var(--muted);
  text-align: center;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.45;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 14px;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #eff6ff;
  font-size: 14px;
  font-weight: 900;
}

.input-group input,
.input-group select {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  outline: none;
  background: rgba(2, 6, 23, 0.82);
  color: var(--white);
  font-size: 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.input-group input::placeholder {
  color: #8ea0ba;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.14);
}

.btn-submit {
  min-height: 56px;
  margin-top: 4px;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.form-section .input-group {
  margin-bottom: 0;
}

.form-section .input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.3;
}

.form-section .input-group input,
.form-section .input-group select {
  display: block;
  width: 100%;
  height: 52px;
  flex: none;
  font-size: 15px;
  border-radius: 14px;
}

.form-section .btn-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 0;
  font-size: 14px;
}

.btn-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-feedback {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.form-feedback[hidden] {
  display: none !important;
}

.form-feedback.success {
  border: 1px solid rgba(0, 200, 83, 0.45);
  background: rgba(0, 200, 83, 0.14);
  color: #bbf7d0;
}

.form-feedback.error {
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

/* =========================================
13. FOOTER
========================================= */

.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #020617;
  color: #cbd5e1;
  text-align: center;
}

.footer strong {
  color: var(--yellow);
}

.footer p + p {
  margin-top: 8px;
  color: #9fb0ca;
}

/* =========================================
14. ANIMAÇÃO DO GOL
========================================= */

.goal-animation-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.goal-animation-layer.active {
  opacity: 1;
  visibility: visible;
}

.soccer-ball {
  position: absolute;
  left: 16%;
  bottom: 22%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset -8px -8px 0 rgba(0, 0, 0, 0.12), 0 18px 40px rgba(0, 0, 0, 0.35);
  font-size: 42px;
  transform: scale(0);
}

.goal-net {
  position: absolute;
  right: 7%;
  bottom: 16%;
  width: 286px;
  height: 164px;
  border: 8px solid rgba(255, 255, 255, 0.94);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 28px 28px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.24);
  transform: scale(0.8);
}

.goal-text {
  position: absolute;
  top: 22%;
  left: 50%;
  opacity: 0;
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 9vw, 132px);
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 0 8px 0 var(--blue), 0 18px 45px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%) scale(0.5);
}

.goal-flash {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 78% 75%, rgba(255, 214, 0, 0.50), transparent 35%),
    rgba(0, 71, 255, 0.18);
}

.goal-animation-layer.active .goal-net {
  animation: showGoalNet 0.45s ease forwards;
}

.goal-animation-layer.active .soccer-ball {
  animation: kickToGoal 1.12s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}

.goal-animation-layer.active .goal-text {
  animation: goalText 0.9s ease forwards 0.68s;
}

.goal-animation-layer.active .goal-flash {
  animation: goalFlash 1.16s ease forwards 0.54s;
}

/* =========================================
15. KEYFRAMES
========================================= */

@keyframes kickToGoal {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0) rotate(0deg);
  }

  12% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(80deg);
  }

  55% {
    opacity: 1;
    transform: translate(36vw, -32vh) scale(1.2) rotate(560deg);
  }

  82% {
    opacity: 1;
    transform: translate(63vw, -4vh) scale(0.82) rotate(980deg);
  }

  100% {
    opacity: 0;
    transform: translate(66vw, 3vh) scale(0.30) rotate(1240deg);
  }
}

@keyframes showGoalNet {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes goalText {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.5) rotate(-4deg);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) rotate(0deg);
  }
}

@keyframes goalFlash {
  0% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes clockPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(-6deg);
  }
}

@keyframes blinkSeparator {
  50% {
    opacity: 0.25;
  }
}

@keyframes flagWave {
  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(4deg);
  }
}

@keyframes confettiFall {
  0% {
    opacity: 0;
    transform: translateY(-30px) rotate(0deg);
  }

  10% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
    transform: translateY(112vh) rotate(430deg);
  }
}

.reveal-on-load {
  animation: revealUp 0.8s ease both;
}

.reveal-on-load:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
16. FORMULÁRIO — DESKTOP
========================================= */

@media (min-width: 781px) {
  .form-section {
    padding: 72px 0;
  }

  .form-section .container.form-grid {
    width: min(var(--container), calc(100% - 48px));
  }

  .flag-line {
    top: 16px;
    height: 52px;
  }

  .flag-line span {
    width: 24px;
    height: 32px;
  }
}

@media (min-width: 1100px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 32px;
  }

  .form-copy,
  .form-wrapper {
    max-width: none;
    margin-inline: 0;
  }

  .form-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 36px;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-soft);
  }

  .form-copy h2 {
    font-size: clamp(26px, 2.2vw, 34px);
    margin-bottom: 14px;
  }

  .form-copy p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .form-benefits-show {
    margin-top: auto;
    padding-top: 18px;
  }

  .form-benefits {
    gap: 12px;
  }

  .form-wrapper {
    padding: 32px 36px 36px;
  }

  .form-wrapper h3 {
    margin-bottom: 10px;
    font-size: clamp(24px, 2vw, 30px);
  }

  .form-wrapper > p {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .form-fields {
    gap: 16px;
  }

  .form-actions {
    margin-top: 20px;
  }
}

/* =========================================
17. RESPONSIVO
========================================= */

@media (max-width: 1260px) {
  .solutions-summary-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  .form-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .form-copy,
  .form-wrapper {
    width: 100%;
    max-width: min(560px, 100%);
    margin-inline: auto;
  }
}

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

  .hero-content {
    max-width: 700px;
  }

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

  .btn-secondary {
    width: fit-content;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-content {
    min-height: 76px;
  }

  .logo img {
    width: 154px;
  }

  .hero {
    min-height: 820px;
    align-items: flex-start;
    padding: 116px 0 72px;
    background-position: 82% center;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(2, 6, 23, 0.94) 0%,
        rgba(2, 6, 23, 0.82) 58%,
        rgba(2, 6, 23, 0.44) 100%
      ),
      linear-gradient(180deg, rgba(2, 6, 23, 0.16) 0%, #020617 100%);
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -1px;
  }

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

  .hero-benefits,
  .offer-grid,
  .squad-grid,
  .solutions-summary-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 58px;
  }

  .offer-section,
  .squad-section,
  .solutions-summary-section,
  .proof-section,
  .tech-banner,
  .form-section,
  .cta-countdown-section {
    padding: 76px 0;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .section-header h2,
  .tech-banner h2,
  .form-copy h2,
  .countdown-section-copy h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .offer-card,
  .squad-card,
  .solution-summary-card,
  .proof-card {
    min-height: auto;
    padding: 28px;
  }

  .tech-banner-content {
    gap: 24px;
  }

  .tech-banner p {
    font-size: 18px;
  }

  .btn-secondary {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .cta-countdown-section .hero-cta-card,
  .hero-cta-card {
    padding: 18px;
  }

  .countdown-alert {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .countdown-alert > div {
    width: 100%;
  }

  .countdown-timer {
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    gap: 4px;
  }

  .time-box {
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 4px;
  }

  .time-box strong {
    font-size: 18px;
  }

  .time-box span {
    font-size: 8px;
    letter-spacing: 0.4px;
  }

  .time-separator {
    display: block;
    font-size: 16px;
    flex-shrink: 0;
  }

  .form-section {
    background-position: 72% center;
  }

  .form-copy {
    padding: 22px;
  }

  .form-copy p {
    font-size: 17px;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .input-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .goal-net {
    width: 210px;
    height: 126px;
    right: 4%;
  }

  .soccer-ball {
    left: 10%;
    width: 48px;
    height: 48px;
    font-size: 34px;
  }
}

@media (max-width: 540px) {
  .time-box strong {
    font-size: 16px;
  }

  .time-separator {
    font-size: 14px;
  }

  .hero {
    min-height: 790px;
    background-position: 84% center;
  }

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

  .hero-tag,
  .form-tag {
    padding: 10px 14px;
    font-size: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-submit {
    min-height: 58px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .section-header h2,
  .tech-banner h2,
  .form-copy h2,
  .countdown-section-copy h2 {
    font-size: 31px;
  }

  .form-wrapper h3 {
    font-size: 29px;
  }

  .flag-line {
    top: 24px;
    height: 60px;
  }

  .flag-line span {
    width: 26px;
    height: 34px;
  }
}

/* =========================================
17. ACESSIBILIDADE / REDUÇÃO DE MOVIMENTO
========================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .form-benefits li {
    opacity: 1 !important;
    transform: none !important;
  }

}
