/* ===============================
   HERO
   =============================== */

   html, body {
  overflow-x: hidden;
}


.hero {
  min-height: 130vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.85)
    ),
    url('../../images/socios.jpg') center/cover no-repeat;
}

.hero__content {
  max-width: 100%;
}

.hero__content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero__content h1 span {
  color: var(--color-gold);
}

.hero__content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ===============================
   SOBRE
   =============================== */

.about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.about img {
  width: 100%;
  border: 2px solid var(--color-gold);
  border-radius: 15px;
}

.about__content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about__content p {
  margin-bottom: 1.2rem;
}

/* ===============================
   MODALIDADES
   =============================== */

.modalidades__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.modalidade {
  padding: 2.5rem;
  border: 1px solid var(--color-gold);
  background: var(--color-black-light);
  text-align: center;
  border-radius: 15px;
}

.modalidade img {
  width: 100px;
  margin: 0 auto 1.2rem;
}

.modalidade h4 {
  margin-bottom: 0.8rem;
}

/* Botão Aula Experimental */
.aula-experimental {
  margin-top: 40px;
  grid-column: 1 / -1; /* ocupa todas as colunas */
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.aula-experimental a {
  display: inline-block;
  padding: 14px 42px;
  border: 2px solid #d4af37;
  border-radius: 999px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.aula-experimental a:hover {
  background: #d4af37;
  color: #000;
}

/* ===============================
   CAROUSEL - EQUIPE
================================ */

.carousel {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.carousel__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.partner {
  min-width: 320px;
  background: #0f0f0f;
  border: 1px solid var(--color-gold);
}

.partner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.partner__info {
  padding: 1.5rem;
}

.partner__info h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.partner__info span {
  color: var(--color-gold);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

.partner__info p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* BOTÕES .carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-gold);
  border: none;
  color: #000;
  font-size: 1.5rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  z-index: 10;
}

.carousel__btn.prev {
  left: 10px;
}

.carousel__btn.next {
  right: 10px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .partner {
    min-width: 85%;
  }
}
*/



/* ===============================
   GALERIA – SEM SCROLL LATERAL
================================ */

.gallery-carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  width: fit-content;
  animation: scrollGallery 35s linear infinite;
}

.gallery-track img {
  width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

/* PAUSA NO HOVER */
.gallery-carousel:hover .gallery-track {
  animation-play-state: paused;
}

/* ANIMAÇÃO CONTROLADA */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .gallery-track img {
    width: 220px;
    height: 160px;
  }
}

@media (max-width: 500px) {
  .gallery-track img {
    width: 180px;
    height: 130px;
  }
}

/* ===============================
   CONTATO
   =============================== */

.contact {
  max-width: 600px;
  margin: 0 auto;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__form input,
.contact__form textarea {
  padding: 0.9rem;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-white);
}

.contact__form textarea {
  resize: none;
  min-height: 140px;
}

/* ===============================
   WHATSAPP FLOAT BUTTON
================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0.6);
  animation: pulseWhats 2s infinite;
  z-index: 999;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* ANIMAÇÃO */
@keyframes pulseWhats {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}


/* ===============================
   RESPONSIVO
   =============================== */

@media (max-width: 768px) {
  .hero__content h1 {
    font-size: 2.3rem;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .modalidades__grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .about__content h3 {
    font-size: 1.5rem;
  }

  .modalidade {
    padding: 1.8rem;
  }

  .partner__info h3 {
    font-size: 1.2rem;
  }

  .contact__form {
    gap: 0.9rem;
  } }


/* ===============================
   FAQ
================================ */

.faq-section {
  background: #000;
  padding: 100px 20px;
  grid-column: 1 / -1;
}

/* TÍTULO */
.faq-title {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

/* CONTAINER */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ */
.faq {
  width: 100%;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #caa72c;
}

/* PERGUNTA */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;

  color: #fff;
  font-size: 18px;
  font-weight: 500;

  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;
}

.faq-question span {
  color: #caa72c;
  font-size: 26px;
}

/* RESPOSTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #ccc;
  line-height: 1.6;
}

/* ABERTO */
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .faq-title h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }
}


 /* ===============================
   Planos
================================ */

.planos {
  padding: 80px 5%;
  background: #000;
  text-align: center;
}

.planos h2 {
  font-size: 3rem;
  margin-bottom: 60px;
  color: #fff;
}

/* Grid dos cards */
.planos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.plan-card {
  border: 2px solid #d4af37;
  border-radius: 28px;
  padding: 40px 30px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Título do plano */
.plan-card h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 20px;
}

/* Plano em destaque */
.plan-card.featured {
  border-color: #ffd700;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
  transform: scale(1.05);
  position: relative;
}

/* Selo */
.plan-card.featured::before {
  content: "Mais vantajoso";
  position: absolute;
  top: -14px;
  background: #d4af37;
  color: #000;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}


/* Wrapper do preço (ESSENCIAL) */
.plan-price-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* Preço */
.plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
}

/* Descrição */
.plan-desc {
  font-size: 1rem;
  color: #bfbfbf;
  margin-bottom: 30px;
}

/* Botão */
.plan-btn {
  background: #d4af37;
  color: #000;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.plan-btn:hover {
  background: #fff;
  color: #000;
}

/* Botão ver mais */
.planos-ver-mais {
  margin-top: 60px;
}

.planos-ver-mais a {
  display: inline-block;
  padding: 14px 42px;
  border: 2px solid #d4af37;
  border-radius: 999px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.planos-ver-mais a:hover {
  background: #d4af37;
  color: #000;
}

/* Hover geral dos cards */
.plan-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
}


/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .planos-container {
    grid-template-columns: 1fr;
  }
}

 /* ===============================
   FOOTER
================================ */

.footer {
  background: #0a0a0a;
  border-top: 2px solid var(--color-gold);
  width: 100%;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 4rem 0 3rem;
}

/* COLUNAS */
.footer__col h3 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer__col p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* MAPA */
.footer__map {
  border: 2px solid var(--color-gold);
  border-radius: 6px;
  overflow: hidden;
  height: 200px;
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) contrast(1.1);
}

/* HORÁRIOS */
.footer__hours {
  list-style: none;
  padding: 0;
}

.footer__hours li {
  display: flex;
  justify-content: space-between;
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer__hours strong {
  color: var(--color-gold);
}

/* RODAPÉ FINAL */
.footer__bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 1.5rem 0;
}

.footer__bottom p {
  color: #666;
  font-size: 0.85rem;
}


/* BOTTOM */
.footer__bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 1.5rem 0;
}

.footer__bottom p {
  color: #666;
  font-size: 0.85rem;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__hours li {
    justify-content: center;
    gap: 0.5rem;
  }
}


/* ===== BASE RESPONSIVA ===== */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

:root { --container: 1100px; }

.container{
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 20px;
}

/* ===== MOBILE FIRST ===== */
@media (max-width: 1024px){
  /* grids viram 1 coluna */
  .grid, .two-col, .three-col {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}

@media (max-width: 768px){
  /* títulos e espaçamentos */
  h1{ font-size: 32px !important; line-height: 1.1; }
  h2{ font-size: 26px !important; }
  section{ padding: 64px 16px !important; }

  /* menu vira hambúrguer (se você tiver) */
  .nav-links{ display: none !important; }
  .nav-toggle{ display: inline-flex !important; }

  /* cards e listas ocupam largura */
  .card, .faq, .form, .gallery { width: 100% !important; }

  /* equipe/carrossel: 1 card por vez */
  .team-card{ width: min(92vw, 360px) !important; }
}

@media (max-width: 480px){
  h1{ font-size: 28px !important; }
  .btn{ width: 100% !important; }
}


/* ===============================
   GALERIA – IMAGENS MAIORES NO MOBILE
================================ */

@media (max-width: 768px) {
  .gallery-carousel {
    margin-top: 2rem;
  }

  .gallery-track {
    gap: 16px;
    padding: 0 16px; /* dá respiro nas laterais */
  }

  .gallery-track img {
    width: 85vw;      /* ocupa a maior parte da tela */
    max-width: 420px; /* evita ficar gigante em tablets */
    height: 55vw;     /* mantém proporção boa */
    max-height: 260px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .gallery-track img {
    width: 92vw;      /* quase full width */
    height: 62vw;
    max-height: 280px;
  }
}


/* ===============================
   EQUIPE – MOBILE EM LISTA (SEM CARROSSEL)
================================ */

@media (max-width: 768px) {

  /* some com as setas */
  .carousel__btn {
    display: none !important;
  }

  /* tira o comportamento de carrossel */
  .carousel {
    overflow: visible; /* mostra tudo */
  }

  /* track vira coluna */
  .carousel__track {
    transform: none !important;   /* ignora o translateX do JS */
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* cards ocupam a largura */
  .partner {
    min-width: 100% !important;
    width: 100%;
  }

  .partner img {
    height: auto;        /* não corta imagem */
    max-height: 520px;   /* limite pra não ficar gigante */
    object-fit: cover;
  }
}
