/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8BC53F, #6F40FE);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 197, 63, 0.3);
}
/* Mantém o grupo flexível */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 8px; /* espaçamento entre os botões */
}

/* Estilo padrão dos botões */
.nav-cta-group .btn {
  padding: 8px 14px;
  font-size: 14px;
  white-space: nowrap; /* evita quebra de linha */
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .nav-cta-group {
    justify-content: flex-end; /* encosta no lado direito */
  }

  .nav-cta-group .btn {
    font-size: 12px;     /* deixa o texto menor */
    padding: 6px 10px;   /* botões mais compactos */
  }
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 197, 63, 0.4);
    background: linear-gradient(135deg, #CCFF8C, #8BC53F);
}

.btn-secondary {
    background: transparent;
    color: #6F40FE;
    border: 2px solid #6F40FE;
}

.btn-secondary:hover {
    background: #6F40FE;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.3rem;
}

/* ============== HEADER ============== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(54, 4, 84, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background 0.3s ease;
}

.nav { padding: 10px 0; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  min-width: 0;
}

/* Logo responsiva */
.nav-logo { flex: 0 0 auto; }
.nav-logo .logo {
  height: clamp(22px, 4.2vw, 36px);
  width: auto;
  display: block;
}

/* Menu desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  justify-content: center;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-link:hover { color: #8BC53F; }

/* CTAs */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.nav-cta-group .btn {
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

/* Botão hambúrguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 6px;
  z-index: 1100; /* acima do menu */
}
.bar {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: .3s;
}
/* Mobile adjustments — show only "Sign In" (EN) or "Entrar" (PT) */
@media (max-width: 768px) {
  .nav-cta-group a.btn[href*="sign_up"] {
    display: none !important;
  }
}
/* === Switcher: botão e menu === */
.nav-lang { position: relative; flex: 0 0 auto; z-index: 2001; }

#nav-lang-toggle{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:36px;height:28px;padding:0 8px;border-radius:8px;border:0;
  cursor:pointer;color:#fff;background:rgba(255,255,255,.12);backdrop-filter:blur(6px);
  font:700 12.5px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.2px; transition:background .2s ease, opacity .2s ease;
}
#nav-lang-toggle:hover{ background:rgba(255,255,255,.18); }

/* Rótulo do botão via atributo (JS) */
#nav-lang-toggle::after { content: attr(data-code); }
/* Fallback SEM JS: usa html[data-lang] */
html[data-lang="pt"] #nav-lang-toggle:not([data-code])::after { content:"PT"; }
html[data-lang="en"] #nav-lang-toggle:not([data-code])::after { content:"EN"; }

#nav-lang-menu{
  display:none !important;
  position:absolute; top:calc(100% + 8px); right:0; min-width:140px; padding:6px;
  background:rgba(54,4,84,.98); color:#fff; border:1px solid rgba(255,255,255,.08);
  border-radius:10px; box-shadow:0 10px 24px rgba(0,0,0,.22); backdrop-filter:blur(10px);
  z-index:2000;
}
.nav-lang.open #nav-lang-menu{ display:block !important; animation:langPop .14s ease-out; }
@keyframes langPop{ from{transform:translateY(-6px);opacity:0} to{transform:translateY(0);opacity:1} }

/* Fallback de acessibilidade: abre ao focar (caso JS quebre) */
.nav-lang:focus-within #nav-lang-menu{ display:block !important; }

.lang-item{
  width:100%;display:flex;align-items:center;gap:8px;
  padding:8px 10px;border:0;background:transparent;color:#fff;border-radius:8px;
  cursor:pointer;text-align:left;font-weight:700;font-size:13.5px;letter-spacing:.2px;
}
.lang-item small{ opacity:.7; font-weight:600; margin-left:auto; }
.lang-item:hover{ background:rgba(255,255,255,.08); }

/* Responsivo */
@media (max-width:768px){
  #nav-lang-toggle{ height:26px; padding:0 6px; font-size:12px; }
  #nav-lang-menu{ right:-4px; min-width:120px; }
}
/* Esconde no dropdown a opção do idioma atual */
html[data-lang="pt"] #nav-lang-menu .lang-item[data-lang="pt"] { 
  display: none !important; 
}
html[data-lang="en"] #nav-lang-menu .lang-item[data-lang="en"] { 
  display: none !important; 
}

/* ====== RESPONSIVO ====== */
@media (max-width: 1024px) {
  .nav { padding: 8px 0; }
  .nav-container { gap: 10px; padding: 0 12px; }
  .nav-menu { gap: 18px; }
  .nav-cta-group .btn { padding: 6px 10px; font-size: 12px; }
}

@media (max-width: 768px) {
  .nav-logo .logo { height: clamp(20px, 5.5vw, 28px); }

  /* esconde menu no mobile */
  .nav-menu {
    display: none;
  }

  /* mostra quando ativo */
  .nav-menu.active {
    display: flex;
    position: fixed;
    top: 64px; /* altura do header */
    left: 0; right: 0;
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px 20px;
    background: rgba(54, 4, 84, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.08);
    z-index: 1050;
    animation: navDrop .18s ease-out;
  }

  .nav-menu.active .nav-link {
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-menu.active .nav-link:last-child { border-bottom: 0; }

  .nav-toggle { display: flex; }

  /* animação do ícone hambúrguer */
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 360px) {
  /* encurta texto do CTA “Assine Agora” */
  .nav-cta-group a[href*="sign_up"] {
    font-size: 11.5px;
  }
  .nav-cta-group a[href*="sign_up"]::after {
    content: "Assine";
  }
  .nav-cta-group a[href*="sign_up"] {
    color: transparent;
    position: relative;
  }
  .nav-cta-group a[href*="sign_up"]::after {
    color: #fff;
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
}

/* animação de entrada do menu mobile */
@keyframes navDrop {
  from { transform: translateY(-8px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ================= HERO SECTION ================= */

.hero {
  background: linear-gradient(135deg, #360454 0%, #6F40FE 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

/* ---------- Container ---------- */
.hero-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
  display: block; /* mobile-first */
  position: relative;
  z-index: 2;
}

/* Desktop em 2 colunas */
@media (min-width: 969px) {
  .hero-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* ---------- Title ---------- */
.hero-title {
  font-size: clamp(24px, 8vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 12px;
}

.highlight {
  background: linear-gradient(135deg, #8BC53F, #CCFF8C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Subtitle ---------- */
.hero-subtitle {
  font-size: clamp(13px, 3.6vw, 17px);
  line-height: 1.4;
  max-width: 42ch;     /* largura ideal de leitura */
  margin: 0 auto 18px; /* centralizado */
  text-align: center;
  overflow-wrap: anywhere;
}

/* ---------- CTAs ---------- */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-ctas .btn-large {
  padding: 10px 16px;
  font-size: clamp(12px, 3.4vw, 16px);
  white-space: nowrap;
}

/* ---------- Stats ---------- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-size: clamp(22px, 8vw, 48px);
  font-weight: 800;
  color: #CCFF8C;
  line-height: 1;
}

.stat-label {
  font-size: clamp(11px, 2.8vw, 14px);
  opacity: 0.8;
}

/* ---------- Background image ---------- */
.hero-background-image {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

.floating-platform-screenshot {
  width: 1800px;
  height: auto;
  border-radius: 16px;
  transform: rotate(-5deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-50%) rotate(-5deg) translateY(0px);
  }
  50% {
    transform: translateY(-50%) rotate(-5deg) translateY(-20px);
  }
}

/* ---------- Ajustes para telas menores ---------- */
@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding: 72px 0 28px;
    text-align: center;
  }

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

  .hero-background-image { 
    top: 60%;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    opacity: 0.06;
  }

  .floating-platform-screenshot {
    width: 400px;
    transform: rotate(-3deg);
    animation: none; /* remove animação no mobile */
  }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 24px; }
  .hero-subtitle { max-width: 95%; padding: 0 8px; }
  .hero-ctas .btn-large { padding: 8px 12px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .floating-platform-screenshot { display: none; } /* pode esconder de vez */
}
/* ===== FIX: stats no desktop não sobrepõem ===== */
.hero-stats {
  display: flex;              /* mais robusto aqui que grid */
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: nowrap;
}

.stat {
  position: static !important; /* zera qualquer posição herdada */
  flex: 1 1 0;
  min-width: 0;                /* evita estouro de coluna */
  text-align: center;
}

.stat-number {
  position: static !important; /* garante que não fique absoluto */
  display: block;
  white-space: nowrap;         /* não quebra “6.500+” */
  line-height: 1;
  font-size: clamp(28px, 3.2vw, 48px); /* um pouco menor no desktop médio */
}

.stat-label {
  font-size: clamp(12px, 1vw, 14px);
  opacity: .85;
}

/* Em telas de largura intermediária, permita quebrar em 2 linhas */
@media (max-width: 1100px) and (min-width: 969px) {
  .hero-stats { flex-wrap: wrap; }
  .stat { flex: 1 1 45%; }   /* 2 por linha */
}

/* No mobile continua com 2 colunas (já definido no CSS anterior) */
@media (max-width: 968px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .stat { text-align: center; }
}
/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #333;
    animation: float 6s ease-in-out infinite;
}

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

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.dashboard-logo {
    font-weight: 800;
    color: #6F40FE;
    font-size: 1.2rem;
}

.dashboard-user {
    color: #8BC53F;
    font-size: 1.5rem;
}

.dashboard-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-item {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
}

.player-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.player-name {
    font-weight: 600;
    color: #333;
}

.player-details {
    font-size: 0.8rem;
    color: #666;
}

.stars {
    color: #FFD700;
    font-size: 0.8rem;
}

.score {
    font-weight: 800;
    color: #8BC53F;
    font-size: 1.1rem;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #360454;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.proof-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.proof-stat:hover {
    transform: translateY(-5px);
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: #6F40FE;
    display: block;
    margin-bottom: 0.5rem;
}

.proof-label {
    color: #666;
    font-weight: 500;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #333;
}

.author-name {
    font-weight: 600;
    color: #360454;
}

.author-role {
    color: #666;
    font-size: 0.9rem;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: white;
}

.problem-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem, .solution {
    padding: 2rem;
    border-radius: 16px;
}

.problem {
    background: #fff5f5;
    border-left: 4px solid #ff6b6b;
}

.solution {
    background: #f0fff4;
    border-left: 4px solid #8BC53F;
}

.problem-icon, .solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-icon {
    color: #ff6b6b;
}

.solution-icon {
    color: #8BC53F;
}

.problem-title, .solution-title {
    color: #360454;
    margin-bottom: 1rem;
}

.problem-list, .solution-list {
    list-style: none;
    margin-top: 1.5rem;
}

.problem-list li, .solution-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8BC53F;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Mobile */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* apenas uma coluna */
  }
}
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8BC53F, #6F40FE);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #6F40FE;
    margin-bottom: 1.5rem;
}

.feature-title {
    color: #360454;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8BC53F;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    position: relative;
}

.step:nth-child(even) {
    grid-template-columns: auto 1fr auto;
}

.step:nth-child(even) .step-number {
    order: 3;
}

.step:nth-child(even) .step-content {
    order: 2;
    text-align: right;
}

.step:nth-child(even) .step-icon {
    order: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #8BC53F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

.step-title {
    color: #360454;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 4rem;
    color: #6F40FE;
    opacity: 0.3;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #360454, #6F40FE);
    color: white;
}

.pricing .section-title {
    color: white;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #8BC53F, #6F40FE);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    color: #360454;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #666;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #6F40FE;
}

.period {
    font-size: 1.2rem;
    color: #666;
}

.pricing-price-brl {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: #8BC53F;
    font-size: 1.2rem;
}

.pricing-guarantee {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.guarantee-item i {
    color: #8BC53F;
    font-size: 1.5rem;
}

.guarantee-item span {
    font-size: 0.9rem;
    color: #666;
}

.pricing-cta {
    text-align: center;
}

.pricing-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #360454;
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: #6F40FE;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #360454, #6F40FE);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    color: #8BC53F;
    font-size: 1.2rem;
}

.cta-button {
    margin-bottom: 2rem;
}

.cta-urgency {
    font-size: 1.1rem;
    color: #CCFF8C;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #360454;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    color: #8BC53F;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8BC53F;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: #8BC53F;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8BC53F;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #8BC53F;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #360454;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

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

    .problem-solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .step:nth-child(even) .step-content {
        text-align: center;
        order: 2;
    }

    .step:nth-child(even) .step-number {
        order: 1;
    }

    .step:nth-child(even) .step-icon {
        order: 3;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .pricing-card {
        margin: 0 1rem;
        padding: 2rem;
    }

    .guarantee-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .btn-xl {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .pricing-guarantee {
        flex-direction: column;
        gap: 1rem;
    }

    .guarantee-item {
        flex-direction: row;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid #8BC53F;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #8BC53F;
        border: 2px solid #333;
    }
    
    .highlight {
        background: #8BC53F;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        color: #333;
        padding: 0 4px;
    }
}



/* Partner Teams Section */
.partner-teams {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 2px dashed #ddd;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    text-align: center;
    padding: 1rem;
}

.partner-placeholder:hover {
    border-color: #8BC53F;
    background: rgba(139, 197, 63, 0.1);
    transform: translateY(-5px);
}

.partner-placeholder i {
    font-size: 2rem;
    color: #8BC53F;
    margin-bottom: 0.5rem;
}

.partner-placeholder span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.partners-note {
    background: #f0f8ff;
    border-left: 4px solid #6F40FE;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.partners-note p {
    margin: 0;
    color: #555;
    font-style: italic;
}




/* ================= Championships Coverage ================= */
.championships-coverage {
  --bg: #f8f9fa;
  --card: #ffffff;
  --text: #360454;
  --muted: #666;
  --line: #eee;
  --g1: #8BC53F;
  --g2: #6F40FE;
  --brand: #360454;

  background: var(--bg);
  padding: 80px 0;
}

/* GRID: mobile-first (cards nunca estouram a tela) */
.championships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* ↓ de 420 para 280 */
  gap: 24px;
  margin-bottom: 32px;
}

/* Cards */
.championship-category {
  background: var(--card);
  color: var(--text);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  padding: 20px;
  overflow: hidden;      /* evita vazamento de elementos internos */
}

/* Título do card */
.category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 12px;
  color: var(--brand);
}
.category-title i { font-size: 1.05em; }

/* Lista */
.championship-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.championship-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.35;
  word-break: break-word;      /* evita estouro em nomes longos */
}
.championship-list li:last-child { border-bottom: 0; }
.championship-list small { color: var(--muted); }

/* ====== Breakpoints ====== */

/* ≥768px: cards mais largos e grid confortável */
@media (min-width: 768px) {
  .championships-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
  }
  .championship-category { padding: 22px; }
  .category-title { font-size: 1.2rem; }
}

/* ≥1024px: dois/mais por linha com boa leitura */
@media (min-width: 1024px) {
  .championships-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
  }
  .championship-category { padding: 24px; }
}

/* Telas muito estreitas (≤360px): ainda mais seguro */
@media (max-width: 360px) {
  .championships-grid {
    grid-template-columns: 1fr; /* força uma coluna */
    gap: 16px;
  }
  .championship-category { padding: 16px; }
  .championship-list li { font-size: 0.93rem; padding: 8px 0; }
}

.championship-category {
  position: relative;
  background: var(--card);
  padding: 2rem 2rem 2rem 2.25rem;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(54, 4, 84, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid #f0f0f0;
}

/* filete superior com gradiente, ecoando os botões/hero */
.championship-category::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--g1), var(--g2));
}

.championship-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(54, 4, 84, 0.12);
}
.category-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--brand);
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .2px;
  flex-wrap: wrap;         /* permite quebra de linha */
  line-height: 1.3;
}

.category-title i {
  flex: 0 0 auto;          /* ícone não deforma */
  font-size: 1.1rem;
  color: #6F40FE;          /* cor direta para evitar bug no mobile */
}

/* ===== Lista de campeonatos: título em cima, <small> embaixo (sem mudar HTML) ===== */
.championship-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.championship-list li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;                 /* permite quebrar para a 2ª linha */
  row-gap: 2px;
  column-gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #333;
  font-weight: 700;
  line-height: 1.3;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.championship-list li:last-child { border-bottom: none; }

.championship-list li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f091"; /* código do ícone trophy */
  font-size: 1rem;
  color: #c5b358;
  flex: 0 0 auto;
  margin-top: .2em;
}

/* Faz o <small> ir para a linha de baixo e alinhar com o texto (não com o bullet) */
.championship-list li small {
  flex: 0 0 100%;                  /* quebra para a próxima linha */
  margin-left: calc(12px + 10px);  /* identa = largura do bullet + gap */
  color: var(--muted);
  font-weight: 500;
  font-size: .82rem;
  line-height: 1.25;
}

/* métricas — mantém estética da página, com badge circular roxo/verde */
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.coverage-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(54, 4, 84, 0.08);
  border: 1px solid #f0f0f0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.coverage-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(54, 4, 84, 0.12);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #8BC53F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(111, 64, 254, 0.25);
}

.stat-content {
  display: grid;
  gap: .2rem;
}

.coverage-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #6F40FE;
  line-height: 1.1;
}

.coverage-stat .stat-label {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}

/* Nota de expansão — gradiente institucional */
.expansion-note {
  background: linear-gradient(135deg, #360454, #6F40FE);
  color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
}

.note-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.note-content i {
  font-size: 2rem;
  color: #CCFF8C; /* eco da hero/stat */
  flex-shrink: 0;
}

.note-content h4 {
  color: #fff;
  margin: 0 0 .2rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.note-content p {
  color: rgba(255,255,255,.9);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* responsividade */
@media (max-width: 992px) {
  .championships-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .championships-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .championship-category {
    padding: 1.6rem;
  }
  .note-content {
    flex-direction: column;
    text-align: center;
  }
  .note-content i {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .championship-category,
  .coverage-stat { transition: none; }
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .partner-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .championships-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .championship-category {
        padding: 2rem;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .note-content i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .partner-placeholder i {
        font-size: 1.5rem;
    }
    
    .partner-placeholder span {
        font-size: 0.7rem;
    }
}


/* Platform Preview Styles */
.platform-preview {
    position: relative;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: white;
    transition: transform 0.3s ease;
}

.platform-preview:hover {
    transform: translateY(-10px);
}

.platform-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.preview-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(111, 64, 254, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.preview-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.preview-badge i {
    font-size: 1rem;
}

/* Feature Images Styles */
.feature-images {
    margin-top: 2rem;

    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.filter-image-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.filter-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.filter-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #360454;
    background: #f8f9fa;
    border-top: 2px solid #8BC53F;
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .hero-visual {
        margin-top: 3rem;
    }
    
    .platform-preview {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .preview-overlay {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .feature-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-image-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .preview-overlay {
        position: static;
        margin-top: 1rem;
        border-radius: 8px;
        text-align: center;
    }
    
    .image-caption {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}

/* Update hero section layout for better image display */
.hero {
    padding: 100px 0 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    order: 1;
}

.hero-visual {
    order: 2;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
}

/* Enhanced feature card styles for images */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8BC53F, #6F40FE);
}

