*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --verde: #C9A84C;
  --verde-claro: #D4AF37;
  --verde-palido: #1A2B3C;
  --dourado: #F0C040;
  --dourado-claro: #FFF0A0;
  --creme: #0D1B2A;
  --texto: #F5F0E8;
  --texto-suave: #9A8A75;
  --branco: #162536;
  --fundo-profundo: #0A1520;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--creme);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* TOPBAR */
.topbar {
  background: var(--verde);
  color: var(--fundo-profundo);
  text-align: center;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar span:first-child { font-weight: 700; }
.topbar-sep { opacity: 0.5; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--fundo-profundo);
  border-bottom: 2px solid rgba(201,168,76,0.25);
  min-height: 68px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex; gap: 20px; list-style: none;
  align-items: center; flex-shrink: 0;
}
.nav-links a {
  text-decoration: none; color: var(--texto-suave);
  font-size: 0.88rem; font-weight: 400;
  white-space: nowrap; line-height: 1;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--verde); }
.nav-cta {
  background: var(--verde) !important;
  color: #0D1B2A !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
}
.nav-cta:hover { background: var(--verde-claro) !important; color: #0D1B2A !important; }


/* JOGOS */
#jogos { background: var(--branco); }
.jogos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.jogo-card {
  background: var(--creme);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.jogo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.15);
}
.jogo-thumb {
  width: 100%; height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
  background: var(--verde-palido);
}
.jogo-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--verde); color: var(--fundo-profundo);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
}
.jogo-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.jogo-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--texto);
}
.jogo-nivel {
  font-size: 0.75rem; color: var(--verde); font-weight: 500;
  margin-bottom: 0.6rem; display: flex; align-items: center; gap: 4px;
}
.jogo-body p {
  font-size: 0.85rem; color: var(--texto-suave);
  line-height: 1.6; flex: 1; margin-bottom: 1rem;
}
.jogo-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.jogo-preco {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--verde); font-weight: 700;
}
.jogo-preco span { font-size: 0.8rem; color: var(--texto-suave); font-family: 'DM Sans', sans-serif; display: block; font-weight: 400; }
.btn-comprar {
  background: var(--verde); color: var(--fundo-profundo);
  padding: 9px 18px; border-radius: 50px;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-comprar:hover { background: var(--verde-claro); }
.btn-download {
  background: transparent; color: var(--verde);
  padding: 9px 18px; border-radius: 50px;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  transition: all 0.2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--verde);
}
.btn-download:hover { background: var(--verde); color: var(--fundo-profundo); }
.btn-hotmart {
  background: #EE4B25; color: #fff;
  padding: 9px 18px; border-radius: 50px;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-hotmart:hover { background: #d03d1b; }
.jogo-badge-hotmart {
  position: absolute; top: 12px; right: 12px;
  background: #EE4B25; color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  letter-spacing: 0.04em;
}
.jogo-card-gratis {
  border: 2px solid var(--verde);
  position: relative;
}
.jogo-badge-gratis {
  position: absolute; top: 12px; right: 12px;
  background: #2ECC71; color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.jogos-info-box {
  background: var(--verde-palido); border-radius: 20px;
  padding: 1.5rem 2rem; margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  border: 1px solid rgba(201,168,76,0.2);
}
.jogos-info-box p { font-size: 0.9rem; color: var(--verde); flex: 1; min-width: 200px; }
.jogos-info-box strong { display: block; font-size: 1rem; margin-bottom: 4px; }

/* HERO */
.hero {
  display: flex; align-items: center;
  padding: 5rem 2rem;
  background: var(--creme);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '"';
  position: absolute; bottom: 40px; left: 5%;
  font-family: 'Playfair Display', serif;
  font-size: 18rem; color: rgba(201,168,76,0.06);
  line-height: 1; pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--verde-palido); color: var(--verde);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; line-height: 1.15;
  color: var(--texto); margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--verde); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; color: var(--texto-suave);
  max-width: 420px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--verde); color: var(--fundo-profundo);
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; font-weight: 600;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--verde-claro); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--verde);
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; font-weight: 500;
  border: 1.5px solid var(--verde);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--verde-palido); }
.hero-card {
  background: var(--branco);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
}
.hero-logo-img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; text-align: center; margin-bottom: 0.3rem;
  color: var(--texto);
}
.hero-card p { text-align: center; color: var(--texto-suave); font-size: 0.9rem; margin-bottom: 1.5rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--verde); font-weight: 700; display: block;
}
.stat-label { font-size: 0.78rem; color: var(--texto-suave); }
.badge-row {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.badge {
  background: var(--verde-palido); color: var(--verde);
  font-size: 0.78rem; padding: 4px 12px; border-radius: 50px; font-weight: 500;
  border: 1px solid rgba(201,168,76,0.25);
}

/* SECTION COMMON */
section { padding: 4rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--verde); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; margin-bottom: 1rem; color: var(--texto);
}
.section-sub {
  color: var(--texto-suave); max-width: 720px; line-height: 1.8;
  margin-bottom: 2rem;
}

/* SOBRE */
#sobre { background: var(--branco); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center;
}
.sobre-img-block { position: relative; }
.sobre-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--verde-palido);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
}
.sobre-img img {
  width: 80%; height: 80%; object-fit: contain;
}
.sobre-quote-box {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--verde); color: var(--fundo-profundo);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  max-width: 200px;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.sobre-lista { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.sobre-lista li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--texto-suave);
}
.check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--verde-palido); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--verde); font-size: 0.8rem; margin-top: 2px;
}

/* SERVIÇOS */
#servicos { background: var(--creme); }
.servicos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.servico-card {
  background: var(--branco); border-radius: 20px;
  padding: 2rem; transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(201,168,76,0.15);
}
.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.12);
}
.servico-icon {
  width: 56px; height: 56px;
  background: var(--verde-palido);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
}
.servico-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--texto);
}
.servico-card p { font-size: 0.9rem; color: var(--texto-suave); line-height: 1.7; margin-bottom: 1rem; }
.servico-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.servico-tag {
  font-size: 0.75rem; background: var(--verde-palido);
  color: var(--verde); padding: 3px 10px; border-radius: 50px;
}
.destaque { border: 2px solid var(--verde); position: relative; }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--verde); color: var(--fundo-profundo);
  font-size: 0.72rem; font-weight: 600; padding: 4px 14px;
  border-radius: 50px; white-space: nowrap;
}

/* HORÁRIOS */
#horarios { background: var(--branco); }
.horarios-wrapper { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th {
  background: var(--verde); color: var(--fundo-profundo);
  padding: 12px 16px; text-align: left;
  font-size: 0.85rem; font-weight: 600;
}
.schedule-table th:first-child { border-radius: 12px 0 0 0; }
.schedule-table th:last-child { border-radius: 0 12px 0 0; }
.schedule-table td {
  padding: 11px 16px; font-size: 0.88rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  color: var(--texto-suave);
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: var(--creme); }
.disponivel { color: var(--verde); font-weight: 500; }
.online { color: var(--dourado); font-weight: 500; }
.horarios-info h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  margin-bottom: 1.2rem; color: var(--texto);
}
.info-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 1.2rem;
}
.info-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--verde-palido); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.info-item strong { display: block; font-weight: 500; font-size: 0.95rem; margin-bottom: 2px; color: var(--texto); }
.info-item span { font-size: 0.85rem; color: var(--texto-suave); }
.cta-horario {
  margin-top: 2rem; background: var(--verde-palido);
  border-radius: 16px; padding: 1.5rem; text-align: center;
  border: 1px solid rgba(201,168,76,0.2);
}
.cta-horario p { font-size: 0.9rem; color: var(--texto-suave); margin-bottom: 1rem; }

/* DEPOIMENTOS */
#depoimentos { background: var(--creme); }
.depoimentos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.depoimento {
  background: var(--branco); border-radius: 20px; padding: 1.8rem;
  border: 1px solid rgba(201,168,76,0.15);
}
.depoimento-stars { color: var(--verde); font-size: 1rem; margin-bottom: 1rem; }
.depoimento-texto {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.95rem;
  color: var(--texto); line-height: 1.75; margin-bottom: 1.5rem;
}
.depoimento-autor {
  display: flex; align-items: center; gap: 12px;
}
.autor-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--verde-palido); display: flex;
  align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--verde); font-weight: 700;
}
.autor-nome { font-weight: 500; font-size: 0.9rem; color: var(--texto); }
.autor-info { font-size: 0.78rem; color: var(--texto-suave); }

/* REDAÇÃO */
#redacao { background: var(--branco); }
.redacao-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.redacao-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--verde); color: var(--fundo-profundo);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
}
.step h4 { font-weight: 500; margin-bottom: 4px; font-size: 0.95rem; color: var(--texto); }
.step p { font-size: 0.88rem; color: var(--texto-suave); line-height: 1.6; }
.nota-box {
  background: var(--verde-palido); border-radius: 24px; padding: 2.5rem;
  text-align: center; border: 1px solid rgba(201,168,76,0.3);
}
.nota-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 700; display: block;
  line-height: 1; margin-bottom: 0.5rem; color: var(--verde);
}
.nota-box p { opacity: 0.9; font-size: 0.95rem; line-height: 1.6; color: var(--texto); }
.nota-box small { display: block; margin-top: 1rem; opacity: 0.6; font-size: 0.8rem; color: var(--texto-suave); }

/* VALORES */
#valores { background: var(--creme); }
.valores-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.valor-card {
  background: var(--branco); border-radius: 20px; padding: 2rem;
  text-align: center; border: 1px solid rgba(201,168,76,0.15);
}
.valor-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; margin: 1rem 0 0.5rem; color: var(--texto);
}
.valor-preco {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--verde); font-weight: 700; margin-bottom: 0.3rem;
}
.valor-periodo { font-size: 0.8rem; color: var(--texto-suave); margin-bottom: 1rem; }
.valor-lista { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.valor-lista li { font-size: 0.88rem; color: var(--texto-suave); display: flex; gap: 8px; align-items: flex-start; }

/* CONTATO */
#contato { background: var(--branco); }
.contato-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start;
}
.form-group { margin-bottom: 1.2rem; }
label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--texto); }
input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(201,168,76,0.2); border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--texto); background: var(--creme);
  transition: border-color 0.2s; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--verde); background: var(--verde-palido);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--verde); color: var(--fundo-profundo);
  padding: 14px; border: none; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--verde-claro); }
.contato-info h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--texto);
}
.contato-item {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.2rem;
}
.contato-icone {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--verde-palido); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contato-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; color: var(--texto); }
.contato-item a, .contato-item span { font-size: 0.85rem; color: var(--texto-suave); text-decoration: none; }
.contato-item a:hover { color: var(--verde); }
.redes { display: flex; gap: 12px; margin-top: 2rem; flex-wrap: wrap; }
.rede-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--verde-palido); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; text-decoration: none; transition: background 0.2s;
}
.rede-btn:hover { background: var(--verde); }
.rede-instagram {
  width: auto; padding: 0 16px; gap: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 12px; color: white; font-size: 0.85rem; font-weight: 500;
}
.rede-instagram:hover { opacity: 0.88; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contato-icone-wa   { background: #25D366; }
.contato-icone-email { background: var(--verde); }
.contato-icone-local { background: var(--verde); }
.contato-icone-clock { background: var(--verde); }
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* FOOTER */
footer {
  background: var(--fundo-profundo); color: var(--texto);
  padding: 3rem 2rem; text-align: center;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-logo-img {
  height: 90px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
}
footer p { font-size: 0.85rem; color: var(--texto-suave); }
footer nav { margin-top: 1.5rem; }
footer nav a { color: var(--texto-suave); text-decoration: none; margin: 0 1rem; font-size: 0.85rem; transition: color 0.2s; }
footer nav a:hover { color: var(--verde); }

/* SELECT options dark theme */
select option { background: var(--branco); color: var(--texto); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner, .sobre-grid, .contato-grid, .redacao-content, .horarios-wrapper {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 2.2rem; }
  .sobre-img { aspect-ratio: 4/3; }
  .sobre-quote-box { display: none; }
  .nav-links li:not(:last-child) { display: none; }
  .nav-inner { padding: 8px 16px; }
}
