/* =====================================================
   RESET GLOBAL
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* =====================================================
   SOBRE
===================================================== */
.sobre-texto {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 2.6vw, 1.08rem);
  line-height: 1.7;
  opacity: 0.96;
  text-align: center;
}

.video-sobre {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  margin: 18px auto 28px;
  display: block;
  object-fit: cover;

  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

/* =====================================================
   ESTRUTURA
===================================================== */
.video-estrutura {
  width: 100%;
  max-width: 380PX;
  aspect-ratio: 9 / 16;
  margin: 22px auto 32px;
  display: block;
  object-fit: cover;

  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   PLANOS
===================================================== */
.img-planos {
  width: 100%;
  max-width: 420px;
  margin: 28px auto 42px;
  display: block;
  object-fit: cover;

  border-radius: 26px;
  border: 2px solid rgba(255, 212, 0, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);

  /* animação */
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    box-shadow 0.35s ease;
}

.img-planos.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =====================================================
   RESPONSIVO (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .sobre-texto {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .video-sobre {
    max-width: 90%;
    margin-bottom: 22px;
  }

  .video-estrutura {
    max-width: 95%;
    margin-bottom: 26px;
  }

  .img-planos {
    max-width: 92%;
    margin-bottom: 32px;
    border-radius: 22px;
  }
}

/* ALTERAÇÕES ATÉ AQUI!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* ================= CARDS ================= */

/* =====================================================
   LAYOUT BASE
===================================================== */
body {
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
  padding-top: 90px;
  padding-bottom: 120px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================================================
   CARDS (INTERAÇÃO)
===================================================== */
.card-click {
  position: relative;
  overflow: hidden;
  cursor: pointer;

  border-radius: 22px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.card-click:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   SELO PREMIUM
===================================================== */
.selo-premium {
  position: absolute;
  top: 20px;
  right: -46px;

  padding: 7px 52px;

  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #ffd400;

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.1px;

  transform: rotate(45deg);

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

/* =====================================================
   PREÇOS
===================================================== */
.preco {
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  font-weight: 700;
}

.preco-destaque {
  font-size: clamp(1.8rem, 4.6vw, 2.1rem);
  font-weight: 800;
  margin: 18px 0 26px;
  letter-spacing: 0.5px;

  animation: pulsePreco 2s infinite ease-in-out;
}

/* animação suave */
@keyframes pulsePreco {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* =====================================================
   RESPONSIVO (MOBILE)
===================================================== */
@media (max-width: 768px) {

  body {
    padding-top: 80px;
    padding-bottom: 110px;
  }

  .card-click {
    border-radius: 18px;
  }

  /* remove exagero de hover no mobile */
  .card-click:hover {
    transform: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  }

  .selo-premium {
    top: 14px;
    right: -52px;
    font-size: 0.7rem;
    padding: 6px 48px;
  }

  .preco {
    font-size: 1.4rem;
  }

  .preco-destaque {
    font-size: 1.8rem;
    margin-bottom: 22px;
  }
}

/* ALTERAÇÕES ATÉ AQUI!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  width: 70px;
}

/* MENU DESKTOP */
.menu a {
  margin-left: 28px;
  color: #ffd400;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffd400;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* =====================================================
   MENU MOBILE
===================================================== */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn div {
  width: 26px;
  height: 3px;
  background: #ffd400;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 78px;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  z-index: 999;

  background: #000;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;

  color: #ffd400;
  font-weight: 600;
  text-decoration: none;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
}

.hero-content p {
  margin: 15px 0 30px;
  font-size: clamp(1rem, 3vw, 1.1rem);
  opacity: 0.9;
}

.foto-grupo {
  width: 100%;
  max-width: 320px;
  margin-bottom: 25px;
     transform: translateY(-20px);

  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   SEÇÕES
===================================================== */
section {
  padding: 90px 0;
}

h2 {
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.4rem);
  margin-bottom: 30px;
}

/* =====================================================
   RESPONSIVO (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .menu {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero {
    padding-top: 40px;
  }

  section {
    padding: 60px 0;
  }

  .logo {
    width: 60px;
  }
}

/*  ALTERAÇÕES ATÉ AQUI!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* ================= CARDS ================= */
/* =====================================================
   CARDS (GRID)
===================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* =====================================================
   CARD BASE
===================================================== */
.card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  padding: 35px;
  text-align: center;

  border-radius: 18px;
  border: 1px solid rgba(255, 212, 0, 0.3);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* CARD DESTAQUE */
.card.destaque {
  background: #ffd400;
  color: #000;
}

/* =====================================================
   BOTÕES
===================================================== */
.btn-primary,
.btn-whatsapp {
  display: inline-block;
  padding: 14px 32px;

  background: #ffd400;
  color: #000;

  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

/* =====================================================
   RADIO PLAYER
===================================================== */
#radioPlayer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 20px;

  background: #0b0b0b;
  border-top: 3px solid #1db954;
}

#radioLogo {
  width: 45px;
  border-radius: 8px;
}

.radio-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BOTÃO PLAY */
#btnPlay {
  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: none;

  background: #1db954;
  color: #000;

  font-size: 18px;
  cursor: pointer;

  transition: transform 0.25s ease;
}

#btnPlay:hover {
  transform: scale(1.1);
}

/* =====================================================
   RESPONSIVO (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .cards {
    gap: 20px;
  }

  .card {
    padding: 28px;
  }

  /* remove exagero de hover no mobile */
  .card:hover {
    transform: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  .btn-primary,
  .btn-whatsapp {
    padding: 14px 26px;
    font-size: 0.95rem;
  }

  #radioPlayer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  #btnPlay {
    width: 52px;
    height: 52px;
  }
}

/* ALTERAÇÕES FEITAS ATÉ AQUI!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* ================= LOCALIZAÇÃO E HORÁRIOS ================= */

/* =====================================================
   LOCALIZAÇÃO & HORÁRIOS
===================================================== */
.localizacao {
  background: linear-gradient(180deg, #0f0f0f, #141414);
  padding: 60px 20px;
  color: #ccc;
}

/* container principal */
.localizacao-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* colunas */
.localizacao-col {
  flex: 1;
  min-width: 280px;
}

/* títulos */
.localizacao-titulo {
  margin-bottom: 14px;

  color: #fffb00;
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  letter-spacing: 0.5px;
}

/* endereço */
.localizacao-endereco {
  margin-bottom: 14px;

  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* link mapa */
.localizacao-link {
  display: inline-block;
  margin-bottom: 18px;

  color: #fbff00;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;

  transition: opacity 0.3s ease;
}

.localizacao-link:hover {
  opacity: 0.85;
}

/* mapa */
.localizacao-mapa {
  width: 100%;
  height: 240px;

  border: 0;
  border-radius: 16px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* horários */
.localizacao-horarios {
  margin-bottom: 16px;

  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* imagem horários */
.localizacao-img {
  width: 100%;
  max-width: 200px;
  margin-top: 10px;
  display: block;

  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
}

/* =====================================================
   ANIMAÇÕES (REVEAL)
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.ativo {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVO (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .localizacao {
    padding: 50px 16px;
  }

  .localizacao-container {
    gap: 30px;
  }

  .localizacao-col {
    text-align: center;
  }

  .localizacao-link {
    margin-bottom: 22px;
  }

  .localizacao-mapa {
    height: 220px;
  }

  .localizacao-img {
    margin: 14px auto 0;
  }

  .reveal {
    transform: translateY(30px);
  }
}

/* ALTERAÇÕES FEITAS ATÉ AQUI!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* CONTATOS */
/* ================= CONTATO (ÍCONES) ================= */
/* =====================================================
   CONTATO
===================================================== */
.contato {
  text-align: center;
}

/* container dos ícones */
.contato-itens {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* item individual */
.contato-item {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 15px 26px;
  border-radius: 35px;

  background: linear-gradient(145deg, #111, #0a0a0a);
  color: #fff;
  font-weight: 600;
  text-decoration: none;

  border: 1px solid rgba(255, 255, 255, 0.12);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* efeito de brilho */
.contato-item::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 212, 0, 0.25),
    transparent
  );

  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contato-item:hover::before {
  transform: translateX(100%);
}

/* ícone */
.contato-item img {
  width: 30px;
  height: 30px;
  transition: transform 0.35s ease;
}

/* texto */
.contato-item span {
  transition: letter-spacing 0.35s ease;
}

/* hover desktop */
.contato-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.contato-item:hover img {
  transform: rotate(-8deg) scale(1.15);
}

.contato-item:hover span {
  letter-spacing: 0.5px;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  text-align: center;
}

/* =====================================================
   CARD PREMIUM (DESTAQUE)
===================================================== */
.card-premium {
  position: relative;

  animation: premiumPulse 3s infinite ease-in-out;

  box-shadow:
    0 0 0 rgba(255, 212, 0, 0),
    0 25px 60px rgba(0, 0, 0, 0.6);
}

/* brilho passando */
.card-premium::before {
  content: "";
  position: absolute;
  inset: -2px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 212, 0, 0.45),
    transparent
  );

  transform: translateX(-100%);
  animation: premiumShine 2.8s infinite;

  pointer-events: none;
}

/* borda viva */
.card-premium::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 18px;
  box-shadow: 0 0 25px rgba(255, 212, 0, 0.45);
  opacity: 0.6;

  animation: premiumGlow 3s infinite;

  pointer-events: none;
}

/* =====================================================
   ANIMAÇÕES PREMIUM
===================================================== */
@keyframes premiumPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes premiumShine {
  0%   { transform: translateX(-120%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes premiumGlow {
  0%   { opacity: 0.3; }
  50%  { opacity: 0.8; }
  100% { opacity: 0.3; }
}

/* =====================================================
   RESPONSIVO (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .contato-itens {
    gap: 20px;
  }

  .contato-item {
    padding: 14px 22px;
    border-radius: 30px;
  }

  /* evita exagero de hover no mobile */
  .contato-item:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  }

  .contato-item img {
    width: 28px;
    height: 28px;
  }
}

/* ALTEREAÇÕES FEITAS ATÉ AQUI!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* =====================================================
   ANIMAÇÕES PREMIUM
===================================================== */

/* pulso suave do card */
@keyframes premiumPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

/* brilho passando */
@keyframes premiumShine {
  0% {
    transform: translateX(-120%);
  }

  60% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

/* glow da borda */
@keyframes premiumGlow {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.3;
  }
}

/* =====================================================
   ACESSIBILIDADE & PERFORMANCE
===================================================== */
@media (prefers-reduced-motion: reduce) {

  .card-premium {
    animation: none;
  }

  .card-premium::before,
  .card-premium::after {
    animation: none;
  }
}


