/* ============================================================
   BARBEARIA A37 - Redesign Padrão Imagem de Referência
   ============================================================ */

/* ── Variáveis (Tokens Baseados na Imagem) ───────────────── */
:root {
  /* Cores Principais */
  --bg-main: #0B1210;         /* Fundo escuro geral (quase preto/verde) */
  --bg-panel: #1A2624;        /* Fundo dos painéis e cards escuros */
  --bg-panel-light: #2A3B38;  /* Painéis mais claros (ex: Manifesto, Guardiões) */
  --accent-gold: #CD8E57;     /* Laranja/Dourado principal (Botões, letreiros) */
  --accent-gold-hover: #b87b46;
  
  /* Textos */
  --text-white: #F4F6F5;      /* Textos principais claros */
  --text-muted: #8E9B98;      /* Textos descritivos, kickers */
  --text-dark: #0B1210;       /* Texto escuro para botões/blocos claros */

  /* Tipografia */
  --font-main: 'Inter', sans-serif;
  --font-script: 'Playfair Display', serif; /* Usando serif italic elegante para o script */

  /* Espaçamentos e Estruturas */
  --container-width: 1100px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --padding-section: 80px 5%;
}

/* ── Resets ─────────────────────────────────────────────── */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-white);
  line-height: 1.5;
}

body {
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utilitários Base ───────────────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent-gold); }

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-white);
}

.section-kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.accent-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--accent-gold);
}

.bg-panel { background-color: var(--bg-panel); }

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background-color: rgba(205, 142, 87, 0.1);
}

.btn-block { width: 100%; }
.btn-large { padding: 15px 32px; font-size: 1rem; }
.mt-auto { margin-top: auto; }

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* ── Foco por teclado (a11y WCAG 2.4.7) ── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.plan-info-btn:focus-visible {
  outline: none;
}
.plan-info-btn:focus-visible::before {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

/* ── Ícones do Material Symbols ── */
.material-symbols-outlined {
  vertical-align: middle;
  font-size: 20px;
}

/* =========================================================
   SEÇÕES DA PÁGINA
   ========================================================= */

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  padding: 15px 5%;
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--bg-main);
  padding: 15px 5%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu a:hover { color: var(--text-white); }
.nav-cta { padding: 10px 20px; font-size: 0.8rem; }

/* ── ANIMAÇÕES CINEMÁTICAS (Hero) ───────────────────────── */
@keyframes heroReveal {
  from { 
    opacity: 0; 
    transform: translateY(40px); 
    filter: blur(10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
    filter: blur(0); 
  }
}

.hero-reveal {
  opacity: 0;
  animation: heroReveal 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5% 60px;
  background: linear-gradient(to right, rgba(11, 18, 16, 0.85), rgba(11, 18, 16, 0.65)),
              url('assets/hero_v3.webp') no-repeat center center/cover;
}

/* ── SCROLL INDICATOR ───────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
  z-index: 10;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-white);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 25px; opacity: 0; }
}

.arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--accent-gold);
  border-right: 2px solid var(--accent-gold);
  transform: rotate(45deg);
  margin: -5px;
  animation: scroll-arrows 1.5s infinite;
}

.arrows span:nth-child(2) { animation-delay: 0.1s; }
.arrows span:nth-child(3) { animation-delay: 0.2s; }

@keyframes scroll-arrows {
  0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}
.hero-content {
  max-width: 650px;
  margin: 0;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  z-index: 10;
}

.hero-subscription-card {
  padding: 60px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-club-logo {
  height: 130px;
  margin-bottom: 10px;
}

.hero-subscription-card h2 {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--accent-gold);
  line-height: 1;
}

.hero-subscription-card p {
  color: var(--text-white);
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 320px;
}

.hero-kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sub-badge {
  background-color: rgba(205, 142, 87, 0.1);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(205, 142, 87, 0.2);
}

.price-item span {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .accent-script {
  font-size: 110%; /* Fica um pouco maior */
  display: block;
  margin-top: -5px;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ── IDENTIDADE / REFERÊNCIA NA REGIÃO ───────────────────── */
.about-section {
  position: relative;
  padding: 120px 5% 110px;
  background-color: var(--bg-main);
  overflow: hidden;
}

.about-aura {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(205, 142, 87, 0.10), transparent 55%),
    radial-gradient(circle at 82% 75%, rgba(205, 142, 87, 0.06), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.about-content-wrapper {
  position: relative;
  z-index: 5;
  max-width: 1060px;
  margin: 0 auto;
}

.about-pillars {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pillar-chip {
  background: rgba(205, 142, 87, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(205, 142, 87, 0.35);
  border-radius: 100px;
  padding: 10px 28px;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
  font-weight: 600;
}

.about-glass-card {
  position: relative;
  padding: 72px 90px 65px;
  text-align: center;
  border-radius: var(--radius-md);
  background:
    linear-gradient(#0d1a18, #0d1a18) padding-box,
    linear-gradient(135deg, #CD8E57 0%, #f0c87a 30%, #b87b46 55%, #f0c87a 75%, #CD8E57 100%) border-box;
  border: 2px solid transparent;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    0 0 0 1px rgba(205, 142, 87, 0.12) inset,
    0 50px 120px -20px rgba(0, 0, 0, 0.85),
    0 0 80px -15px rgba(205, 142, 87, 0.12);
}

.about-glass-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(205, 142, 87, 0.18);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
}

.about-glass-card .section-title {
  margin-bottom: 0;
}

.plaque-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #b87b46, #f0c87a, #CD8E57, #f0c87a, #b87b46);
  color: #0B1210;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 24px;
  border-radius: 4px;
  white-space: nowrap;
}

.plaque-corner {
  position: absolute;
  width: 18px;
  height: 18px;
}

.plaque-tl { top: 20px; left: 20px; border-top: 2px solid var(--accent-gold); border-left: 2px solid var(--accent-gold); }
.plaque-tr { top: 20px; right: 20px; border-top: 2px solid var(--accent-gold); border-right: 2px solid var(--accent-gold); }
.plaque-bl { bottom: 20px; left: 20px; border-bottom: 2px solid var(--accent-gold); border-left: 2px solid var(--accent-gold); }
.plaque-br { bottom: 20px; right: 20px; border-bottom: 2px solid var(--accent-gold); border-right: 2px solid var(--accent-gold); }

.about-body {
  margin: 38px auto 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-paragraph {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-white);
  opacity: 0.85;
}

.about-tagline-block {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid rgba(205, 142, 87, 0.25);
}

.about-tagline-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-white);
  opacity: 0.85;
  margin-bottom: 18px;
}

.about-tagline-words {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0;
}

.tagline-word {
  display: inline-block;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--accent-gold);
  line-height: 1.2;
}

@keyframes aboutBlurUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.88);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.about-stagger-2,
.about-stagger-3,
.about-stagger-4,
.about-stagger-5,
.about-stagger-6,
.about-stagger-7,
.about-stagger-8 {
  opacity: 0;
}

.reveal-on-scroll.is-visible .about-stagger-2 { animation: aboutBlurUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.15s forwards; }
.reveal-on-scroll.is-visible .about-stagger-3 { animation: aboutBlurUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.35s forwards; }
.reveal-on-scroll.is-visible .about-stagger-4 { animation: aboutBlurUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.55s forwards; }
.reveal-on-scroll.is-visible .about-stagger-5 { animation: aboutBlurUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.75s forwards; }
.reveal-on-scroll.is-visible .about-stagger-6 { animation: wordReveal 0.9s cubic-bezier(0.23, 1, 0.32, 1) 1.0s forwards; }
.reveal-on-scroll.is-visible .about-stagger-7 { animation: wordReveal 0.9s cubic-bezier(0.23, 1, 0.32, 1) 1.3s forwards; }
.reveal-on-scroll.is-visible .about-stagger-8 { animation: wordReveal 0.9s cubic-bezier(0.23, 1, 0.32, 1) 1.6s forwards; }

@media (max-width: 768px) {
  .about-section { padding: 80px 5% 70px; }
  .about-glass-card { padding: 56px 26px 44px; }
  .plaque-badge { font-size: 0.55rem; padding: 6px 16px; letter-spacing: 1.5px; }
  .about-body { margin-top: 28px; max-width: 100%; }
  .about-paragraph { font-size: 1rem; }
  .about-tagline-block { margin-top: 28px; padding-top: 24px; }
  .about-tagline-intro { font-size: 1rem; }
  .tagline-word { font-size: 1.8rem; }
}

/* ── MANIFESTO IMMERSIVE (Propósito Sartorial) ─────────── */
.manifesto-section {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.manifesto-bg-atmosphere {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.manifesto-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.manifesto-text-glass {
  padding: 60px;
  max-width: 600px;
}

.manifesto-quote-modern {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent-gold);
  border-left: 2px solid var(--accent-gold);
  padding-left: 20px;
  margin-top: 30px;
  line-height: 1.6;
}

.manifesto-atmosphere-gallery {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atmos-photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.atmos-photo.p1 {
  width: 300px; height: 400px;
  transform: rotate(-3deg) translate(-40px, -20px);
  z-index: 3;
}

.atmos-photo.p2 {
  width: 250px; height: 350px;
  transform: rotate(5deg) translate(80px, 30px);
  z-index: 2;
  filter: brightness(0.7);
}

.atmos-photo.p3 {
  width: 200px; height: 280px;
  transform: rotate(-10deg) translate(-100px, 120px);
  z-index: 1;
  filter: brightness(0.5);
}

.manifesto-atmosphere-gallery:hover .atmos-photo {
  transform: rotate(0) translate(0) scale(1.05);
  filter: brightness(1);
  z-index: 5;
}

.manifesto-atmosphere-gallery:hover .p1 { transform: scale(1.1); z-index: 10; }
.manifesto-atmosphere-gallery:hover .p2 { transform: translate(140px, 0) scale(1.1); }
.manifesto-atmosphere-gallery:hover .p3 { transform: translate(-140px, 0) scale(1.1); }

@media (max-width: 1024px) {
  .manifesto-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manifesto-text-glass { padding: 40px; }
  .manifesto-atmosphere-gallery { height: 400px; }
  .atmos-photo.p1 { width: 220px; height: 300px; }
  .atmos-photo.p2 { width: 180px; height: 250px; }
  .atmos-photo.p3 { width: 140px; height: 200px; }
}


/* ── GALERIA PREMIUM (Inteligência Visual) ───────────────── */
.gallery-section {
  padding: var(--padding-section);
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
}

/* Efeito de Grão Cinematográfico */
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/p6.png'); /* Subtle grain */
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.visual-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 50px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  content-visibility: auto;
  contain-intrinsic-size: 1px 400px;
}

/* Staggered look */
.gallery-card:nth-child(1),
.gallery-card:nth-child(6) { grid-row: span 2; }
.gallery-card.landscape { grid-column: span 2; }

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(205, 142, 87, 0.2);
  z-index: 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%) contrast(1.1);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.1);
  filter: grayscale(0%) contrast(1);
}

/* Glassmorphism Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 16, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.overlay-text {
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Glassmorphism Badge */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
}

.gallery-card:hover .overlay-text {
  transform: translateY(0);
}

/* Vignette Effect */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .visual-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-card.landscape { grid-column: span 1; }
}

@media (max-width: 768px) {
  .visual-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 480px) {
  .visual-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(6) { grid-row: span 1; }
}

/* ── BANNER CTA AGGRESSIVE ──────────────────────────────── */
.aggressive-cta-banner {
  padding: 120px 5%;
  background: linear-gradient(rgba(7, 11, 10, 0.85), rgba(7, 11, 10, 0.65)), 
              url('assets/hero_v3.webp') no-repeat center center/cover;
  background-attachment: fixed;
  border-top: 1px solid rgba(205, 142, 87, 0.3);
  border-bottom: 1px solid rgba(205, 142, 87, 0.3);
  position: relative;
  z-index: 10;
}

.cta-content-glass {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 60px;
  border-radius: var(--radius-md);
  box-shadow: 0 60px 120px rgba(0,0,0,0.8);
  position: relative;
}

.cta-content-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cta-kicker {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-headline {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-description {
  font-size: 1.1rem;
  color: #CCC;
  margin: 0 auto 40px;
  max-width: 850px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 900px) {
  .cta-headline { font-size: 2.6rem; }
  .cta-content-glass { padding: 60px 30px; }
  .cta-actions { flex-direction: column; gap: 20px; }
  .aggressive-cta-banner { padding: 80px 5%; background-attachment: scroll; }
}

/* ── FUNDADORES CINEMATIC (Nova Versão Horizontal) ───────── */
.team-section {
  padding: var(--padding-section);
  background-color: var(--bg-main);
}

.founders-cinematic {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

.founder-card-horizontal {
  display: flex;
  align-items: center;
  min-height: 500px;
  position: relative;
  gap: 40px;
}

.founder-card-horizontal.reverse {
  flex-direction: row-reverse;
}

.founder-visual {
  flex: 0 0 50%;
  height: 500px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.founder-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.8s ease;
}

.founder-card-horizontal:hover .founder-img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.founder-info-glass {
  flex: 1;
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 10;
  transition: all 0.4s ease;
}

.reverse .founder-info-glass {
  margin: 0;
}

.founder-card-horizontal:hover .founder-info-glass {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.founder-tag {
  display: block;
  font-size: 0.7rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 700;
}

.founder-name {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1;
}

.founder-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #CCC;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 300;
  border-left: 2px solid var(--accent-gold);
  padding-left: 20px;
}

.founder-details {
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-divider {
  width: 5px;
  height: 5px;
  background: var(--accent-gold);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .founder-info-glass, .reverse .founder-info-glass {
    margin: 0;
    padding: 30px;
  }
  .founder-card-horizontal, .founder-card-horizontal.reverse {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 20px;
  }
  .founder-visual { flex: 0 0 400px; }
  .founder-name { font-size: 2.2rem; }
}

.uppercase-kicker {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

/* ── ASSINATURAS PREMIUM (Planos) ───────────────────────── */
.pricing-section {
  padding: 120px 5% 100px;
  background-color: var(--bg-panel);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 50px 100px -50px rgba(0,0,0,0.8);
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(205, 142, 87, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.pricing-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1150px;
  margin: 60px auto 0;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-row: span 6;
  grid-template-rows: subgrid;
  row-gap: 0;
  align-items: start;
}

.pricing-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.7);
}

.pricing-card.accent-card {
  background: rgba(205, 142, 87, 0.04);
  border-color: rgba(205, 142, 87, 0.2);
  box-shadow: 0 30px 80px -20px rgba(205, 142, 87, 0.25);
}

.pricing-card.accent-card:hover {
  transform: translateY(-10px);
}

.plan-info-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s;
}

.plan-info-btn::before {
  content: "?";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.plan-info-btn:hover::before {
  background: rgba(205, 142, 87, 0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.plan-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.plan-modal-backdrop.active {
  display: flex;
}

.plan-modal-box {
  background: #1a1a1a;
  border: 1px solid rgba(205, 142, 87, 0.3);
  border-radius: var(--radius-md);
  padding: 40px 35px;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.plan-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.plan-modal-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.plan-modal-text {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

.plan-modal-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.recomendado-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: #000;
  padding: 6px 18px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 4px;
  z-index: 10;
}

.card-icon {
  margin-bottom: 12px;
  opacity: 0.8;
}
.card-icon span { font-size: 35px; color: var(--accent-gold); }

.plan-name { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.plan-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }

.plan-price {
  margin: 14px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.currency { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; }
.amount { font-size: 3.2rem; font-weight: 800; color: var(--text-white); line-height: 1; }
.period { font-size: 1rem; color: var(--text-muted); }

.plan-features {
  margin: 22px 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
  font-size: 0.95rem;
  color: #CCC;
}

.plan-features .check {
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.sub-milestone-banner {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  padding: 18px 35px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 45px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.sub-milestone-banner strong { color: var(--accent-gold); }

.pricing-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 40px;
}


/* ── DEPOIMENTOS ────────────────────────────────────────── */
.testimonials-section {
  padding: var(--padding-section);
  background-color: var(--bg-main);
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.rating-box {
  background-color: rgba(255,255,255,0.03);
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.rating-number { font-size: 1.5rem; font-weight: 700; }
.rating-stars { color: var(--accent-gold); font-size: 1.2rem; margin: 5px 0; }
.rating-source { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 1px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background-color: var(--bg-panel);
  padding: 30px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-card .stars { color: var(--accent-gold); font-size: 0.9rem; margin-bottom: 20px; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer .avatar {
  width: 44px; height: 44px;
  color: white;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; /* Circular Google style */
  font-weight: 700;
  font-size: 1rem;
}

.reviewer-info strong { display: block; font-size: 0.9rem; }
.reviewer-info span { display: block; font-size: 0.75rem; color: var(--text-muted); }

/* ── UNIDADES & FINAL CTA ───────────────────────────────── */
.locations-cta-section {
  background-color: var(--bg-panel);
  padding: var(--padding-section);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
}

.locations-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.unit-card {
  display: flex;
  gap: 20px;
  background-color: var(--bg-main);
  padding: 25px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.unit-card .map-icon {
  color: var(--accent-gold);
  font-size: 24px;
}

.unit-name { font-size: 1.1rem; margin-bottom: 5px; }
.unit-address { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; }

.unit-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: rgba(205, 142, 87, 0.1);
  color: var(--accent-gold);
}

.unit-card-link, 
.footer-address-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.unit-card-link:hover {
  transform: translateY(-5px);
}

.unit-card-link:hover .unit-card {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.locations-map-placeholder {
  background-color: var(--bg-main);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.map-icons-top {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  font-size: 0.85rem;
}
.map-icons-top div { display: flex; align-items: center; gap: 5px; }

.map-illustration { margin-bottom: 30px; opacity: 0.2; }
.huge-map-icon { font-size: 100px; }

.map-caption { font-size: 0.75rem; letter-spacing: 1px; color: var(--text-muted); }

/* Final CTA block */
.final-cta {
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* ── FAQ accordion ─────────────────────────────────────── */
.faq-section {
  padding: var(--padding-section);
}

.faq-grid {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
  border-color: rgba(205, 142, 87, 0.3);
  background-color: rgba(205, 142, 87, 0.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.faq-question span:last-child {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.4s ease, 
              padding 0.4s ease;
  background-color: rgba(0,0,0,0.15);
}

.faq-answer p {
  padding: 0 30px 30px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Suficiente para o conteúdo */
  opacity: 1;
}

.faq-item.active .faq-question {
  color: var(--accent-gold);
}

.faq-item.active .faq-question span:last-child {
  transform: rotate(180deg);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background-color: #070B0A;
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4,
.footer-col .footer-heading {
  font-size: 0.9rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.03);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--accent-gold); }

.footer-address p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-white);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover { color: var(--accent-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover,
.footer-legal-link:hover { color: var(--accent-gold); }
.footer-legal-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-credit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  letter-spacing: 0.5px;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-credit a:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .site-footer { padding-bottom: 40px; }
}

/* ── ANIMAÇÕES & RESPONSIVO ─────────────────────────────── */
section[id] {
  scroll-margin-top: 80px; /* Evita que o topo da seção fique atrás da navbar fixa ao navegar */
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.delayed {
  transition-delay: 0.2s;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid, .manifesto-grid, .team-grid, .locations-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 16px; }
  .hero-subscription-card { margin-top: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 18, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px 40px;
  }
  .nav-menu.open a {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: 2.3rem; }
  .nav-cta { padding: 8px 15px; font-size: 0.7rem; }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-buttons { flex-direction: column; }
  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}

/* ── REFINAMENTOS MOBILE EXTRAS ────────────────────────── */
@media (max-width: 600px) {
  /* Navbar */
  .navbar { padding: 10px 5%; }
  .logo img { height: 35px !important; }
  .nav-cta { padding: 8px 12px; font-size: 0.65rem; }

  /* Hero */
  .hero-section { height: auto; min-height: 100vh; padding-top: 140px; padding-bottom: 80px; }
  .hero-title { font-size: 2.3rem; line-height: 1.25; margin-bottom: 20px; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 40px; line-height: 1.6; }
  
  .hero-subscription-card { padding: 30px 20px; }
  .hero-club-logo { height: 60px; margin-bottom: 15px; }
  .hero-club-subtitle { font-size: 1.2rem; }
  .hero-club-desc { font-size: 0.85rem; }
  
  .scroll-indicator { display: none; } /* Ocultar no mobile para ganhar espaço */

  /* Manifesto & Galeria Atmosférica */
  .manifesto-section { padding: 60px 5%; min-height: auto; }
  .manifesto-text-glass {
    padding: 25px 20px;
    margin-bottom: 30px;
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
  }
  .manifesto-text-glass .section-title {
    font-size: 1.9rem;
  }

  .manifesto-atmosphere-gallery { 
    position: relative;
    height: auto; 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Override das larguras fixas em px das classes específicas */
  .atmos-photo.p1, .atmos-photo.p2, .atmos-photo.p3 { 
    position: relative !important; 
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    transform: none !important;
    width: 30% !important;
    height: 160px !important;
    flex: none;
    filter: brightness(1) !important;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  .atmos-photo.p3 { display: block !important; margin-top: 40px; }
  .atmos-photo.p2 { margin-top: 20px; }

  /* Founders */
  .founder-visual { flex: 0 0 320px; }
  .founder-name { font-size: 1.8rem; }
  .founder-kicker { font-size: 0.8rem; }
  
  /* Pricing */
  .pricing-section { padding: 80px 5% 60px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 35px 25px; grid-row: span 1; grid-template-rows: none; display: flex; flex-direction: column; }
  .amount { font-size: 2.8rem; }
  .plan-name { font-size: 1.3rem; }
  .sub-milestone-banner { font-size: 0.8rem; padding: 12px 20px; text-align: center; }
  
  /* Footer */
  .footer-grid { text-align: center; }
  .footer-social { justify-content: center; }
  .contact-link { justify-content: center; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-section { padding-top: 120px !important; padding-bottom: 60px; align-items: flex-start; }
  .logo img { height: 30px !important; }
  .hero-title { font-size: 1.8rem; }
}

/* ── HAMBURGER MENU BUTTON ─────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── TOUCH INTERACTIONS (mobile) ────────────────────────────
   hover: none = touch-only device (iOS/Android)              */

/* Fundadores: fotos sempre coloridas no mobile */
@media (hover: none) {
  .founder-img {
    filter: grayscale(0%) contrast(1);
  }
}

/* Galeria: estado ativo por toque */
@media (hover: none) {
  .gallery-card.touch-active {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 15px rgba(205,142,87,0.2);
    z-index: 2;
  }
  .gallery-card.touch-active .gallery-img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1);
  }
  .gallery-card.touch-active .gallery-overlay {
    opacity: 1;
  }
  .gallery-card.touch-active .overlay-text {
    transform: translateY(0);
  }
}

/* ── FIX backdrop-filter flash no scroll reveal ─────────────
   Quando o pai usa opacity 0→1, o browser cria a camada de composição
   tardiamente e o backdrop-filter aparece depois do card.
   Solução: manter opacity:1 nessa seção, animar só o transform. */
.aggressive-cta-banner .reveal-on-scroll {
  opacity: 1;
}
.aggressive-cta-banner .reveal-on-scroll.is-visible {
  opacity: 1;
}

/* ── FIX iOS SAFARI: background-attachment fixed não funciona ── */
@media (hover: none) {
  .manifesto-bg-atmosphere,
  .aggressive-cta-banner {
    background-attachment: scroll;
  }
}

/* ── FIX hero height em iOS (svh = small viewport height) ───── */
@supports (min-height: 100svh) {
  .hero-section { min-height: 100svh; }
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 9999;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  white-space: nowrap;
}

.whatsapp-float:hover {
  width: 220px;
  background-color: #20BA5A;
  padding: 0 20px;
  justify-content: center;
  gap: 10px;
  transform: scale(1.05);
}

.whatsapp-float span {
  opacity: 0;
  max-width: 0;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}

.whatsapp-float:hover span {
  opacity: 1;
  max-width: 200px;
}

.whatsapp-float img,
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { 
    width: 54px;
    height: 54px;
    padding: 0; 
    border-radius: 50%; 
    bottom: 90px; 
    right: 20px; 
  }
}

/* ── MODAIS LEGAIS ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000; /* Acima de tudo, até do botão do WhatsApp */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  padding: 40px;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  background-color: var(--bg-panel);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent-gold);
}

.modal-body p {
  margin-bottom: 15px;
}

.modal-body ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
}

.modal-body li {
  margin-bottom: 8px;
}

/* ── PARCEIROS ──────────────────────────────────────────── */
.plan-features .parceiros-check {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.parceiros-trigger-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 8px;
}

.parceiros-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(205, 142, 87, 0.35);
  border-radius: 50px;
  padding: 10px 22px;
  color: var(--accent-gold);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, gap 0.25s;
}

.parceiros-trigger-btn:hover {
  background: rgba(205, 142, 87, 0.08);
  border-color: var(--accent-gold);
  gap: 12px;
}

.parceiros-trigger-btn .material-symbols-outlined {
  font-size: 1.1rem;
}

.parceiros-arrow {
  transition: transform 0.25s;
}

.parceiros-trigger-btn:hover .parceiros-arrow {
  transform: translateX(4px);
}

.parceiros-modal-content {
  max-width: 720px;
  padding: 45px 40px 40px;
}

.parceiros-modal-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  margin-top: 6px;
}

.parceiros-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.parceiro-card {
  flex: 0 0 calc(25% - 11px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, transform 0.25s;
}

.parceiro-card:hover {
  border-color: rgba(205, 142, 87, 0.4);
  transform: scale(1.03);
}

.parceiro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .parceiro-card {
    flex: 0 0 calc(50% - 7px);
  }
  .parceiros-modal-content {
    padding: 35px 20px 28px;
  }
}

/* ── MOBILE: animações otimizadas (sem blur, delays menores) ─── */
@media (hover: none) {
  /* Remove filter:blur das keyframes — pesado na GPU mobile */
  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes aboutBlurUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes wordReveal {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Hero mais rápido */
  .hero-reveal {
    animation-duration: 0.8s;
  }

  /* Reveal geral mais rápido */
  .reveal-on-scroll {
    transition-duration: 0.45s;
  }

  /* Stagger com delays comprimidos */
  .reveal-on-scroll.is-visible .about-stagger-2 { animation: aboutBlurUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.05s forwards; }
  .reveal-on-scroll.is-visible .about-stagger-3 { animation: aboutBlurUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.12s forwards; }
  .reveal-on-scroll.is-visible .about-stagger-4 { animation: aboutBlurUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.19s forwards; }
  .reveal-on-scroll.is-visible .about-stagger-5 { animation: aboutBlurUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.26s forwards; }
  .reveal-on-scroll.is-visible .about-stagger-6 { animation: wordReveal 0.45s cubic-bezier(0.23, 1, 0.32, 1) 0.33s forwards; }
  .reveal-on-scroll.is-visible .about-stagger-7 { animation: wordReveal 0.45s cubic-bezier(0.23, 1, 0.32, 1) 0.40s forwards; }
  .reveal-on-scroll.is-visible .about-stagger-8 { animation: wordReveal 0.45s cubic-bezier(0.23, 1, 0.32, 1) 0.47s forwards; }
}

/* ── Usuários que pedem menos movimento (acessibilidade) ──────── */
@media (prefers-reduced-motion: reduce) {
  .hero-reveal,
  .reveal-on-scroll {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .about-stagger-2, .about-stagger-3, .about-stagger-4,
  .about-stagger-5, .about-stagger-6, .about-stagger-7, .about-stagger-8 {
    opacity: 1 !important;
    animation: none !important;
  }
}
