:root {
  --bg: #0f0f10;
  --panel: #16161a;
  --accent: #f5d742;
  --text: #eaeaea;
  --muted: #bdbdbd;
  --max-w: 1100px;
}

/* ====== GERAL ====== */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: 5%;
}
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ====== NAVBAR ====== */
/* ====== NAVBAR ====== */
.navbar {
  position: fixed; /* fixa no topo */
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 25, 0.95);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  z-index: 999; /* acima de tudo */
  padding: 14px 0;
  backdrop-filter: blur(10px);
}

.navbar .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* logo à esquerda */
  padding: 0 20px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.menu {
  position: absolute; /* centraliza na tela */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  font-size: 2rem;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.menu a:hover,
.menu a.active {
  color: var(--accent);
}
/* ====== SEÇÕES ====== */
.hero {
  background: linear-gradient(180deg, #141414 0%, #0f0f10 100%);
  text-align: center;
  padding: 160px 20px 100px;
}

.hero iframe {
    width: 40%;
    height: 200px;
    padding: 1% 20px;
  }

.hero h2 {
  font-size: 2.5rem;
  color: var(--accent);
}
.hero p {
  max-width: 700px;
  margin: 12px auto 20px;
  color: var(--muted);
  line-height: 1.6;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
}
.btn:hover {
  background: #ffe55c;
}

.section {
  padding: 100px 20px;
  text-align: center;
  background: var(--bg);
}
.section.alt {
  background: var(--panel);
}
.section h2 {
  color: var(--accent);
  font-size: 2rem;
}
.section p {
  max-width: 800px;
  margin: 10px auto 20px;
  color: var(--muted);
  line-height: 1.6;
}
.section .btn {
  margin-top: 10px;
}

/* ====== FOOTER ====== */
.footer {
  background: #111;
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 8px;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
  .menu a {
    margin: 0 6px;
    font-size: 0.8rem;
  }
  .hero iframe {
    width: 100%;
    height: 200px;
    padding: 1% 20px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .section h2 {
    font-size: 1.6rem;
  }

  body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    padding-top: 90px;
  }
}


:root {
  --accent: #ffcc00;
  --bg-dark: #1a1a1a;
  --text: #fff;
}


/* ====== SEÇÃO DE COMPRA ====== */
/*SLIDER DE PREÇO*/
:root {
  --accent: #ffcc00;
  --bg-dark: #1a1a1a;
  --text: #fff;
}

.compra-section {
  background: var(--bg-dark);
  color: var(--text);
  text-align: center;
  padding: 20px 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  max-width: 600px;
  margin: 140px auto 60px; /* ajustado para considerar a navbar fixa */
  padding-top: 5%;
  
}

.slider-container {
  margin-top: 20px;
  text-align: center;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, #444 100%);
  outline: none;
  transition: background 0.3s;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.values {
  font-size: 1.3em;
  margin-top: 10px;
  font-weight: 600;
}

.preco-container {
  margin-top: 15px;
  font-size: 1.1em;
}

.btn-comprar {
  margin-top: 25px;
  background: var(--accent);
  border: none;
  color: #000;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

.btn-comprar:hover {
  background: #ffd633;
  transform: scale(1.05);
}


.dados-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.dados-container input {
  width: 260px;
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid #333;
  background: #222;
  color: #fff;
  font-size: 1em;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.dados-container input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

.dados-container input::placeholder {
  color: #aaa;
}

.msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.msg.sucesso {
  background: #2ecc71;
  text-shadow: #0f0f10 0 0 10px;
}

.msg.erro {
  background: #e74c3c;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.pagamento-container {
  margin: 20px 0 30px;
  text-align: left;
}

.pagamento-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--accent);
}

.pagamento-container select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #2b2b2b;
  color: #fff;
  font-size: 1em;
  outline: none;
  cursor: pointer;
}

.pagamento-container select:focus {
  border: 2px solid var(--accent);
}


.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: inline-block;
  animation: pulsar 1.6s infinite;
}

.whatsapp-btn img {
  width: 80px;
  height: 80px;
  border-radius: 20%;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover img {
  transform: scale(1.15);
}

@keyframes pulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* espaço entre a imagem e o nome */
  font-size: 1.5rem; /* tamanho do texto */
  font-weight: bold;
  color: var(--accent); /* ou a cor que quiser */
}

.logo-img {
  width: 30%;  /* ajuste o tamanho da imagem */
  height: 30%;
  object-fit: contain; /* mantém proporção */
}

/* ====== SEÇÃO DE COTAÇÃO ====== */
.cotacao {
  background: var(--panel);
  padding: 1% 20px;
  text-align: center;
  border-top: 2px solid rgba(255, 215, 0, 0.1);
  border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

.cotacao h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.cotacao p {
  color: var(--muted);
  margin-bottom: 35px;
  font-size: 1.1rem;
}

.tabela-precos {
  display: inline-block;
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(245, 215, 66, 0.05);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  min-width: 340px;
}

.tabela-precos table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1rem;
}

.tabela-precos th, 
.tabela-precos td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tabela-precos th {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent);
  text-align: center;
  font-weight: 700;
}

.tabela-precos td {
  color: var(--text);
}

.tabela-precos tr:last-child td {
  border-bottom: none;
}

.tabela-precos td.valor {
  text-align: right;
  font-weight: 700;
  color: var(--accent);
}

.tabela-precos table td[colspan="2"] {
  text-align: center;
}

.tabela-precos .btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
}

.tabela-precos .btn:hover {
  background-color: #ffe55c;
  transform: scale(1.05);
}



