* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #000; /* Texto preto */
  background: #FFF; /* Fundo branco */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 🔥 Evita qualquer scroll horizontal */
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* HEADER */
header {
  background: #000; /* Navbar preta */
  border-bottom: 1px solid #222;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10%;
}

/* Logo */
header .logo img {
  height: 50px; 
  width: auto;
  display: block;
  margin-right: 30px;
}

/* Container de navegação + botão */
.navbar {
  display: flex;
  align-items: center;
  flex: 1;
}

/* Menu de navegação */
header nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Links do menu */
header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #FFC107;
}

/* Botão Simule Agora */
.btn-simule {
  background: #FFC107;
  color: #000;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-left: auto; /* 🔥 Empurra o botão para a direita */
  transition: background 0.3s;
}

.btn-simule:hover {
  background: #e6ac00;
}


/* HERO */
.hero {
  position: relative;
  width: 100vw; /* 🔥 Usa viewport width real */
  height: 600px;
  overflow: hidden;
  margin-top: 90px;
}

.hero-content { max-width: 700px; }
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #000;
}
.hero p {
  margin-bottom: 20px;
  color: #333;
}

.btn {
  background: #FFC107;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

/* HERO / CARROSSEL */
.hero {
  position: relative;
  width: 100%;
  height: 600px; /* 🔥 Altura fixa para desktop */
  overflow: hidden;
  margin-top: 90px;
}

.carousel {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Preenche todo o container sem distorcer */
  object-position: center; /* Mantém foco no centro da imagem */
}

.slide.active {
  opacity: 1;
}

.hero-content {
  color: #fff;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #FFC107;
  color: #000;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6ac00;
}

/* Controles do carrossel */
.carousel-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  justify-content: space-between;
  padding: 0 20px;
}

/* Controles do carrossel (setas menores e minimalistas) */
.carousel-controls span {
  font-size: 1.2rem; /* 🔥 Reduz tamanho da seta */
  color: #000;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Indicadores (bolinhas) */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.carousel-indicators span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-indicators span.active {
  background: #FFF;
}

/* SOBRE */
/* Containers principais */
.sobre-container, 
.vantagens-container {
  display: flex;
  flex-direction: row; /* 🔥 Garante lado a lado */
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 10%;
}

/* Blocos de imagem e texto */
.sobre-img, 
.vantagens-img, 
.sobre-texto, 
.vantagens-texto {
  flex: 1 1 50%; /* 🔥 Cada um ocupa metade */
  max-width: 50%;
}

/* Imagens ajustadas */
.sobre-img img, 
.vantagens-img img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* Texto */
.sobre-texto h2, 
.vantagens-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.sobre-texto p, 
.vantagens-texto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sobre-texto ul li, 
.vantagens-texto ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* PLANOS */
.planos {
  text-align: center;
  padding: 80px 0;
}
.planos h2 {
  margin-bottom: 30px;
}
.planos .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.card {
  background: #FFC107;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.3s;
  color: #000;
}
.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.card:hover {
  transform: translateY(-5px);
}

/* Ícones dos planos */
.card i {
  font-size: 50px; /* Tamanho do ícone */
  color: #000;
  margin-bottom: 15px;
  transition: transform 0.3s, color 0.3s;
}

.card:hover i {
  transform: scale(1.2);
  color: #000; /* Cor muda no hover */
}


/* SIMULAÇÃO */
.simulacao {
  padding: 80px 10%;
  background: #f9f9f9;
  text-align: center;
}

.simulacao h2 {
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-grid input,
.form-grid select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.simulacao .btn {
  width: 100%;
  max-width: 250px;
}

/* CONTATO */
.contato {
  text-align: center;
  padding: 60px 0;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  padding: 50px 10% 20px;
  font-size: 0.85rem; 
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 75px;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #FFC107;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #FFC107;
}

.footer-col p {
  margin: 5px 0;
  font-size: 0.85rem;
}

.social a img {
  width: 28px;
  margin: 10px 8px 0 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* 🔥 Botão menor */
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp img {
  width: 36px; /* 🔥 Ícone reduzido */
  height: 36px;
}



/* RESPONSIVO */
.menu-mobile {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

@media(max-width: 768px) {
  header nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 200px;
    display: none;
    flex-direction: column;
    border: 1px solid #ddd;
  }
  header nav.active {
    display: flex;
  }
  header nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .btn-simule {
    display: none; /* some no mobile */
}
  .menu-mobile {
    display: block;
  }
  .sobre-container, 
  .vantagens-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-img, 
  .vantagens-img, 
  .sobre-texto, 
  .vantagens-texto {
    max-width: 100%;
  }

  .sobre-img img, 
  .vantagens-img img {
    max-height: 300px;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 400px; /* Altura menor para mobile */
  }
}
