/* ============================================================
   TENDÊNCIAS TÁTICAS — EDIÇÃO COPA 2026
   Footure Academy — styles.css
   ============================================================ */

/* ── Design tokens ── */
:root {
  --black:   #0B0B0B;
  --dark:    #181818;
  --dark2:   #1E1E1E;
  --mid:     #2A2A2A;
  --border:  #303030;
  --light:   #F5F5F5;
  --white:   #FFFFFF;
  --green:   #69FF2E;
  --green-d: #4DC920;
  --red:     #F20505;
  --dim:     #888888;
  --dim2:    #BBBBBB;

  --font-head: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Lexend', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  --container: 1200px;
  --gap:       clamp(1.5rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 7rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

/* ── Utilities ── */
.section-dark  { background: var(--dark); }
.section-light { background: var(--white); color: var(--black); }
.text-green    { color: var(--green); }
.mt-2          { margin-top: 2rem; }
.mb-1          { margin-bottom: 1rem; }

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 2rem auto;
  border-radius: 2px;
}

/* Tactical overlay */
.tac-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.tac-overlay svg { width: 100%; height: 100%; }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge--red {
  background: var(--red);
  color: var(--white);
  border: none;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 6px 14px;
}

/* ── Labels ── */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.label--green { color: var(--green); }
.label--red   { color: var(--red);   }

/* ── Section titles ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.section-title--white { color: var(--white); }
.section-title--dark  { color: var(--black); }

.section-sub {
  font-size: 1.05rem;
  color: var(--dim);
  max-width: 640px;
  margin-inline: auto;
}

/* ── Body text ── */
.body-text { font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.body-text--dim { color: var(--dim2); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: filter 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--green {
  background: var(--green);
  color: var(--black);
  padding: 14px 28px;
  font-size: 0.95rem;
}
.btn--dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 28px;
  font-size: 0.95rem;
}
.btn--sm   { padding: 9px 18px; font-size: 0.84rem; }
.btn--lg   { padding: 16px 32px; font-size: 1rem; }
.btn--xl   { padding: 18px 36px; font-size: 1.05rem; }
.btn--hero { padding: 17px 34px; font-size: 1rem; margin-top: 0.5rem; }
.btn--std {
  width: 100%;
  max-width: 320px;
  height: 56px;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.btn--form {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
}
.btn__arrow { font-size: 1.1em; transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}
.logo__img {
  width: 120px;
  height: auto;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dim2);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.header__cta { flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    z-index: 999;
    background: rgba(11,11,11,0.97);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem;
    overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a {
    width: 100%;
    padding: 14px 8px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .header__cta { display: none; }
  .burger { display: none !important; }
  .header__inner { justify-content: center; }
  .logo { margin-right: 0; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-image: url('imgs/bg-hero.png');
  background-size: cover;
  background-position: center top;
  padding-top: 68px;
  overflow: hidden;
}

/* Dark overlay — left heavier for readability, right lighter for ball visibility */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,5,5,0.88) 0%,
    rgba(5,5,5,0.72) 45%,
    rgba(5,5,5,0.15) 100%
  );
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding-block: clamp(4rem, 8vw, 6rem);
  min-height: calc(100svh - 68px);
}

/* Hero left */
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 640px;
}

.hero__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 1rem;
  margin-bottom: 0;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 6.5vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.hero__edition {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero__rule {
  width: 52px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.hpill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
}
.hpill svg {
  color: var(--green);
}

.hero__micro {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.85rem;
}

/* CTA — full width of left column */
.btn--hero {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  margin-top: 0;
}

/* Hero right — ball */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ball-img {
  width: clamp(320px, 52vw, 680px);
  height: auto;
  filter: drop-shadow(0 32px 80px rgba(0,0,0,0.8));
  animation: ballFloat 6s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes ballFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero__title { font-size: clamp(3rem, 6vw, 5.5rem); }
}

@media (max-width: 900px) {
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(5,5,5,0.6) 0%,
      rgba(5,5,5,0.85) 100%
    );
  }
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 4rem 3rem;
    min-height: auto;
  }
  .hero__left { align-items: center; max-width: 100%; }
  .hero__right { order: -1; margin-bottom: 1.5rem; }
  .ball-img { width: clamp(200px, 60vw, 340px); }
  .hero__sub { max-width: 100%; }
  .hero__title { white-space: normal; text-align: center; font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero__pills { justify-content: center; }
  .btn--hero { max-width: 420px; }
}

/* ══════════════════════════════════════
   PAIN POINT
══════════════════════════════════════ */
.pain {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y);
  background-color: var(--white);
  /* cover garante que a imagem preencha toda a seção sem lacunas */
  background-image: url('imgs/bg-section2.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* Tablet: ancora à direita para manter o treinador visível */
@media (max-width: 1024px) {
  .pain {
    background-size: cover;
    background-position: right center;
  }
}

/* Mobile: remove imagem — fundo branco limpo */
@media (max-width: 680px) {
  .pain { background-image: none; }
}

/* Content constrained to left ~60% so coach stays visible */
.pain__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* badge does not stretch */
  max-width: 60%;
}

/*
  Title balance logic:
  Line 1 "NA COPA, TODO MUNDO ASSISTE."           ≈ 30 chars
  Line 2 "POUCOS ENTENDEM O QUE ESTÁ ACONTECENDO POR TRÁS DO JOGO." ≈ 57 chars
  Ratio 30/57 ≈ 0.53 → line 2 font-size = 53% of line 1 → same visual width
*/
.pain__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.8vw, 5.8rem);
  line-height: 1;
  color: #0D1B2A;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0.75rem 0 0;
  white-space: nowrap;
}

.pain__title__sub {
  display: block;
  font-size: clamp(1.05rem, 2.55vw, 3.1rem); /* ~53% of line 1 */
  line-height: 1.1;
  margin-top: 0.05em;
  margin-bottom: 1.25rem;
  font-style: normal;
  white-space: nowrap;
}

.pain__highlight {
  color: var(--red);
  font-style: normal;
  white-space: nowrap; /* mantém "por trás do jogo." unido — evita órfão */
}

.pain__text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

/* Comparison cards — horizontal icon + text */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
  width: 100%;
}

.cmp-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.cmp-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cmp-body { flex: 1; min-width: 0; }

.cmp-head {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.2;
}

.cmp-line {
  height: 2px;
  width: 28px;
  border-radius: 2px;
  margin-bottom: 7px;
}
.cmp-line--red   { background: var(--red); }
.cmp-line--green { background: var(--green); }

.cmp-text { font-size: 0.8rem; color: #555555; line-height: 1.5; }



/* Tablet — widen content, shrink bg */
@media (max-width: 1024px) {
  .pain__left { max-width: 72%; }
}

/* Mobile — full width, no bg image, allow wrapping */
@media (max-width: 680px) {
  .pain__left       { max-width: 100%; }
  .pain__title      { white-space: normal; font-size: clamp(2.2rem, 9vw, 3rem); }
  .pain__title__sub { white-space: normal; font-size: clamp(2rem, 8.5vw, 2.8rem); }
  .compare          { grid-template-columns: 1fr; }
  .btn--pain-cta    { width: 100%; justify-content: center; }
}

/* iPhone SE (320px) e telas muito pequenas */
@media (max-width: 400px) {
  .pain__title      { font-size: 2rem; }
  .pain__title__sub { font-size: 1.9rem; }

  /* botão: permite quebra de linha em vez de overflow */
  .btn--pain-cta {
    white-space: normal;
    text-align: center;
    line-height: 1.5;
    padding: 14px 18px;
  }
}

/* ══════════════════════════════════════
   ABOUT COURSE
══════════════════════════════════════ */
.about {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  background-color: #0b1118;
  background-image: url('imgs/bg-section3.png');
  background-size: cover;
  background-position: center center;
}

/* dark overlay so text reads cleanly — left-heavy so stadium shows right */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,12,20,0.82) 0%,
    rgba(8,12,20,0.65) 48%,
    rgba(8,12,20,0.20) 100%
  );
  z-index: 0;
}

/* Tactical field overlay — right side, decorative */
.about__field-overlay {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40%, 520px);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.about__field-overlay svg { width: 100%; height: auto; display: block; }

/* Main content — full container width, matching other sections */
.about__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* "SOBRE O CURSO" label */
.about__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

/* Short red underline rule */
.about__label-rule {
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 1.6rem;
}

/* Big Bebas title */
.about__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.8rem;
  max-width: 680px;
}

/* Body paragraphs */
.about__texts {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}
.about__texts p {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  max-width: 580px;
}
.about__texts .hl {
  color: var(--white);
  font-weight: 600;
}

/* 4 info cards in a row */
.about__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.6rem;
  max-width: 700px;
}

.about-card {
  background: rgba(10,15,25,0.60);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-card svg { flex-shrink: 0; }

.about-card__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}

.about-card__text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* CTA button — centered */
.about__cta-wrap {
  display: flex;
  justify-content: center;
}
.about__cta-wrap .btn {
  width: 100%;
  max-width: 560px;
  text-align: center;
  justify-content: center;
}

/* ── About breakpoints ── */
@media (max-width: 1100px) {
  .about__field-overlay { opacity: 0.14; }
}

@media (max-width: 768px) {
  .about__field-overlay { display: none; }
  .about__cards { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .about__title { max-width: 100%; }
  .about__texts p { max-width: 100%; }
}

@media (max-width: 480px) {
  .about__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .about__title br { display: none; }
  .about__cards { gap: 0.75rem; }
  .about__cta-wrap .btn { font-size: 0.82rem; white-space: normal; text-align: center; line-height: 1.4; }
}

/* ══════════════════════════════════════
   URGENCY
══════════════════════════════════════ */
.urgency {
  position: relative;
  overflow: hidden;
  background: var(--red);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.urgency__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.urgency__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.02em;
  max-width: 780px;
  margin: 0 auto 1rem;
}
.urgency__title em { font-style: italic; color: rgba(255,255,255,0.85); }

.urgency__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.urgency__cols {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
}

.urgency__col {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* ══════════════════════════════════════
   AUDIENCE
══════════════════════════════════════ */
.audience {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y);
  background: #fafafa;
}

/* Confetti overlay */
.aud-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aud-confetti svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Ensure content sits above confetti */
.audience > .container { position: relative; z-index: 1; }

/* Center the eyebrow label */
.audience .label--red { display: block; text-align: center; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.aud-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.aud-card:hover {
  border-color: rgba(105,255,46,0.50);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.aud-card__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* Inline SVG illustration — fills photo area */
.aud-card__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.aud-card__badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  background: rgba(10,10,14,0.90);
  border: 1.5px solid rgba(105,255,46,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.aud-card__body { padding: 1rem 0.85rem 1.15rem; }
.aud-card__body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.2;
}
.aud-card__body p {
  font-size: 0.78rem;
  color: #555555;
  line-height: 1.5;
  text-align: center;
}

/* ── Audience breakpoints ── */
@media (max-width: 1100px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   LEARNINGS
══════════════════════════════════════ */
.learnings {
  padding-block: var(--section-y);
  background: var(--black);
}

.learnings .section-title--white { max-width: 820px; margin-bottom: 2.5rem; }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(10,15,25,0.60);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.learn-item:hover { border-color: rgba(105,255,46,0.25); }

.learn-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--green);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.learn-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.35;
}
.learn-item p { font-size: 0.85rem; color: var(--dim2); line-height: 1.6; }

/* ══════════════════════════════════════
   PROGRAM
══════════════════════════════════════ */
.program {
  position: relative;
  overflow: hidden;
  background-color: #050a15;
  background-image: url('imgs/bg-stadium.png');
  background-size: cover;
  background-position: center bottom;
  padding-block: var(--section-y);
}
.program::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 10, 21, 0.45) 0%, rgba(5, 10, 21, 0.85) 100%);
  z-index: 0;
  pointer-events: none;
}
.program-bg-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.anim-tactics {
  width: 100%;
  height: 100%;
  animation: floatTactics 30s infinite linear alternate;
}
@keyframes floatTactics {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.05) translateY(-2%); }
}
.p-confetti {
  opacity: 0.8;
  transform-box: fill-box;
  transform-origin: center;
  animation: spinConfetti 10s infinite linear;
}
.p-confetti-green { fill: #69FF2E; filter: drop-shadow(0 0 4px rgba(105,255,46,0.4)); }
.p-confetti-red { fill: #F20505; filter: drop-shadow(0 0 4px rgba(242,5,5,0.4)); }
.p-confetti:nth-child(even) { animation-duration: 14s; animation-direction: reverse; filter: blur(2px); }
.p-confetti:nth-child(3n) { animation-duration: 8s; filter: blur(4px); opacity: 0.5; }
@keyframes spinConfetti {
  100% { transform: rotate(360deg); }
}

.program .container { position: relative; z-index: 1; }

.program__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.program__sub {
  font-size: 1rem;
  color: var(--dim2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.acc-item {
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: -1px;
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  border-left: 3px solid transparent;
}
.acc-head:hover { background: rgba(255,255,255,0.05); }
.acc-head[aria-expanded="true"] { 
  background: rgba(255,255,255,0.03); 
  border-left-color: var(--red);
}

.acc-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: #000;
  background: var(--green);
  border-radius: var(--radius-sm);
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
.acc-head[aria-expanded="true"] .acc-num {
  background: var(--red);
  color: var(--white);
}

.acc-title { flex: 1; font-size: 0.93rem; }

.acc-chev {
  flex-shrink: 0;
  color: var(--green);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.3s ease;
}
.acc-head[aria-expanded="true"] .acc-chev {
  transform: rotate(180deg);
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  background: var(--black);
}
.acc-body.is-open { max-height: 400px; }

.acc-body__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
}

.acc-icon { flex-shrink: 0; opacity: 0.7; }

.acc-body__inner p {
  font-size: 0.9rem;
  color: var(--dim2);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PROFESSOR
══════════════════════════════════════ */
.professor {
  padding-block: var(--section-y);
  background: #020408;
  position: relative;
  overflow: hidden;
}

/* Faint background tactical lines like in the image */
.professor::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 50%, rgba(242, 5, 5, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(105, 255, 46, 0.04) 0%, transparent 45%);
  z-index: 0;
  pointer-events: none;
}

.prof__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Frame wrap */
.prof__frame-wrap {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.prof__frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4.5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    -20px 20px 60px rgba(242,5,5,0.15),
    20px -20px 60px rgba(105,255,46,0.15),
    0 24px 60px rgba(0,0,0,0.8);
  background: #111;
}

.prof__accent-v {
  position: absolute;
  top: 20px;
  right: 0;
  width: 2px;
  height: 40%;
  background: linear-gradient(to bottom, var(--green), transparent);
}
.prof__accent-h {
  position: absolute;
  bottom: 0;
  left: 20px;
  height: 2px;
  width: 40%;
  background: linear-gradient(to right, var(--green), transparent);
}

.prof__frame-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(10, 15, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  z-index: 10;
}
.prof__frame-badge svg { flex-shrink: 0; }

/* Prof bio */
.prof__bio { padding-top: 0; }

.prof__name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.prof__role {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prof__feats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--dim2);
}
.prof__feats span { display: inline-flex; align-items: center; gap: 5px; }
.prof__sep { color: var(--border); font-size: 1rem; }

.prof__quote {
  position: relative;
  background: rgba(10, 15, 20, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: none;
  border-right: none;
  border-radius: 8px;
  padding: 1.5rem 2rem 1.5rem 4rem;
  margin: 1.5rem 0 2rem;
  box-shadow: 
    inset 2px 0 0 rgba(242,5,5,0.8),
    inset -2px 0 0 rgba(105,255,46,0.3);
}
.prof__quote-mark {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
  font-family: Georgia, serif;
  font-weight: bold;
}
.prof__quote p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .prof__grid { grid-template-columns: 1fr; gap: 3rem; }
  .prof__frame-wrap { justify-content: center; margin-bottom: 2rem; padding-left: 20px; }
  .prof__frame { max-width: 320px; }
  .prof__frame-badge { left: -10px; bottom: 10px; }
  .prof__feats { flex-direction: column; align-items: flex-start !important; gap: 1rem; }
  .prof-feat-sep { display: none; } /* hide vertical separators on mobile */
}

/* ══════════════════════════════════════
   OFFER
══════════════════════════════════════ */
.offer {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y);
  background-color: #020408;
  background-image: url('imgs/bg-stadium.png');
  background-size: cover;
  background-position: center bottom;
}

.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 10, 21, 0.45) 0%, rgba(5, 10, 21, 0.95) 100%);
  z-index: 0;
  pointer-events: none;
}

.offer-bg-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.offer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.offer__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-box-new {
  display: flex;
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  margin-top: 1.5rem;
  max-width: 600px;
}

.price-box-new__left {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-box-new__left .price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.price-box-new__left .price-full {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--green);
  line-height: 1;
  margin-bottom: 1rem;
}

.price-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}

.price-box-new__left .price-inst {
  font-size: 1rem;
  color: #ccc;
}

.price-box-new__right {
  flex: 1;
  padding: 2rem;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.price-box-new__right .price-box__you-get {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.price-checklist-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-checklist-new li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.price-checklist-new li:last-child { margin-bottom: 0; }

/* Offer form card */
/* Offer form card */
.offer__right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.offer-form-card {
  background: rgba(10,15,25,0.70);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.offer-form-card__title {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.lead-form { display: flex; flex-direction: column; gap: 1rem; }

.fgroup { display: flex; flex-direction: column; gap: 5px; }

.fgroup label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.fgroup input {
  padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.fgroup input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(105,255,46,0.12);
  background: rgba(255,255,255,0.09);
}
.fgroup input::placeholder { color: rgba(255,255,255,0.30); }

.form-micro {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.40);
  text-align: center;
  line-height: 1.5;
  padding-top: 0.25rem;
}

/* Floating Ball */
.floating-ball {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(10px 10px 30px rgba(0,0,0,0.8));
}

@media (max-width: 1024px) {
  .offer__grid { grid-template-columns: 1fr; gap: 3rem; }
  .offer__right { justify-content: flex-start; }
  .price-box-new { flex-direction: column; }
  .price-box-new__right { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .floating-ball { width: 180px; height: 180px; left: -20px; bottom: -20px; }
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq {
  padding-block: var(--section-y);
  background: var(--black);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--gap);
  align-items: start;
}

.faq__left {
  position: sticky;
  top: 100px;
}

/* FAQ accordion */
.faq-acc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(105,255,46,0.50);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.faq-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: transparent;
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
}
.faq-head[aria-expanded="true"] { background: #fafafa; }

.faq-plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
.faq-head[aria-expanded="true"] .faq-plus {
  background: #111;
  transform: rotate(45deg);
}
.faq-head[aria-expanded="true"] .faq-plus svg line { stroke: var(--white); }

.faq-head > span:not(.faq-plus) { flex: 1; }

.faq-chev {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--green);
}
.faq-head[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  background: transparent;
}
.faq-body.is-open { max-height: 300px; }

.faq-body p {
  padding: 0 1.25rem 1.25rem calc(1.25rem + 28px + 12px);
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .faq__grid { grid-template-columns: 1fr; }
  .faq__left { position: static; }
}

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-block: 2.5rem;
}

.final-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--gap);
  align-items: center;
}

.final-cta__ball {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.final-cta__ball img {
  animation: ballFloat 7s ease-in-out infinite;
}

.final-cta__content { display: flex; flex-direction: column; align-items: flex-start; }

.final-cta__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.final-cta__text {
  font-size: 1rem;
  color: var(--dim2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.final-cta__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--dim2);
}
.final-cta__pills span { display: inline-flex; align-items: center; gap: 5px; }
.pill-sep { color: var(--border); }

@media (max-width: 900px) {
  .final-cta__grid { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .final-cta__ball { order: 1; margin-top: 1rem; }
  .final-cta__ball img { max-width: 250px !important; transform: none !important; margin: 0 auto; }
  .final-cta__content { align-items: center; position: relative; z-index: 10; padding-bottom: 1rem; }
  .final-cta__text { max-width: 100%; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}
.footer__nav a {
  padding: 5px 12px;
  font-size: 0.84rem;
  color: var(--dim);
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }

.footer__legal {
  font-size: 0.75rem;
  color: var(--dim);
  max-width: 600px;
  line-height: 1.6;
}

.footer .logo { margin-right: 0; }

.footer__divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.25rem 0;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--dim);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablets e celulares
══════════════════════════════════════ */

/* ── 768 px ─ phablets e tablets pequenos ── */
@media (max-width: 768px) {

  /* Final CTA — botão largo vira full-width e quebra texto */
  .final-cta__content .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    font-size: 0.95rem !important;
    padding: 1rem 1.5rem !important;
  }

  /* Esconde separadores pipe nas pills */
  .pill-sep { display: none; }
  .final-cta__pills { gap: 0.6rem; }

  /* Floating ball da seção de compra: esconde em mobile */
  .floating-ball { display: none; }

  /* Offer grid: remove gap excessivo em telas médias */
  .offer__grid { gap: 2rem; }
}

/* ── 600 px ─ celulares grandes ── */
@media (max-width: 600px) {
  /* Hero */
  .hero__title { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .urgency__cols { gap: 1rem 2rem; }

  /* Learnings: 1 coluna */
  .learn-grid { grid-template-columns: 1fr; }

  /* Price box: stack vertical */
  .price-box-new { flex-direction: column; }
  .price-box-new__right {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .price-box-new__left,
  .price-box-new__right { padding: 1.25rem; }

  /* Offer form: padding menor */
  .offer-form-card { padding: 1.25rem 1rem; }

  /* Final CTA: título menor */
  .final-cta__title { font-size: clamp(1.9rem, 7vw, 2.6rem) !important; }

  /* Final CTA pills: coluna */
  .final-cta__pills {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Program accordion: padding interno menor */
  .acc-head { padding: 1rem 1rem; gap: 0.75rem; }
  .acc-body__inner { padding: 1rem; gap: 0.85rem; }
}

/* ── 480 px ─ celulares médios ── */
@media (max-width: 480px) {
  /* Hero pills: estica para ocupar linha inteira */
  .hero__pills { gap: 6px; }
  .hpill { flex: 1; min-width: 130px; justify-content: center; }

  /* Hero micro */
  .hero__micro { font-size: 0.72rem; }

  /* Audience grid: 1 coluna em telas muito pequenas já coberto,
     mas aqui garantimos 1 coluna para 480-400 px também */
  .audience-grid { grid-template-columns: 1fr; }

  /* About cards: 2 já coberto em 768, aqui mantém */

  /* Prof grid: reduz gap */
  .prof__grid { gap: 2rem; }
  .prof__frame { max-width: 280px; }
  .prof__quote { padding: 1.25rem 1.5rem 1.25rem 3rem; }

  /* FAQ cabeçalho do item: padding menor */
  .faq-head { padding: 1rem 1rem; gap: 10px; font-size: 0.9rem; }
  .faq-body p { padding: 0 1rem 1rem 1rem; }

  /* Footer nav: fontes menores */
  .footer__nav a { padding: 4px 8px; font-size: 0.78rem; }
}

/* ── 400 px ─ celulares pequenos (iPhone SE etc.) ── */
@media (max-width: 400px) {
  .audience-grid { grid-template-columns: 1fr; }

  .hero__title { font-size: clamp(2.2rem, 10vw, 2.8rem); }

  .btn--pain-cta {
    white-space: normal;
    text-align: center;
    line-height: 1.5;
    padding: 14px 18px;
  }

  /* Offer form card: padding mínimo */
  .offer-form-card { padding: 1rem 0.85rem; }
}

/* ══════════════════════════════════════
   BLINDAGEM WORDPRESS
   Propriedades críticas com !important para resistir a CSS de temas/plugins.
   Não afeta o ambiente local.
══════════════════════════════════════ */
a,
a:hover,
a:focus,
a:active,
a:visited { text-decoration: none !important; }
.btn--green {
  background: var(--green) !important;
  color: var(--black) !important;
}
.btn--green:hover {
  background: var(--green) !important;
}
.badge { display: inline-flex !important; }
.badge--red { background: var(--red) !important; }
.accordion { border-color: var(--border) !important; }
.acc-item   { border-color: rgba(255,255,255,0.05) !important; }
.faq-item   { border-color: #e0e0e0 !important; }
.offer__left { align-items: flex-start !important; }

/* ── DDI select ── */
#lead-ddi {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(255,255,255,0.08);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.70);
  padding: 0 24px 0 10px;
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  min-width: 110px;
  align-self: stretch;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='rgba(255%2C255%2C255%2C0.7)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  outline: none;
}
#lead-ddi option {
  background-color: #1E1E1E;
  color: #F5F5F5;
}
