/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   GLOBAL
========================= */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

p {
  color: #ccc;
}

/* =========================
   HEADER
========================= */
header {
  background: #000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00ff66;
}

header img {
  height: 60px;
}

nav a {
  color: #00ff66;
  margin-left: 25px;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  text-shadow: 0 0 10px #00ff66;
}

/* =========================

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #00ff66;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  box-shadow: 0 0 20px #00ff66;
  transform: scale(1.05);
}

/* =========================
   SECTIONS
========================= */
section {
  padding: 80px 40px;
  text-align: center;
}

section h2 {
  font-size: 2.8rem;
  color: #00ff66;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #00ff66;
}

/* =========================
   CARDS
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: #0a0a0a;
  border: 2px solid #00ff66;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  text-align: left;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #00ff66;
}

.card h3 {
  color: #00ff66;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
}

/* =========================
   PRICES
========================= */
.prices {
  font-size: 1.6rem;
  color: #00ff66;
  font-weight: bold;
  margin-top: 15px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #000;
  padding: 40px;
  text-align: center;
  border-top: 2px solid #00ff66;
}

footer p {
  color: #777;
  font-size: 0.9rem;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00ff66;
  color: #000;
  padding: 15px 22px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 20px #00ff66;
  z-index: 999;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 20px;
  }
}

.hero {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

  display: flex;
  align-items: flex-end;   /* ⬅️ joga conteúdo para baixo */
  justify-content: center;

  padding: 100px 40px;      /* espaço inferior confortável */
  text-align: center;
}


/* Overlay escuro */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Conteúdo acima do overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}


/* TÍTULO */
.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  text-shadow:
    0 0 5px #000,
    0 0 10px #000,
    0 0 20px #000;
}

/* SUBTÍTULO */
.hero-subtitle {
  font-size: 1.4rem;
  margin: 20px 0 30px;
  color: #f1f1f1;
  text-shadow:
    0 0 5px #000,
    0 0 10px #000;
}

/* =========================
   HERO CAROUSEL
========================= */
.hero-carousel {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1s ease-in-out;

  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 40px;
  text-align: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Conteúdo */
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
  text-shadow:
    0 0 5px #000,
    0 0 10px #000,
    0 0 20px #000;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin: 20px 0 30px;
  color: #f1f1f1;
  text-shadow: 0 0 10px #000;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

/* =========================
   SOBRE COM IMAGEM
========================= */
.sobre-section {
  background: #000;
}

.sobre-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sobre-imagem img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.2);
}

.sobre-texto h2 {
  text-align: left;
}

.sobre-texto p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .sobre-container {
    grid-template-columns: 1fr;
  }

  .sobre-texto h2 {
    text-align: center;
  }

  .sobre-texto {
    text-align: center;
  }
}


/* =========================
   PLANOS
========================= */
.planos-section {
  background: linear-gradient(to bottom, #000, #050505);
}

.planos-descricao {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #ccc;
  font-size: 1.05rem;
}

.planos-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.plano-card {
  background: #0a0a0a;
  border: 2px solid #222;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.plano-card:hover {
  transform: translateY(-10px);
  border-color: #00ff66;
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.25);
}

/* DESTAQUE */
.plano-destaque {
  border-color: #00ff66;
  transform: scale(1.05);
}

.plano-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ff66;
  color: #000;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

/* TEXTO */
.plano-card h3 {
  color: #00ff66;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.plano-preco {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 15px 0;
  color: #fff;
}

.plano-texto {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 25px;
}

/* BENEFÍCIOS */
.plano-beneficios {
  list-style: none;
  margin-bottom: 30px;
}

.plano-beneficios li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* BOTÃO */
.plano-btn {
  display: inline-block;
  width: 100%;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .plano-destaque {
    transform: none;
  }
}
