/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1B3A6B;
  --orange:  #E8621A;
  --light:   #F0EEE9;
  --white:   #ffffff;
  --gray:    #6b7280;
  --border:  #d1d5db;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--blue);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: #c9521a; border-color: #c9521a; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

.btn-nav {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
}

/* =========================================
   SECTION SHARED
   ========================================= */
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.logo-pick { color: var(--blue); font-family: 'Playfair Display', serif; font-style: italic; }
.logo-club { color: var(--orange); font-family: 'Playfair Display', serif; font-style: italic; }

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--blue);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  padding: 0.5rem 0;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn-orange { margin-top: 0.5rem; text-align: center; }
.mobile-menu.open { display: flex; }

/* =========================================
   HERO
   ========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--light);
  overflow: hidden;
  padding: 7rem 1.5rem 5rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(232,98,26,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 80%, rgba(27,58,107,0.10) 0%, transparent 60%),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 80px,
      rgba(27,58,107,0.04) 80px,
      rgba(27,58,107,0.04) 81px
    );
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* TEXT SIDE */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero-logo-block {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.hero-logo-pick {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.hero-logo-club {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--orange);
  margin-top: -0.15em;
}

.hero-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.85;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 460px;
  line-height: 1.6;
  margin-top: 0.25rem;
}

.hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27,58,107,0.15);
  width: 100%;
}

.hero-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* IMAGE SIDE */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(27,58,107,0.45),
    0 18px 36px -12px rgba(232,98,26,0.18);
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
}
.hero-image-wrap:hover { transform: rotate(0deg) scale(1.02); }

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27,58,107,0) 50%, rgba(27,58,107,0.35) 100%),
    linear-gradient(135deg, rgba(232,98,26,0.18) 0%, transparent 45%);
  pointer-events: none;
}

/* Decorative circle behind image */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 75%;
  height: 75%;
  border: 2px dashed rgba(232,98,26,0.45);
  border-radius: 50%;
  top: -8%;
  right: -10%;
  z-index: -1;
  animation: spin 30s linear infinite;
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: 55%;
  height: 55%;
  background: var(--orange);
  border-radius: 50%;
  bottom: -8%;
  left: -8%;
  z-index: -1;
  opacity: 0.12;
  filter: blur(6px);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(27,58,107,0.18);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-badge-top {
  top: 6%;
  left: -8%;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0.7rem 1rem;
}
.hero-badge-top .badge-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
}
.hero-badge-top .badge-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.hero-badge-bottom {
  bottom: 8%;
  right: -6%;
  animation-delay: 1.5s;
}
.hero-badge-bottom svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
  flex-shrink: 0;
}
.hero-badge-bottom strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-badge-bottom span {
  font-size: 0.72rem;
  color: var(--gray);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--blue);
  opacity: 0.4;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* HERO RESPONSIVE */
@media (max-width: 900px) {
  #hero { padding: 6rem 1.5rem 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { align-items: center; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 460px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero-badge-top  { left: -4%; }
  .hero-badge-bottom { right: -2%; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; }
  .stat-num { font-size: 1.3rem; }
  .hero-badge-top { left: 4%; padding: 0.55rem 0.8rem; }
  .hero-badge-top .badge-num { font-size: 1.2rem; }
  .hero-badge-bottom { right: 4%; padding: 0.65rem 0.85rem; }
  .hero-badge-bottom svg { width: 26px; height: 26px; }
  .hero-badge-bottom strong { font-size: 0.72rem; }
  .hero-badge-bottom span { font-size: 0.65rem; }
}

/* =========================================
   ABOUT
   ========================================= */
#about { background: var(--white); }

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.about-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 14px;
  background: var(--white);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.about-icon svg { width: 28px; height: 28px; }
.about-card:hover .about-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.about-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-card p { font-size: 0.9rem; color: var(--gray); }

/* =========================================
   DIVIDER BANNER
   ========================================= */
.divider-banner {
  background: var(--blue);
  color: var(--white);
  padding: 1rem 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-group > span {
  margin-right: 2.5rem;
}

.divider-sep {
  color: var(--orange);
  font-size: 1.2em;
  line-height: 1;
}

.divider-banner:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-track { animation-duration: 22s; }
  .marquee-group > span { margin-right: 1.75rem; }
}

/* =========================================
   PRICING
   ========================================= */
#pricing { background: var(--light); }

.pricing-category {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}
.pricing-category::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.pricing-header-row {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
}
.ph-empty { }
.ph-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.pricing-table { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }

.pricing-row {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.pricing-freq {
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  line-height: 1.3;
}

.pricing-cell {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-cell.highlight {
  border-color: rgba(27,58,107,0.3);
}
.pricing-cell.best {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
}

.price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
}
.price-cents {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}

.best-badge {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.25rem;
}

/* AVULSA */
.avulsa-block {
  margin: 2rem auto 0;
  max-width: 340px;
}
.avulsa-inner {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.avulsa-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.avulsa-price {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.avulsa-cents { font-size: 1.2rem; }
.avulsa-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
}
.pricing-cta p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* =========================================
   CONVÊNIOS
   ========================================= */
#convenios { background: var(--white); }

.convenios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.convenio-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.convenio-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }

.convenio-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.convenio-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.convenio-info .ex-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
}

.convenio-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.25rem;
}
.convenio-info p { font-size: 0.9rem; color: var(--gray); }
.convenio-info strong { color: var(--orange); }

.convenios-note {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  font-style: italic;
}

/* =========================================
   LOCATION
   ========================================= */
#location { background: var(--light); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 1.5rem; }

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.loc-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--white);
  color: var(--orange);
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-icon svg { width: 22px; height: 22px; }
.location-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); margin-bottom: 0.2rem; }
.location-item p { font-size: 0.9rem; color: var(--gray); }

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.location-map iframe { display: block; width: 100%; height: 100%; }

/* =========================================
   GALLERY
   ========================================= */
#gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  background: var(--light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,58,107,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-large { grid-column: span 2; grid-row: span 1; grid-auto-rows: 220px; }
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wppPulse 2.5s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue);
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--blue);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 36px; height: 36px; }
  .whatsapp-tooltip { display: none; }
}

/* =========================================
   CONTACT / CTA FINAL
   ========================================= */
#contact { padding: 0; }

.cta-final {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 6rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
}

.cta-sub {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 480px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #0f2240;
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.5rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-pick { font-size: 1.3rem; }
.footer-brand .logo-club { font-size: 1.3rem; }
.footer-brand p { font-size: 0.75rem; margin-top: 0.5rem; letter-spacing: 0.08em; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-social a, .footer-social p {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-social a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.gallery-item {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 33, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 4rem 3rem;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lb-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.3s ease;
  user-select: none;
}
.lightbox.open .lb-image { transform: scale(1); }

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.lb-close svg,
.lb-prev svg,
.lb-next svg { width: 22px; height: 22px; }

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}

.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}

@media (max-width: 600px) {
  .lightbox { padding: 3.5rem 1rem; }
  .lb-close { top: 0.75rem; right: 0.75rem; width: 42px; height: 42px; }
  .lb-prev  { left: 0.5rem; width: 42px; height: 42px; }
  .lb-next  { right: 0.5rem; width: 42px; height: 42px; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }

  .pricing-header-row,
  .pricing-row {
    grid-template-columns: 120px repeat(3, 1fr);
    gap: 0.4rem;
  }
  .pricing-freq { font-size: 0.7rem; padding: 0.75rem 0.4rem; }
  .price { font-size: 1.1rem; }
  .pricing-cell { padding: 0.9rem 0.4rem; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .pricing-header-row,
  .pricing-row {
    grid-template-columns: 90px repeat(3, 1fr);
    gap: 0.3rem;
  }
  .ph-label { font-size: 0.65rem; letter-spacing: 0.04em; }
  .pricing-freq { font-size: 0.62rem; padding: 0.6rem 0.3rem; }
  .price { font-size: 0.95rem; }
  .price-cents { font-size: 0.75rem; }
  .best-badge { font-size: 0.5rem; }
}
