* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --dark: #101010;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 218, 0, 0.32);
  --gold: #ffd400;
  --gold-strong: #ffea00;
  --gold-soft: rgba(255, 212, 0, 0.18);
  --text: #ffffff;
  --muted: #cfcfcf;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* HEADER */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 212, 0, 0.22);
}

.navbar {
  max-width: 1180px;
  margin: auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 92px;
  max-width: 280px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: #dddddd;
  font-weight: 700;
  transition: 0.3s;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 1px;
  font-size: 13px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 165px 20px 95px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("img/hero-golden.jpg") center 70px / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.74) 38%,
      rgba(0, 0, 0, 0.34) 68%,
      rgba(0, 0, 0, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.72) 100%
    );
  z-index: 1;
}

.hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 1px;
  font-size: 13px;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.04;
  margin-bottom: 24px;
  letter-spacing: -2px;
  max-width: 560px;
}

.hero-text {
  font-size: 19px;
  color: #dddddd;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BOTÕES */

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s;
  cursor: pointer;
}

.primary {
  background: var(--gold);
  color: #111111;
  box-shadow: 0 12px 28px rgba(255, 212, 0, 0.22);
}

.primary:hover {
  background: var(--gold-strong);
  transform: translateY(-3px);
}

.secondary {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

.secondary:hover {
  background: #ffffff;
  color: #111111;
}

/* BENEFÍCIOS */

.benefits {
  max-width: 1180px;
  margin: -45px auto 0;
  padding: 0 20px 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}

.benefit {
  padding: 28px;
  border-radius: 22px;
}

.benefit i {
  color: var(--gold);
  font-size: 30px;
  margin-bottom: 16px;
}

.benefit h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit p {
  color: var(--muted);
  line-height: 1.6;
}

/* SEÇÕES */

.section {
  padding: 85px 20px;
  max-width: 1180px;
  margin: auto;
}

.dark {
  max-width: 100%;
  background:
    radial-gradient(circle at center, rgba(255, 212, 0, 0.08), transparent 34%),
    var(--dark);
}

.dark .section-title,
.dark .plans-container,
.dark .gallery-carousel {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title p {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 42px;
  letter-spacing: -1px;
}

/* HORÁRIOS */

#horarios {
  margin-top: -62px;
}

.schedule-box {
  border-radius: 22px;
  overflow: hidden;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 26px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item span {
  color: #dddddd;
  font-size: 18px;
}

.schedule-item strong {
  color: var(--gold);
  font-size: 18px;
}

/* PLANOS */

.plans-container {
  max-width: 1180px;
  margin: auto;
}

.plans-highlight {
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.highlight-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.highlight-left i {
  font-size: 42px;
  color: var(--gold);
}

.highlight-left span,
.highlight-right span,
.highlight-right small {
  display: block;
  color: #dddddd;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.highlight-left strong {
  display: block;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
}

.highlight-right {
  text-align: center;
}

.highlight-right strong {
  display: block;
  font-size: 54px;
  color: var(--gold);
  line-height: 1;
}

/* PARCELAMENTO */

.installments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.installments div {
  border-radius: 18px;
  padding: 15px 18px;
  text-align: center;
  color: #dddddd;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 190px;
}

.installments strong {
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
}

/* CARROSSEL DOS PLANOS */

.plans-carousel {
  position: relative;
  width: 100%;
}

.pricing {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 24px 58px 28px;
  width: 100%;
}

.pricing::-webkit-scrollbar,
.gallery-track::-webkit-scrollbar {
  height: 8px;
}

.pricing::-webkit-scrollbar-track,
.gallery-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.pricing::-webkit-scrollbar-thumb,
.gallery-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.price-card {
  position: relative;
  padding: 26px 20px;
  border-radius: 24px;
  text-align: left;
  transition: 0.3s;
  min-height: 430px;
  min-width: 285px;
  flex: 0 0 285px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card:hover {
  transform: translateY(-8px);
  background: var(--card-strong);
  box-shadow: 0 20px 42px rgba(255, 212, 0, 0.10);
}

.price-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.14), rgba(255, 255, 255, 0.07));
}

.badge {
  position: absolute;
  top: -15px;
  left: 22px;
  background: var(--gold);
  color: #111111;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.price-card h3 {
  font-size: 21px;
  color: #ffffff;
  text-transform: uppercase;
}

.installment-price {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 2px;
}

.price {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.price-desc {
  display: block;
  color: #d6d6d6;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.plan-actions {
  width: 100%;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--gold);
  color: #111111;
  font-weight: 900;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  font-size: 14px;
}

.plan-btn:hover {
  background: var(--gold-strong);
  transform: translateY(-2px);
}

.plan-whatsapp {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 212, 0, 0.45);
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  transition: 0.3s;
}

.plan-whatsapp:hover {
  background: rgba(255, 212, 0, 0.12);
  color: var(--gold);
}

.payment-note-card {
  display: block;
  margin-top: 10px;
  color: #cfcfcf;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.payment-note {
  margin-top: 12px;
  color: #d0d0d0;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

/* SETAS */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: #111111;
  font-size: 19px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.carousel-btn:hover {
  background: var(--gold-strong);
  transform: translateY(-50%) scale(1.06);
}

.prev-btn,
.gallery-prev {
  left: 0;
}

.next-btn,
.gallery-next {
  right: 0;
}

/* BENEFÍCIOS DOS PLANOS */

.plans-benefits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plans-benefits div {
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.plans-benefits i {
  color: var(--gold);
  font-size: 24px;
}

.plans-benefits span {
  color: #dddddd;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
}

/* TOTALPASS */

.totalpass-section {
  max-width: 1180px;
}

.totalpass-card {
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 35px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.totalpass-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 212, 0, 0.10);
  border-radius: 50%;
  right: -80px;
  top: -80px;
}

.totalpass-content {
  position: relative;
  z-index: 2;
}

.totalpass-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.totalpass-content p {
  color: #dddddd;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 620px;
}

.totalpass-logo-box {
  position: relative;
  z-index: 2;
  height: 230px;
  border-radius: 28px;
  background: #28d17c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.25);
}

.totalpass-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* GALERIA */

.gallery-carousel {
  position: relative;
  max-width: 1180px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 24px 58px 30px;
}

.photo-card {
  min-width: 360px;
  flex: 0 0 360px;
  border-radius: 26px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: 0.3s;
}

.photo-card:hover {
  transform: translateY(-8px);
  background: var(--card-strong);
}

.photo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.photo-info {
  padding: 22px;
}

.photo-info h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
}

.photo-info p {
  color: #dddddd;
  line-height: 1.5;
}

/* AVALIAÇÕES */

.reviews-section {
  max-width: 1180px;
  margin-top: -38px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  border-radius: 24px;
  padding: 30px;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-6px);
  background: var(--card-strong);
  box-shadow: 0 20px 42px rgba(255, 212, 0, 0.10);
}

.review-stars {
  display: flex;
  gap: 6px;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 18px;
}

.review-card p {
  color: #dddddd;
  line-height: 1.7;
  font-size: 17px;
  margin-bottom: 22px;
}

.review-author strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 4px;
}

.review-author span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-action {
  text-align: center;
  margin-top: 32px;
}

/* LOCALIZAÇÃO */

#localizacao {
  margin-top: -75px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: stretch;
}

.location-info {
  padding: 35px;
  border-radius: 24px;
}

.location-info h3 {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 15px;
}

.location-info p {
  color: #dddddd;
  line-height: 1.7;
  margin-bottom: 25px;
}

.info-box {
  margin-bottom: 18px;
}

.info-box strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.info-box span {
  color: #cccccc;
}

.full {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.map {
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA */

.cta {
  text-align: center;
  padding: 85px 20px;
  background: var(--gold);
  color: #111111;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 25px;
  font-size: 18px;
}

.cta-btn {
  background: #111111;
  color: #ffffff;
}

.cta-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-3px);
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 24px 20px;
  background: #050505;
  color: #aaaaaa;
}

/* WHATSAPP FIXO */

.whatsapp-fixo {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-fixo:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* MODAL PAGAMENTO */

.payment-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}

.payment-modal.active {
  display: flex;
}

.payment-modal-content {
  position: relative;
  max-width: 430px;
  width: 100%;
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(255, 212, 0, 0.35);
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.16);
}

.modal-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 18px;
}

.payment-modal-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.payment-modal-content p {
  color: #dddddd;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* MODAL DAS FOTOS */

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  z-index: 4000;
}

.image-modal.active {
  display: flex;
}

.image-modal img {
  max-width: 92%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255, 212, 0, 0.35);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.65);
}

.image-modal p {
  margin-top: 14px;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}

.image-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: #111111;
  font-size: 22px;
  cursor: pointer;
  z-index: 4100;
}

.image-modal-close:hover {
  background: var(--gold-strong);
  transform: scale(1.05);
}

/* MODAL CONFIRMAR COMPROVANTE */

.confirm-comprovante-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 3500;
}

.confirm-comprovante-modal.active {
  display: flex;
}

.confirm-comprovante-box {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: rgba(20, 20, 20, 0.97);
  border: 1px solid rgba(255, 212, 0, 0.38);
  border-radius: 26px;
  padding: 36px 28px 30px;
  text-align: center;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
}

.confirm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
}

.confirm-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.confirm-icon {
  font-size: 46px;
  color: var(--gold);
  margin-bottom: 18px;
}

.confirm-comprovante-box h3 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 12px;
}

.confirm-comprovante-box p {
  color: #dddddd;
  line-height: 1.6;
  margin-bottom: 24px;
}

.confirm-comprovante-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirm-yes,
.confirm-no {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.confirm-yes {
  border: none;
  background: var(--gold);
  color: #111111;
}

.confirm-yes:hover {
  background: var(--gold-strong);
  transform: translateY(-2px);
}

.confirm-no {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 212, 0, 0.45);
}

.confirm-no:hover {
  background: rgba(255, 212, 0, 0.12);
  color: var(--gold);
}

.payment-method-note {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.money-text {
  color: #25d366;
  font-weight: 900;
}

/* RESPONSIVO */

@media (max-width: 950px) {
  .hero {
    min-height: 760px;
    padding: 145px 18px 70px;
    text-align: center;
    background: url("img/hero-golden.jpg") center 85px / cover no-repeat;
  }

  .hero::after {
    background:
      linear-gradient(
        rgba(0, 0, 0, 0.68),
        rgba(0, 0, 0, 0.88)
      );
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 44px;
  }

  .hero-text {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .benefits,
  .location-grid,
  .totalpass-card {
    grid-template-columns: 1fr;
  }

  .location-info,
  .totalpass-content {
    text-align: center;
  }

  .plans-highlight {
    flex-direction: column;
    text-align: center;
  }

  .highlight-left {
    flex-direction: column;
  }

  .plans-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    right: 18px;
    width: 230px;
    background: rgba(16, 16, 16, 0.96);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 212, 0, 0.18);
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 760px) {
  .navbar {
    padding: 6px 18px;
  }

  .logo img {
    height: 72px;
    max-width: 210px;
  }

  .hero {
    min-height: 720px;
    padding: 125px 18px 60px;
    background: url("img/hero-golden.jpg") 75% 95px / cover no-repeat;
  }

 
  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-top: 87px;
  }

  .hero-text {
    font-size: 17px;
    margin-top: -10px;
  }

  .section {
    padding: 70px 18px;
  }

  .section-title h2,
  .cta h2,
  .totalpass-content h2 {
    font-size: 31px;
  }

  .schedule-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .plans-highlight {
    padding: 22px;
  }

  .highlight-left strong {
    font-size: 36px;
  }

  .highlight-right strong {
    font-size: 42px;
  }

  .installments {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: visible;
    gap: 10px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    width: 100%;
  }

  .installments div {
    min-width: 150px;
    flex: 0 1 150px;
    font-size: 12px;
    padding: 14px 12px;
  }

  .installments strong {
    font-size: 22px;
  }

  .pricing,
  .gallery-track {
    padding-left: 44px;
    padding-right: 44px;
  }

  .price-card {
    min-width: 260px;
    flex: 0 0 260px;
    min-height: 440px;
  }

  .photo-card {
    min-width: 265px;
    flex: 0 0 265px;
  }

  .photo-card img {
    height: 210px;
  }

  .price {
    font-size: 29px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .totalpass-card {
    padding: 28px;
  }

  .totalpass-logo-box {
    height: 170px;
  }

  .payment-modal-content {
    padding: 32px 24px;
  }

  .whatsapp-fixo {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
    font-size: 31px;
  }

  .image-modal {
    padding: 16px;
  }

  .image-modal img {
    max-width: 96%;
    max-height: 78vh;
  }

  .image-modal-close {
    width: 40px;
    height: 40px;
    top: 16px;
    right: 16px;
    font-size: 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px;
  }

  .review-card p {
    font-size: 16px;
  }

  .confirm-comprovante-box {
    padding: 34px 22px 26px;
  }

  .confirm-comprovante-box h3 {
    font-size: 23px;
  }

  .confirm-comprovante-box p {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .price-card {
    min-width: 245px;
    flex: 0 0 245px;
  }

  .photo-card {
    min-width: 245px;
    flex: 0 0 245px;
  }

  .pricing,
  .gallery-track {
    padding-left: 40px;
    padding-right: 40px;
  }

  .logo img {
    height: 66px;
    max-width: 190px;
  }

  .installments div {
    min-width: 142px;
    flex: 0 1 142px;
  }

  .hero {
    background-position: 78% 105px;
  }

  
}

/* CORREÇÃO GALERIA - COMPATIBILIDADE IOS/ANDROID ANTIGO */

.gallery-carousel {
  position: relative;
  max-width: 1180px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 24px 58px 30px;
  -webkit-overflow-scrolling: touch;
}

.photo-card {
  min-width: 360px;
  width: 360px;
  flex: 0 0 360px;
  margin-right: 20px;
  border-radius: 26px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: 0.3s;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.photo-card:last-child {
  margin-right: 0;
}

.photo-card:hover {
  transform: translateY(-8px);
  background: var(--card-strong);
}

.photo-card img {
  width: 100%;
  height: 250px;
  min-height: 250px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  background: #111111;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.photo-info {
  padding: 22px;
}

.photo-info h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
}

.photo-info p {
  color: #dddddd;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .gallery-track {
    padding-left: 44px;
    padding-right: 44px;
  }

  .photo-card {
    min-width: 265px;
    width: 265px;
    flex: 0 0 265px;
    margin-right: 16px;
  }

  .photo-card img {
    height: 210px;
    min-height: 210px;
  }
}

@media (max-width: 390px) {
  .gallery-track {
    padding-left: 40px;
    padding-right: 40px;
  }

  .photo-card {
    min-width: 245px;
    width: 245px;
    flex: 0 0 245px;
    margin-right: 14px;
  }

  
}

@media (max-width: 760px) {
  .hero .tag {
    margin-bottom: 8px;
    transform: translateY(-100px);
  }
}

@media (max-width: 390px) {
  .hero .tag {
    transform: translateY(-65px);
  }
}

/* AVISO DE REAJUSTE DOS PLANOS */

.price-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 18px;
  text-align: center;
}

.price-notice i {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.price-notice p {
  color: #dddddd;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

.price-notice strong {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 760px) {
  .price-notice {
    flex-direction: column;
    padding: 16px;
    gap: 8px;
  }

  .price-notice p {
    font-size: 14px;
  }
}


.hero-title {
  margin-top: 18px;
  margin-bottom: 24px;
  max-width: 680px;
  line-height: 1;
}

.hero-title span {
  display: block;
}

.hero-title-gold {
  color: var(--gold);
  font-size: 74px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.92;
}

.hero-title-white {
  color: #ffffff;
  font-size: 74px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.92;
}

.hero-title-small {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 8px;
  max-width: 580px;
}

.hero-title-small + .hero-title-small {
  margin-top: 2px;
}

@media (max-width: 760px) {
  .hero-title {
    max-width: 100%;
    margin-bottom: 22px;
  }

  .hero-title-gold,
  .hero-title-white {
    font-size: 46px;
    letter-spacing: -1px;
    line-height: 0.95;
  }

  .hero-title-small {
    font-size: 20px;
    margin-top: 16px;
    line-height: 1.2;
  }
}

@media (max-width: 390px) {
  .hero-title-gold,
  .hero-title-white {
    font-size: 40px;
  }

  .hero-title-small {
    font-size: 18px;
  }
}

.hero-title-small-gold {
  color: var(--gold);
}

.hero-title-white + .hero-title-small {
  margin-top: 22px;
}

/* AJUSTE HERO MOBILE - DESCER TEXTO PRINCIPAL */

@media (max-width: 760px) {
  .hero .hero-title {
    margin-top: 225px !important;
  }

  .hero .tag {
    transform: translateY(-70px);
  }
}

@media (max-width: 390px) {
  .hero .hero-title {
    margin-top: 200px !important;
  }

  .hero .tag {
    transform: translateY(-25px);
  }
}

/* BOTÃO VOLTAR PARA VG PAGES */
.back-vg-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 5000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(7, 7, 7, .82);
  color: #ffffff;
  border: 1px solid rgba(255, 212, 0, .38);
  backdrop-filter: blur(14px);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .32);
  transition: .25s;
}

.back-vg-btn:hover {
  color: #111111;
  background: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .back-vg-btn {
    top: 12px;
    left: 12px;
    min-height: 40px;
    padding: 0 14px;
    font-size: .86rem;
  }
}

.back-vg-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 5000;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1597ff, #0069d9 55%, #093cff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(21, 151, 255, 0.32);
  transition: 0.3s;
}

.back-vg-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

@media (max-width: 640px) {
  .back-vg-btn {
    top: 12px;
    left: 12px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;

    
  }
}


.back-vg-btn:hover {
  background: linear-gradient(135deg, #5da8e6, #5a98d6 55%, #536bc9) !important;
  color: #fff !important;
  filter: brightness(1.12);
  transform: translateY(-2px);
}
