/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  min-height: 100vh;
  background: url('../../images/BG-Desk-Juni-do-Bac-bo.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* OVERLAY DESATIVADO */
.overlay {
  display: none;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1280px;
  padding: 60px 40px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =========================
   BOX DE CONTEÚDO
========================= */
.hero-box {
  max-width: 560px;
  background: rgba(0, 0, 0, 0.65);
border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  padding: 50px 42px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 45px rgba(255, 255, 255, 0.25), /* SHADOW BRANCO */
    inset 0 0 0 rgba(255,255,255,0.05);
  text-align: center;
}

/* LOGO */
.logo {
  max-width: 260px;
  display: block;
  margin: 0 auto 28px;
  content: url('../../images/Logo-Juni-do-Aviator-1024x378-2.png');
}

/* TAGLINE */
.tagline {
  display: block;
  color: #0a3da9; /* AZUL */
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* TÍTULO */
.hero-box h1 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero-box h1 span {
  color: #0a3da9; /* AZUL */
}

/* TEXTO */
.hero-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #e4e4e4;
  margin-bottom: 42px;
}

/* =========================
   BOTÃO PULSANTE WHATSAPP
========================= */
.btn-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 340px;
  padding: 24px 48px;
  background: linear-gradient(135deg, #00ff8c, #00c96b);
  color: #000;
  font-weight: 900;
  font-size: 18px;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: 0.6px;
  position: relative;
  animation: pulse 1.6s infinite;
  box-shadow: 0 0 30px rgba(0, 255, 140, 0.8);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ÍCONE WHATSAPP */
.btn-pulse i {
  font-size: 28px;
  line-height: 1;
}

/* HOVER */
.btn-pulse:hover {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(0, 255, 140, 1);
}

/* ANIMAÇÃO PULSE */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0,255,140,0.7);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 45px rgba(0,255,140,1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0,255,140,0.7);
  }
}

/* =========================
   ANIMAÇÃO DE ENTRADA
========================= */
.animate-left {
  opacity: 0;
  transform: translateX(-120vw);
  transition:
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}

.animate-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 992px) {
  .hero {
    align-items: flex-start;
  }

  .container {
    padding-top: 80px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero {
    background-image: url('../../images/BG-Mobile-Juni-do-bacbo-scaled.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
  }

  .hero-box {
    max-width: 100%;
    padding: 36px 26px;
    margin-top: 220px;
  }

  .logo {
    max-width: 180px;
  }

  .hero-box h1 {
    font-size: 26px;
  }

  .hero-box p {
    font-size: 15px;
  }

  .btn-pulse {
    width: 100%;
    max-width: 360px;
    min-width: unset;
    font-size: 17px;
    padding: 22px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-box {
    padding: 30px 22px;
    margin-top: 200px;
  }

  .hero-box h1 {
    font-size: 24px;
  }
}
