:root {
  --black: #151515;
  --black-soft: #202020;
  --yellow: #f4c400;
  --yellow-dark: #d9ad00;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-dark: #6f6f6f;
  --border: #e5e5e5;
  --green: #25d366;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--black-soft);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */

.header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border-bottom: 2px solid rgba(244, 196, 0, 0.75);
}

.header-content {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo img {
  width: 95px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--yellow);
}

.btn-header {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.btn-header:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-btn {
  width: 34px;
  height: 26px;
  border: 0;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  width: 100%;
  height: 4px;
  background: var(--yellow);
  border-radius: 10px;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.18)
    ),
    url("img/hero.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.tag,
.section-subtitle {
  display: inline-block;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.04;
  font-weight: 900;
  max-width: 760px;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: 1.02rem;
  font-weight: 600;
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Botões */

.btn-primary,
.btn-secondary,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 25px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--yellow);
}

.btn-dark:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.dark-text {
  color: var(--black);
  border-color: var(--black);
}

.dark-text:hover {
  background: var(--black);
  color: var(--white);
}

.btn-icon {
  gap: 9px;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Seções */

.section {
  padding: 92px 0;
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
}

.section-title h2,
.about h2,
.info-section h2,
.faq h2,
.final-cta h2 {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-title p {
  font-weight: 600;
  color: var(--gray-dark);
}

/* Sobre */

.about-grid,
.info-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--gray-dark);
  font-weight: 600;
}

.about-text strong {
  color: var(--black);
}

.about-text .btn-primary {
  margin-top: 10px;
}

.about-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Atividades */

.activities {
  background: var(--gray);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  padding: 0 0 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-image {
  width: 100%;
  height: 190px;
  overflow: hidden;
  margin-bottom: 24px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card h3 {
  color: var(--black);
  font-size: 1.22rem;
  font-weight: 900;
  margin-bottom: 10px;
  padding: 0 24px;
}

.card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 24px;
}

/* CTA amarela */

.cta-strip {
  background: var(--yellow);
  color: var(--black);
  padding: 80px 0;
  text-align: center;
}

.cta-strip-content {
  max-width: 850px;
}

.cta-strip h2 {
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.cta-strip p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-weight: 700;
}

/* Promoções */

.promos {
  background: var(--gray);
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.promo-card {
  background: var(--black);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  height: 430px;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.promo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Galeria */

.gallery {
  background: var(--white);
  padding-bottom: 70px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1120px, 92%);
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  transition: 0.35s;
}

.gallery-grid img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
}

/* CTA final */

.final-cta {
  background: var(--black);
  padding: 90px 0;
}

.final-cta-box {
  text-align: center;
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.final-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* FAQ */

.faq-grid {
  align-items: flex-start;
}

.faq p {
  color: var(--gray-dark);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 19px 0;
  color: var(--black);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.faq-question span {
  color: var(--yellow);
  font-size: 1.4rem;
  transition: 0.3s;
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
}

.faq-answer p {
  color: var(--gray-dark);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Localização */

.info-section {
  background: var(--gray);
}

.info-list {
  margin: 24px 0 30px;
}

.info-list p {
  margin-bottom: 12px;
  color: var(--gray-dark);
  font-weight: 600;
}

.info-list strong {
  color: var(--black);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 800;
  margin-bottom: 12px;
  transition: 0.3s;
  width: fit-content;
}

.contact-link svg {
  width: 23px;
  height: 23px;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

.contact-link:hover {
  color: var(--yellow-dark);
  transform: translateX(4px);
}

.info-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.map-box iframe {
  width: 100%;
  height: 410px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* WhatsApp fixo */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
  z-index: 998;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
}

/* Footer */

.footer {
  background: var(--black);
  padding: 58px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo img {
  width: 110px;
}

.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.copyright {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsivo tablet */

@media (max-width: 1024px) {
  .nav,
  .btn-header {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .nav.active {
    display: flex;
    position: absolute;
    left: 0;
    top: 62px;
    width: 100%;
    background: var(--black);
    padding: 26px 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-top: 1px solid rgba(244, 196, 0, 0.22);
  }

  .nav.active a {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0.58)
      ),
      url("img/hero.jpeg");
    background-size: cover;
    background-position: center;
  }

  .about-grid,
  .info-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promos-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .promo-card {
    height: 620px;
  }
}

/* Responsivo celular */

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .header-content {
    min-height: 58px;
  }

  .logo img {
    width: 82px;
  }

  .nav.active {
    top: 58px;
  }

  .hero {
    min-height: 620px;
    text-align: left;
    background-position: center;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    line-height: 1.05;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .tag,
  .section-subtitle {
    font-size: 0.68rem;
  }

  .hero-buttons,
  .info-buttons,
  .final-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-dark {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .section-title h2,
  .about h2,
  .info-section h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-image img {
    height: 310px;
  }

  .cards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 210px;
  }

  .gallery-grid {
    padding: 0;
  }

  .gallery-grid img {
    height: 260px;
  }

  .promos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .promo-card {
    height: 500px;
    border-radius: 14px;
  }

  .map-box iframe {
    height: 330px;
  }

  .cta-strip {
    padding: 64px 0;
  }

  .cta-strip h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .final-cta {
    padding: 70px 0;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }

  .contact-link {
    width: 100%;
  }

  .footer-content,
  .copyright {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    width: 95px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
}