* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ouro: #C89A2E;
  --laranja: #E8670A;
  --escuro: #0F0A04;
  --texto: #F5ECD7;
  --cinza: #1A1208;
  --suave: #2A1E0A;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--escuro);
  color: var(--texto);
  font-family: 'Georgia', serif;
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 6%;
  position: sticky;
  top: 0;
  background: rgba(15, 10, 4, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2A1E0A;
  z-index: 100;
}

.logo {
  font-size: 1.3rem;
  color: var(--ouro);
  font-weight: bold;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  color: var(--texto);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav a:hover { color: var(--ouro); }

.btn-nav {
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  color: var(--escuro) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem !important;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 6% 4rem;
  min-height: 90vh;
  gap: 2rem;
}

.hero-content { flex: 1; max-width: 560px; }

.badge {
  display: inline-block;
  background: rgba(200, 154, 46, 0.15);
  border: 1px solid var(--ouro);
  color: var(--ouro);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content h1 span,
h2 span {
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  color: #B8A882;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  color: var(--escuro);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(232, 103, 10, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 103, 10, 0.6);
}

.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle-bg {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,154,46,0.2), rgba(232,103,10,0.05));
  border: 1px solid rgba(200, 154, 46, 0.2);
  position: absolute;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

.produto-hero-img {
  position: relative;
  z-index: 1;
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(200, 154, 46, 0.4));
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 6%;
  background: var(--cinza);
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  max-width: 240px;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--suave);
  border: 1px solid rgba(200, 154, 46, 0.1);
  transition: transform 0.3s, border-color 0.3s;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 154, 46, 0.4);
}

.feature span { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.feature h3 { color: var(--ouro); margin-bottom: 0.5rem; }
.feature p { color: #B8A882; font-size: 0.9rem; }

/* SEÇÕES DE PRODUTO */
.produto-secao {
  padding: 6rem 6%;
  background: var(--escuro);
}

.produto-secao.escuro {
  background: var(--cinza);
}

.produto-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.produto-header h2 {
  font-size: 2.2rem;
  margin: 1rem 0;
}

.produto-header p {
  color: #B8A882;
  font-size: 1rem;
}

/* KITS */
.kits {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.kit {
  background: var(--suave);
  border: 1px solid rgba(200, 154, 46, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  width: 260px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
  text-align: center;
}

.kit:hover {
  transform: translateY(-4px);
  border-color: var(--ouro);
}

.kit.destaque {
  border-color: var(--ouro);
  background: rgba(200, 154, 46, 0.08);
  transform: scale(1.04);
}

.kit.destaque:hover {
  transform: scale(1.04) translateY(-4px);
}

.tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  color: var(--escuro);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.kit-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.kit-img img {
  max-height: 150px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(200, 154, 46, 0.3));
}

.kit h3 {
  font-size: 1.2rem;
  color: var(--ouro);
  margin-bottom: 0.3rem;
}

.kit-desc {
  color: #B8A882;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.kit ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.kit ul li {
  font-size: 0.85rem;
  color: #D4C4A0;
  padding: 0.2rem 0;
}

.kit-preco {
  font-size: 1.9rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
}

.btn-comprar {
  display: block;
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  color: var(--escuro);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 15px rgba(232, 103, 10, 0.3);
}

.btn-comprar:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* GALERIA */
.galeria {
  padding: 6rem 6%;
  background: var(--escuro);
}

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

.secao-header h2 {
  font-size: 2.2rem;
  margin-top: 1rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.galeria-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(200, 154, 46, 0.15);
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}

.galeria-grid img:hover {
  transform: scale(1.03);
  border-color: var(--ouro);
}

/* VÍDEO */
.video-secao {
  padding: 6rem 6%;
  background: var(--cinza);
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(200, 154, 46, 0.3);
  box-shadow: 0 8px 40px rgba(200, 154, 46, 0.15);
}

.video-container video {
  width: 100%;
  display: block;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--suave);
  color: #B8A882;
  font-size: 0.9rem;
}

footer a { color: var(--ouro); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* CARACTERÍSTICAS HERO */
.caracteristicas {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.caracteristicas span {
  background: rgba(200, 154, 46, 0.12);
  border: 1px solid rgba(200, 154, 46, 0.35);
  color: var(--ouro);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

/* HISTÓRIA */
.historia {
  padding: 6rem 6%;
  background: var(--cinza);
}

.historia-conteudo {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.historia-texto {
  flex: 1;
  min-width: 280px;
}

.historia-texto h2 {
  font-size: 2.2rem;
  margin: 1rem 0 1.5rem;
}

.historia-texto p {
  color: #B8A882;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.historia-texto strong { color: var(--texto); }

.historia-tags {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.historia-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(200, 154, 46, 0.08);
  border: 1px solid rgba(200, 154, 46, 0.25);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 90px;
}

.historia-tag strong {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.historia-tag span {
  font-size: 0.78rem;
  color: #B8A882;
  margin-top: 0.2rem;
}

.historia-img {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.historia-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,154,46,0.12), transparent);
  border: 1px solid rgba(200, 154, 46, 0.15);
  position: absolute;
}

.historia-foto {
  width: 100%;
  max-width: 320px;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(200, 154, 46, 0.25);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* DEPOIMENTOS */
.depoimentos {
  padding: 6rem 6%;
  background: var(--escuro);
}

.depoimentos-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.depoimento {
  background: var(--suave);
  border: 1px solid rgba(200, 154, 46, 0.15);
  border-radius: 20px;
  padding: 2rem;
  max-width: 320px;
  transition: transform 0.3s, border-color 0.3s;
}

.depoimento:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 154, 46, 0.4);
}

.depoimento.destaque-dep {
  border-color: rgba(200, 154, 46, 0.35);
  background: rgba(200, 154, 46, 0.06);
}

.estrelas {
  color: var(--ouro);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.depoimento p {
  color: #D4C4A0;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.autor {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.autor-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  color: var(--escuro);
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.autor strong {
  display: block;
  font-size: 0.95rem;
  color: var(--texto);
}

.autor span {
  font-size: 0.8rem;
  color: #B8A882;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-box {
  background: #1A1208;
  border: 1px solid rgba(200, 154, 46, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-fechar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #B8A882;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-fechar:hover { background: rgba(255,255,255,0.1); }

.modal-box h2 {
  font-size: 1.5rem;
  color: var(--ouro);
  margin-bottom: 0.3rem;
}

.modal-sub {
  color: #B8A882;
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.form-grupo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-linha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grupo label {
  font-size: 0.82rem;
  color: var(--ouro);
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.form-grupo input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200, 154, 46, 0.25);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: var(--texto);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-grupo input:focus {
  outline: none;
  border-color: var(--ouro);
}

.form-grupo input::placeholder { color: #6B5A3A; }

.btn-enviar {
  width: 100%;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  color: var(--escuro);
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(232, 103, 10, 0.4);
  font-family: inherit;
}

.btn-enviar:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* MODAL ESCOLHA DE PAGAMENTO */
.opcoes-pagamento {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-pag-pix, .btn-pag-cartao {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.2rem;
  border-radius: 14px;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.btn-pag-pix {
  background: rgba(72, 199, 116, 0.1);
  border-color: #48C774;
  color: #48C774;
}

.btn-pag-pix:hover {
  transform: scale(1.02);
  background: rgba(72, 199, 116, 0.18);
}

.btn-pag-cartao {
  background: rgba(200, 154, 46, 0.1);
  border-color: var(--ouro);
  color: var(--ouro);
}

.btn-pag-cartao:hover {
  transform: scale(1.02);
  background: rgba(200, 154, 46, 0.18);
}

.btn-pag-pix span, .btn-pag-cartao span {
  font-size: 0.8rem;
  font-weight: normal;
  opacity: 0.8;
}

/* MODAL PIX */
.pix-icone { font-size: 2.5rem; margin-bottom: 0.5rem; }

.pix-valor {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.3rem 0 1.2rem;
}

.pix-qrcode {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  border: 3px solid var(--ouro);
  margin: 0 auto 1.2rem;
  display: block;
}

.pix-instrucao {
  color: #B8A882;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.pix-codigo-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,154,46,0.25);
  border-radius: 8px;
  padding: 0.8rem;
  font-size: 0.7rem;
  color: #D4C4A0;
  word-break: break-all;
  margin-bottom: 1rem;
  text-align: left;
  max-height: 80px;
  overflow-y: auto;
}

.btn-copiar {
  width: 100%;
  background: linear-gradient(135deg, var(--laranja), var(--ouro));
  color: var(--escuro);
  border: none;
  padding: 0.85rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s;
  margin-bottom: 1rem;
}

.btn-copiar:hover { opacity: 0.9; }

.pix-aviso {
  font-size: 0.8rem;
  color: #B8A882;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 5% 3rem;
    min-height: auto;
  }

  .hero-img { order: -1; }
  .circle-bg { width: 260px; height: 260px; }
  .produto-hero-img { max-width: 220px; }

  nav a:not(.btn-nav):not(:last-of-type) { display: none; }

  .kit.destaque { transform: scale(1); }

  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .kits { flex-direction: column; align-items: center; }
}
