/* main.css — Redesign v3 — Ref: Relive Academy style */

/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --primary:     #0D1B2A;
  --teal:        #0E7490;
  --teal-dark:   #0C6780;
  --teal-light:  #E0F7FA;
  --blue:        #1B4F8A;
  --gold:        #F59E0B;
  --text:        #1A2B3C;
  --text-light:  #52667A;
  --bg-light:    #F8FAFC;
  --bg-section:  #EFF6FF;
  --white:       #FFFFFF;
  --border:      #DDE6EF;
  --shadow:      0 4px 32px rgba(13,27,42,0.09);
  --radius:      10px;
  --radius-lg:   16px;
  --max-width:   1100px;
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --section-pad: 96px;
  --gray-50:     #F8FAFB;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-700:    #374151;
  --gray-900:    #111827;
  /* Popup vars */
  --red:         #C0392B;
  --red-dark:    #A93226;
  --blue-light:  #2563EB;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.70;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Utility ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.text-center { text-align: center; }

/* ─── Icon System ────────────────────────────────────────────────────────── */
.icon-inline {
  display: inline-block;
  width: 17px;
  height: 17px;
  vertical-align: -3px;
  flex-shrink: 0;
  stroke: currentColor;
}

/* ─── Urgency Bar ────────────────────────────────────────────────────────── */
.urgency-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.88);
  text-align: center;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.urgency-bar strong { color: var(--gold); font-weight: 700; }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo-text {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  padding: 11px 24px !important;
  font-size: 13.5px !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 2px 12px rgba(14,116,144,0.30) !important;
}

/* ─── CTA Buttons ────────────────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 15.5px;
  font-weight: 700;
  padding: 17px 42px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(14,116,144,0.38);
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.btn-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(14,116,144,0.48);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta.large { font-size: 17px; padding: 20px 52px; }
.btn-cta.btn-gold {
  background: var(--gold);
  color: #1a1200;
  box-shadow: 0 4px 20px rgba(245,158,11,0.40);
}
.btn-cta.btn-gold:hover {
  background: #D97706;
  box-shadow: 0 7px 28px rgba(245,158,11,0.50);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.cta-subtext {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

/* ─── Section Label (like "Why Choose Us") ───────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  max-width: 56px;
  height: 1.5px;
  background: var(--teal);
  opacity: 0.35;
}

/* ─── Section Shared ─────────────────────────────────────────────────────── */
section { padding: var(--section-pad) 24px; }
section h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.22;
  margin-bottom: 14px;
  color: var(--primary);
}
section h2 em {
  font-style: normal;
  color: var(--teal);
}
.section-intro {
  color: var(--text-light);
  font-size: 17px;
  margin-bottom: 52px;
  line-height: 1.65;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Hero centrado ──────────────────────────────────────────────────────── */
#hero {
  background: var(--gray-50);
  padding: 84px 28px 92px;
  text-align: center;
}
.hero-centered {
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  background: rgba(14,116,144,0.10);
  border: 1px solid rgba(14,116,144,0.30);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-centered h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.13;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-centered h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-centered .subheadline {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.68;
  color: var(--gray-700);
  margin-bottom: 36px;
}

/* Avatar stack + social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}
.avatar-stack { display: flex; }
.av-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--av-bg, var(--teal));
  border: 2.5px solid var(--white);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  font-family: var(--font-sans);
}
.av-item:first-child { margin-left: 0; }
.social-proof-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
}
.social-proof-text strong { color: var(--text); }

/* Hero event badge + cta */
.hero-centered .event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 7px;
  padding: 11px 24px;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hero-centered .event-badge strong { color: var(--gray-900); }
.hero-centered .btn-cta { margin-bottom: 16px; }
.hero-centered .cta-subtext { justify-content: center; }

/* ─── Stats Strip ────────────────────────────────────────────────────────── */
#stats-strip {
  background: var(--primary);
  padding: 52px 24px;
}
#stats-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 16px 52px;
  border-right: 1px solid rgba(255,255,255,0.10);
  flex: 1;
  min-width: 160px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-num span { color: var(--gold); }
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 7px;
  font-weight: 500;
}

/* ─── Hook / Problema ────────────────────────────────────────────────────── */
#hook {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#hook .container { max-width: 660px; }
.hook-text {
  font-size: 18px;
  line-height: 1.82;
  color: var(--text);
}
.hook-text p { margin-bottom: 22px; }
.hook-text p:last-child { margin-bottom: 0; }
.hook-callout {
  background: var(--bg-section);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 36px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.65;
}

/* ─── Por que — 4 cards 2×2 ─────────────────────────────────────────────── */
#por-que {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
#por-que .section-intro { margin-bottom: 48px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.why-card:hover {
  box-shadow: 0 8px 32px rgba(14,116,144,0.10);
  transform: translateY(-3px);
  border-color: rgba(14,116,144,0.30);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ─── Conteúdo — Feature Cards 3×3 ──────────────────────────────────────── */
#conteudo {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin-bottom: 52px;
}
.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.feature-card:hover {
  box-shadow: 0 6px 24px rgba(14,116,144,0.10);
  border-color: rgba(14,116,144,0.30);
  transform: translateY(-2px);
  background: var(--white);
}
.feature-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card-body { flex: 1; }
.feature-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 7px;
  line-height: 1.35;
}
.feature-card-desc {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
}
.feature-card-desc em {
  font-style: normal;
  color: var(--teal);
  font-weight: 600;
}
.content-cta {
  text-align: center;
}

/* ─── Instrutores ────────────────────────────────────────────────────────── */
#instrutores {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.instructors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.instructor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(13,27,42,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.instructor-card:hover {
  box-shadow: 0 10px 40px rgba(13,27,42,0.12);
  transform: translateY(-3px);
}
.instructor-photo-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--teal-light) 0%, rgba(14,116,144,0.12) 100%);
}
.instructor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.instructor-avatar-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 88px;
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-serif);
  letter-spacing: -2px;
  opacity: 0.55;
}
.instructor-info { padding: 28px; }
.specialty-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
}
.instructor-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  margin-top: 4px;
}
.credential-list {
  list-style: none;
  padding: 0;
}
.credential-list li {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.credential-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.credential-list li:last-child { border-bottom: none; }

/* ─── Oferta — Pricing card ──────────────────────────────────────────────── */
#oferta {
  background: var(--primary);
  background-image: linear-gradient(155deg, #0D1B2A 0%, #0E2340 100%);
  color: var(--white);
}
#oferta .section-label { color: rgba(255,255,255,0.55); }
#oferta .section-label::before,
#oferta .section-label::after { background: rgba(255,255,255,0.3); }
#oferta h2 { color: var(--white); }
#oferta .section-intro { color: rgba(255,255,255,0.60); }

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.offer-list-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.offer-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 15.5px;
  line-height: 1.55;
}
.offer-item:first-child { padding-top: 0; }
.offer-item:last-child { border-bottom: none; padding-bottom: 0; }
.offer-check {
  color: #34D399;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 1px;
}

/* Pricing card */
.offer-price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: sticky;
  top: 84px;
}
.price-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-bottom: 10px;
}
.price-value {
  font-size: clamp(52px, 7vw, 72px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.price-currency {
  font-size: 28px;
  vertical-align: super;
  color: var(--teal);
  font-weight: 700;
}
.price-sub {
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.price-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-light);
}
.price-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── Urgência + Countdown ───────────────────────────────────────────────── */
#urgency {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.urgency-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
.countdown-box {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 52px;
  max-width: 420px;
}
.countdown-unit {
  flex: 1;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 12px;
  box-shadow: 0 4px 20px rgba(13,27,42,0.20);
}
.countdown-num {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.55;
  margin-top: 8px;
}
.urgency-body {
  font-size: 17px;
  line-height: 1.82;
  max-width: 620px;
  margin: 0 auto;
  color: var(--text);
}
.urgency-body p { margin-bottom: 18px; }
.urgency-body p:last-child { margin-bottom: 0; }
.urgency-body strong { color: var(--primary); font-weight: 700; }

/* ─── Social Proof / Testimonial ─────────────────────────────────────────── */
#social-proof {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.testimonial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
.quote-icon {
  width: 40px;
  height: 40px;
  fill: var(--teal);
  opacity: 0.18;
  margin-bottom: 20px;
  display: block;
}
.testimonial-quote blockquote p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-quote cite { font-style: normal; }
.testimonial-quote cite strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}
.testimonial-quote cite span {
  font-size: 13px;
  color: var(--text-light);
}
.testimonial-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.t-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}
.t-stat span { font-size: 13px; color: var(--text-light); }
.testimonial-visual { position: relative; }
.testimonial-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  background: var(--teal-light);
  display: block;
  box-shadow: 0 16px 48px rgba(13,27,42,0.14);
}
.testimonial-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13,27,42,0.90);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.testimonial-photo-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.testimonial-photo-badge span { font-size: 12px; opacity: 0.60; }

/* ─── CTA Banner Dark ────────────────────────────────────────────────────── */
#cta-banner {
  background: var(--primary);
  background-image: linear-gradient(135deg, #0D1B2A 0%, #0A2540 100%);
  padding: var(--section-pad) 28px;
  text-align: center;
}
.banner-centered {
  max-width: 720px;
  margin: 0 auto;
}
.banner-centered h2 {
  color: var(--white);
  font-size: clamp(26px, 3.8vw, 44px);
  margin-bottom: 18px;
  line-height: 1.20;
}
.banner-centered h2 em {
  color: var(--teal-light);
  font-style: normal;
}
.banner-centered > p {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  margin-bottom: 32px;
}
.banner-trust {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  flex-wrap: wrap;
  align-items: center;
}
.ps-block-dark {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
  text-align: left;
}
.ps-block-dark p { margin-bottom: 0; }
.ps-block-dark strong { color: rgba(255,255,255,0.90); }

/* ─── Footer Multi-col ───────────────────────────────────────────────────── */
footer {
  background: #060E18;
  color: rgba(255,255,255,0.45);
  padding: 72px 28px 40px;
  font-size: 14px;
  line-height: 1.70;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-logo {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.40);
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-insta:hover { color: var(--white); }
.footer-col h4 {
  color: rgba(255,255,255,0.80);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.40);
}
.footer-col ul li a {
  color: rgba(255,255,255,0.40);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-cta-btn {
  width: 100%;
  font-size: 13px !important;
  padding: 12px 16px !important;
  letter-spacing: 0.3px !important;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: 0.40;
}

/* ─── Sticky CTA Mobile ──────────────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  z-index: 100;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.20);
}
.sticky-cta .btn-cta {
  box-shadow: none;
  padding: 14px 32px;
  font-size: 16px;
  width: 100%;
}
