/* ======== RESET ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

body {
  margin: 0;
  padding-top: 80px; /* ajuste conforme a altura real do menu */
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background-color: #000;
  color: #fff;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.h2comsombra{
    text-shadow: 3px 3px #0b0b0b;
}

h1{
    padding: 30px;
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 10%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.nav-logo img {
  height: 36px;
  width: auto;
  background: #fff;       /* fundo branco atrás da logo preta */
  padding: 6px;
  border-radius: 6px;
}


.nav-logo .orange {
  color: #ff0000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ff0000;
}

/* ==== BOTÃO HAMBÚRGUER PREMIUM ==== */
.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  background: #111; /* fundo sólido e neutro */
  border: none; /* remove bordas padrão */
  outline: none; /* remove borda de foco */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none; /* remove sombra cinza padrão */
}

.menu-toggle:hover {
  background: #ff0000; /* muda pra vermelho no hover */
  transform: scale(1.05);
}

/* linhas do hambúrguer */
.menu-toggle span {
  position: absolute;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.35s ease;
}

/* posição das três linhas */
.menu-toggle span:nth-child(1) {
  top: 14px;
}
.menu-toggle span:nth-child(2) {
  top: 22px;
}
.menu-toggle span:nth-child(3) {
  top: 30px;
}

/* efeito quando ativo (vira X) */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 22px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 22px;
}

/* remove foco azul e borda cinza no clique */
.menu-toggle:focus,
.menu-toggle:active {
  outline: none;
  box-shadow: none;
}

/* Menu lateral oculto */
.nav-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 250px;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: right 0.4s ease;
}

.nav-menu a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff0000;
}

/* Botão contato destacado */
.btn-contato {
  background: #ff0000;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s;
}

.btn-contato:hover {
  background: #ff0000;
}

/* Menu ativo (visível) */
.nav-menu.active {
  right: 0;
}

/* Animação do botão hambúrguer para "X" */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsivo */
@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    height: auto;
    background: transparent;
    gap: 30px;
    right: 0;
  }
}

/* ======== BOTÃO CONTATO DESTACADO ======== */
.btn-contato {
  background: linear-gradient(90deg, #970505, #ff0000);
  border-radius: 3px;
  color: #fff !important;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.btn-contato:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 16px rgba(255, 0, 0, 0.6);
}

.btn-contato_icon img {
  width: 20px;
  height: 20px;
}

/* ======== HERO (IMAGEM + OVERLAY) ======== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 10% 80px; /* espaço para o menu fixo */
  background: url("../img/banner-produto.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* camada degradê preta → laranja */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* conteúdo acima da imagem e overlay */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: center;
}

.hero-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.highlight {
  color: #ff0000;
}

.hero-content p {
  color: #ddd;
  margin-bottom: 24px;
  margin: 0 auto 50px;
  color: #b1aeae;
  line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form input {
  padding: 14px 12px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
}

form input::placeholder {
  color: #ccc;
}

form button {
  background: linear-gradient(90deg, #e83434, #ec2020);
  border: none;
  color: #fff;
  padding: 18px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s;
}

form button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ======== FORMULÁRIO COM ÍCONES ======== */
form {
  max-width: 400px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff3333;
  font-size: 18px;
}

.input-group input {
  width: 100%;
  padding: 12px 15px 12px 45px; /* espaço pro ícone */
  border: 1px solid #444;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: #ff3333;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.btn-enviar {
  background: linear-gradient(90deg, #f65b5b,   #ff3333);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-enviar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.input-group i.fa-phone {
  color: #ff3333;
}

/* ======== RODAPÉ ======== */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 10% 30px;
  font-size: 12px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
  padding: 6px;
  border-radius: 6px;
  background: #fff;       /* fundo branco atrás da logo preta */
}

.footer-logo p {
  max-width: 280px;
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
  font-size: 12px;
}

.footer-links h3,
.footer-social h3 {
  color: #ff0000;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff0000;
}

/* ======== REDES SOCIAIS ======== */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  filter: invert(1);
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background: linear-gradient(45deg, #3de0f9, #3de0f9);
  transform: scale(1.1);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

/* ======== PARTE INFERIOR ======== */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 12px;
  color: #bbb;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-logo p {
    margin: 0 auto;
  }
}

/* ======== RESPONSIVO ======== */
@media (max-width: 900px) {
  .hero {
    padding: 100px 5% 60px;
    text-align: center;
  }

  form input, form button {
    width: 100%;
  }
}

/* ======== SEÇÃO IDEAL ======== */
.ideal {
  text-align: center;
  padding-bottom: 70px;
  background: #ffffff;
}

.ideal h2 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #0e1b2a;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: #888;
}

.card:hover {
  transition: all 0.4s ease;
  transform: scale(1.05);
}

.card {
  background: #111;
  border-radius: 10px;
  padding: 24px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.icon {
  font-size: 28px;
  color: #ff0000;
  margin-bottom: 12px;
}

/* === SEÇÃO COMERCIAL / ATENDIMENTO === */
.comercial-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
  background: linear-gradient(90deg, #e50914, #372727);
  color: #fff;
  flex-wrap: wrap;
}

.comercial-img {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  margin-right: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.comercial-img img {
  width: 100%;
  height: auto;
  display: block;
}

.comercial-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.comercial-text {
  flex: 1.5;
  max-width: 600px;
}

.comercial-text h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}

.comercial-text h3 span {
  color: #ffd700;
}

.comercial-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #f5f5f5;
}

@media (max-width: 800px) {
  .comercial-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 6%;
  }

  .comercial-img {
    margin: 0 0 25px 0;
  }

  .comercial-text h3 {
    font-size: 22px;
  }
}

/* ======== SEÇÕES INFO (CONTATO, SUPORTE, FAQ) ======== */
.info-section {
  padding: 80px 10%;
  text-align: center;
  background: #0b0b0b;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.info-section h2 {
  color: #ff0000;
  margin-bottom: 16px;
}

/* ======== FOOTER ======== */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #777;
  font-size: 14px;
}

/* ======== SEÇÃO DE CONFIANÇA ======== */
.confianca {
  background: #fff;
  color: #0e1b2a;
  text-align: center;
  padding: 0px 20px;
}

.confianca h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e1b2a;
  margin-bottom: 20px;
}

.confianca h2 span {
  color: #ff0000; /* Destaque em vermelho/laranja */
}

.ideal h2 span {
  color: #ff0000; /* Destaque em vermelho/laranja */
}

.confianca p {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.metricas {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 10px;
}

.metrica {
  text-align: center;
  max-width: 340px;
}

.metrica h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.metrica p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

.metrica strong {
  color: #0e1b2a;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 768px) {
  .confianca h2 {
    font-size: 1.5rem;
  }

  .metricas {
    flex-direction: column;
    gap: 30px;
  }

  .metrica h3 {
    font-size: 2rem;
  }
}

/* ======== RESPONSIVO ======== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-image {
    width: 280px;
    height: 280px;
    margin-top: 30px;
  }

  .mentor {
    flex-direction: column;
    text-align: center;
  }

  .mentor-img {
    margin: 0 0 20px 0;
  }

  .nav-links {
    gap: 14px;
  }
}

/* ... (mantém o resto igual ao anterior) ... */

/* ======== SLIDER DE PRODUTOS ======== */
.produtos {
  text-align: center;
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: white;
  /**background: url("../img/banner-produto2.png") center/cover no-repeat;*/
  color: #0e1b2a;
  overflow: hidden;
  text-align: center;
  padding: 30px 0%;
}



.slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* Botões de navegação */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 10%;
  transition: background 0.3s;
}

.prev:hover,
.next:hover {
  background: #ff0000;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .slider {
    max-width: 90%;
  }

  .prev,
  .next {
    font-size: 22px;
  }
}

/* ======== BOTÃO WHATSAPP ======== */
.btn-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #37b50d;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp img {
  width: 34px;
  height: 34px;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(211, 37, 37, 0.5);
}

/* ======== BOTÃO FLUTUANTE WHATSAPP ======== */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Ícone principal */
.whatsapp-float {
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}

/* Balão de texto */
.whatsapp-tooltip {
  background: #fff;
  color: #333;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 5s ease forwards;
  opacity: 0;
  transform: translateX(10px);
  white-space: nowrap;
}

/* Triângulo do balão */
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Efeito de aparecer */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile - balão mais próximo */
@media (max-width: 600px) {
  .whatsapp-tooltip {
    font-size: 13px;
    padding: 8px 10px;
  }
}
/* Classe visível */
#btn-topo.show {
  opacity: 1;
  pointer-events: auto;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 600px) {
  .btn-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .btn-whatsapp img {
    width: 28px;
    height: 28px;
  }

  #btn-topo {
    bottom: 85px;
    right: 25px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* ======== EFEITO FADE-IN ======== */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== F.A.Q SECTION ======== */
.faq-section {
  padding: 100px 10%;
  background: #f8f9fb;
  color: #0e1b2a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
}

.faq-left {
  flex: 1;
  min-width: 250px;
}

.faq-left h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #0e1b2a;
}

.faq-left p {
  font-size: 17px;
  line-height: 1.6;
  color: #3b4758;
  max-width: 300px;
}

.faq-right {
  flex: 2;
  min-width: 300px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0e1b2a;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #ff0000;
}

.faq-question span {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #444;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 5px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsivo */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    gap: 30px;
  }
  .faq-left h2 {
    font-size: 36px;
  }
}

/* overlay por trás do menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 995;
}

/* menu (mobile) */
.nav-menu {
  position: fixed;
  right: -100%;
  top: 0;
  max-width: 86%;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 20px;
  transition: right 0.4s ease;
  z-index: 1000;
}

/* close button (top-right inside menu) */
.menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.menu-close:hover {
  background: rgba(255,255,255,0.06);
}

/* quando o menu fica visível */
.nav-menu.active { right: 0; }
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* esconder o close em desktop (opcional) */
@media (min-width: 900px) {
  .menu-close { display: none; }
  .menu-overlay { display: none; }
  .nav-menu {
    position: static;
    right: 0;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
  }
}

/* garantir links visíveis */
.nav-link { color: #fff; text-decoration: none; font-size: 18px; }
.nav-link:hover { color: #ff0000; }

/* animação do hambúrguer para X */
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }