/* Adicionar ao :root ou html */
html {
  scroll-padding-top: 5rem; /* Evita que o header cubra o título da seção */
}

/* Melhoria na performance de renderização */
.hero-parallax, .parallax-inner {
  will-change: transform;
  transform: translateZ(0); /* Força aceleração de hardware */
}

/* Ajuste para mobile: Parallax fixo drena bateria e causa lag */




/* ============================================================
   POWER MONSTER ACADEMIA — style.css
   Dark Industrial + Neon Yellow | Mobile First
   ============================================================ */

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

:root {
  /* Palette */
  --bg:          #0c0c0c;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --neon:        #ffd000;
  --neon-dim:    rgba(255, 217, 0, 0.12);
  --neon-glow: 0 0 4px #ffd000, 0 0 10px rgba(255, 208, 0, 0.05);
  --white:       #ffffff;
  --gray-1:      #e0e0e0;
  --gray-2:      #aaaaaa;
  --gray-3:      #555555;
  --border:      rgba(255, 208, 0, 0.18);

  /* Typography */
  --font-display: 'Archivo Black', sans-serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Spacing */
  --gap:    clamp(1.5rem, 4vw, 2.5rem);
  --radius: 4px;

  /* Transitions */
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --speed: 0.45s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--gray-1);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.neon-text {
  color: var(--neon);
  text-shadow: 
    0 0 4px rgba(255, 208, 0, 0.3),
    0 0 10px rgba(255, 208, 0, 0.2);
  font-weight: 800;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              background var(--speed) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--neon); outline-offset: 3px; }

.btn-primary {
  background: var(--neon);
  color: #000;
  border-color: var(--neon);
}
.btn-primary:hover {
  background: #ffdd1a;
  transform: translateY(-2px);
  box-shadow: var(--neon-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--neon);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--neon-dim);
  border-color: var(--neon);
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* Pulsing glow animation */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 208, 0, 0.4), 0 0 20px rgba(255, 217, 0, 0.2); }
  50%       { box-shadow: 0 0 20px rgba(255, 230, 0, 0.8), 0 0 50px rgba(255, 217, 0, 0.4); }
}
.glow-pulse { animation: glow-pulse 2.4s ease-in-out infinite; }
.glow-pulse:hover { animation-play-state: paused; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--speed) var(--ease),
              backdrop-filter var(--speed) var(--ease),
              padding var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}
.site-header.scrolled {
  background: rgba(12,12,12,.82);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,.5);
  padding: .85rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.logo-icon { font-size: 1.4rem; }
.logo-text em {
  font-style: normal;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(255, 217, 0, 0.5);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2.5vw, 2rem);
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-2);
  transition: color .25s;
  padding: .2rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--neon);
  transition: width .3s var(--ease);
  box-shadow: 0 0 6px var(--neon);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--neon);
  color: #000 !important;
  border-radius: var(--radius);
  font-weight: 700;
  transition: box-shadow .3s, transform .3s !important;
}
.nav-cta:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.06); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, background .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--neon); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--neon); }

/* Transforma as barras em X quando a classe .active estiver no botão */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Parallax background */
.hero-parallax {
  position: absolute;
  inset: -15%; 
  
  /* 1. Defina a imagem e os degradês em uma única propriedade */
  background-image: 
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(204,255,0,.08) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(12,12,12,0.4) 0%, rgba(12,12,12,0.9) 100%),
    url('img/principal.png'); /* Verifique se o nome da pasta é 'img' ou 'images' */
  
  /* 2. Ajustes de exibição */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
  will-change: transform;
}

/* Grid texture overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(204,255,0,.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(204,255,0,.025) 40px);
  pointer-events: none;
}

/* Film grain noise */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem; height: 2px;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 13vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 0.7rem);
  color: var(--gray-2);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--neon);
  text-shadow: var(--neon-glow);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-2);
  margin-top: .2rem;
}
.stat-divider {
  width: 1px; height: 2.5rem;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--gray-3);
  text-transform: uppercase;
}
.hero-scroll-hint span {
  display: block;
  width: 1px; height: 2.5rem;
  background: linear-gradient(to bottom, transparent, var(--gray-3));
  animation: scroll-line 1.6s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTION BASE
============================================================ */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 6vw, 4.5rem);
}
.section-tag {
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon);
  display: block;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.8rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--gray-2);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================================
   ESTRUTURA CARDS
============================================================ */
.section-estrutura { background: var(--bg-2); }

.estrutura-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}

.estrutura-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.estrutura-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-dim), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.estrutura-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.estrutura-card:hover::before { opacity: 1; }
.estrutura-card:hover .card-border { opacity: 1; box-shadow: var(--neon-glow); }

/* Neon border effect on hover */
.card-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--neon);
  opacity: .15;
  transition: opacity .4s, box-shadow .4s;
  pointer-events: none;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 6px rgba(204,255,0,.3));
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .6rem;
}
.card-desc {
  color: var(--gray-2);
  font-size: .92rem;
  line-height: 1.65;
}

/* ============================================================
   PARALLAX DIVIDERS
============================================================ */
.parallax-divider {
  position: relative;
  height: clamp(200px, 40vw, 420px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-inner {
  position: absolute;
  inset: -20%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Interior parallax — replace with real photo */
.parallax-divider--interior .parallax-inner {
  background:
    linear-gradient(to right, rgba(12,12,12,.75), rgba(12,12,12,.4)),
    linear-gradient(160deg, #0a0e00 0%, #1a2200 50%, #0c0c0c 100%);
}

/* Fachada parallax — replace with real photo */
.parallax-divider--fachada .parallax-inner {
  background:
    linear-gradient(to bottom, rgba(12,12,12,.6), rgba(12,12,12,.7)),
    linear-gradient(160deg, #0c0c0c 0%, #111800 50%, #0c0c0c 100%);
}

.parallax-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.parallax-copy span {
  font-family: var(--font-head);
  font-size: clamp(.9rem, 3vw, 1.2rem);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.parallax-copy strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 1;
  display: block;
  color: var(--neon);
  text-shadow: var(--neon-glow);
}

/* ============================================================
   PLANOS
============================================================ */
.section-planos { background: var(--bg); }

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center; /* Centraliza os cards se houver menos de 3 */
    max-width: 1100px;
    margin: 0 auto;
}

.plano-card--corporativo {
    border: 1px dashed var(--primary);
    background: rgba(204, 255, 0, 0.03);
}
.plano-card--corporativo .preco-cifrao {
    display: none; /* Esconde o R$ no card do Gympass */
}
.plano-card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed);
}
.plano-card:hover { transform: translateY(-4px); }

.plano-card--destaque {
  border-color: var(--neon);
  background: #121400;
  box-shadow: 0 0 0 1px var(--neon), 0 8px 40px rgba(204,255,0,.15);
}
.plano-card--destaque:hover {
  box-shadow: 0 0 0 1px var(--neon), 0 16px 60px rgba(204,255,0,.25), var(--neon-glow);
}

.plano-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: #000;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 0 0 var(--radius) var(--radius);
  white-space: nowrap;
}

.plano-nome {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-2);
 
}

.plano-preco {
  display: flex;
  align-items: flex-end;
  gap: .25rem;
  line-height: 1;
}
.preco-cifrao {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--neon);
  align-self: flex-start;
  margin-top: .3rem;
}
.preco-valor {
  font-family: var(--font-display);
  font-size: 3.0rem;
  color: var(--white);
  letter-spacing: -.02em;
}
.preco-periodo {
  font-size: .9rem;
  color: var(--gray-2);
  margin-bottom: .4rem;
}

.plano-items {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.plano-items li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: var(--gray-2);
}
.check {
  color: var(--neon);
  text-shadow: 0 0 8px var(--neon);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

.planos-note {
  text-align: center;
  color: var(--gray-2);
  font-size: .9rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--neon-dim);
}

/* ============================================================
   AVALIAÇÕES
============================================================ */
.section-avaliacoes { background: var(--bg-2); }

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.25rem;
}

.avaliacao-card {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: border-color .35s, transform var(--speed) var(--ease);
}
.avaliacao-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.av-header { display: flex; align-items: center; gap: .85rem; }

.av-avatar {
  width: 44px; height: 44px;
  background: var(--neon);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(204,255,0,.3);
}

.av-info { flex: 1; }
.av-nome  { font-family: var(--font-head); font-size: .95rem; color: var(--white); text-transform: uppercase; letter-spacing: .04em; }
.av-tempo { font-size: .78rem; color: var(--gray-3); }

.av-google { margin-left: auto; flex-shrink: 0; }

.av-stars { color: #fbbf24; font-size: .95rem; letter-spacing: .1em; }

.av-texto {
  font-size: .9rem;
  color: var(--gray-2);
  line-height: 1.7;
  font-style: italic;
}
.av-texto::before { content: '"'; color: var(--neon); font-style: normal; font-size: 1.4rem; line-height: 0; vertical-align: -.25em; margin-right: .1rem; }
.av-texto::after  { content: '"'; color: var(--neon); font-style: normal; font-size: 1.4rem; line-height: 0; vertical-align: -.25em; margin-left: .1rem; }

/* ============================================================
   LOCALIZAÇÃO
============================================================ */
.section-localizacao { background: var(--bg); }

.localizacao-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: .1rem;
  filter: drop-shadow(0 0 6px rgba(204,255,0,.4));
}
.info-block strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .35rem;
}
.info-block p { color: var(--gray-2); font-size: .92rem; }

.horarios { display: flex; flex-direction: column; gap: .3rem; }
.horario-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
}
.horario-row span:first-child { color: var(--gray-2); }

/* Map */
.mapa-wrapper {
  height: clamp(280px, 45vw, 440px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(204,255,0,.08);
  transition: filter .5s;
}
.mapa-wrapper:hover { filter: none; }
.mapa-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-tagline {
  color: var(--gray-3);
  font-size: .88rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-3);
  transition: color .25s;
}
.footer-links a:hover { color: var(--neon); }
.footer-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.25rem;
  font-size: .82rem;
  color: var(--gray-3);
}
.footer-copy {
  font-size: .78rem;
  color: var(--gray-3);
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 4px 20px rgba(0,0,0,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(37,211,102,0), 0 4px 20px rgba(0,0,0,.4); }
}

.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: #fff;
  padding: .85rem 1.25rem .85rem 1rem;
  border-radius: 2rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  animation: wa-pulse 2.2s ease-in-out infinite;
  transition: transform .3s var(--ease), background .2s;
}
.whatsapp-float:hover {
  transform: scale(1.06) translateY(-2px);
  background: #1ebe5d;
  animation-play-state: paused;
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.whatsapp-label { white-space: nowrap; }

/* ============================================================
   RESPONSIVE — MOBILE FIRST BREAKPOINTS
============================================================ */

/* ── md: 640px ── */
@media (min-width: 640px) {
  .localizacao-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── lg: 900px ── */
@media (min-width: 900px) {
  .localizacao-wrapper {
    grid-template-columns: 380px 1fr;
  }
  .mapa-wrapper { height: 100%; min-height: 380px; }
}

/* ── Mobile nav (max-width: 768px) ── */
@media (max-width: 768px) {
  .hamburger { display: flex; z-index: 1001;}

  .nav-links {
    position: fixed;
    inset: 0; top: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(8,8,8,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: none; }

  .nav-links a {
    font-size: 1.6rem;
    color: var(--white);
  }
  .nav-links a::after { height: 3px; }

  .nav-cta {
    font-size: 1rem !important;
    padding: .85rem 2rem !important;
    border-radius: var(--radius);
  }

  /* Collapse WhatsApp label on very small screens */
  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-parallax { background-attachment: scroll; }
  .parallax-inner { background-attachment: scroll; }
}

.convenios-container {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-2);
    border: 1px solid var(--bg-3);
    border-radius: 4px;
}

.convenios-title {
    display: block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1rem;
}

.convenios-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.convenio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.convenio-card span {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
}

.convenio-card small {
    color: var(--white);
    opacity: 0.6;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: -4px;
}

.convenio-divider {
    width: 1px;
    height: 30px;
    background: var(--bg-3);
}

@media (max-width: 480px) {
    .convenio-divider { display: none; }
    .convenios-wrapper { gap: 1.5rem; }
}


.galeria-infinite {
    width: 100%;
    overflow: hidden;
    background: var(--bg-dark);
    padding: 40px 0;
    position: relative;
}

/* Sombra suave nas laterais */
.galeria-infinite::before,
.galeria-infinite::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Garante que você consiga clicar/interagir por baixo da sombra */
}

.galeria-infinite::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.galeria-infinite::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.galeria-track {
    display: flex;
    gap: 20px;
    width: max-content; /* Garante que o container tenha a largura de todas as fotos somadas */
    animation: scroll-galeria 20s linear infinite;
}

/* Pausa ao passar o mouse */
.galeria-track:hover {
    animation-play-state: paused;
}

.galeria-item {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(204, 255, 0, 0.1);
    transition: all 0.3s ease;
}

/* Efeito de destaque na imagem e no container */
.galeria-item:hover {
    transform: scale(1.05);
}

.galeria-item:hover img {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
}

/* ANIMAÇÃO CORRIGIDA */
@keyframes scroll-galeria {
    from {
        transform: translateX(0);
    }
    to {
        /* Move até a metade (fim do primeiro grupo) */
        transform: translateX(calc(-50% - 10px)); 
    }
}

/* Responsividade para telas maiores */
@media (min-width: 900px) {
    .galeria-item {
        width: 450px;
        height: 300px;
    }
}






.convenio-logo {
    height: 60px; /* Aumentado de 35px para 60px */
    width: auto;
    object-fit: contain;
    /* Removido o filtro que deixava branco, agora exibe a cor real */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)); 
    transition: transform 0.3s ease;
    margin-bottom: 12px;
}

.convenio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.convenio-card small {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.85rem; /* Texto um pouco maior para acompanhar a logo */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Efeito de hover simplificado: apenas um leve aumento */
.convenio-card:hover .convenio-logo {
    transform: scale(1.05);
}

/* Ajuste do divisor para acompanhar a altura nova */
.convenio-divider {
    width: 1px;
    height: 60px;
    background: var(--bg-3);
}

@media (max-width: 480px) {
    .convenio-logo {
        height: 45px; /* Tamanho médio para celulares */
    }
}







.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%; /* Garante que ocupe a altura do header */
}

.logo-img {
    height: 50px; /* Ajuste a altura conforme o design da sua logo */
    width: auto;  /* Mantém a proporção da imagem */
    object-fit: contain;
    transition: transform 0.3s var(--ease);
    border-radius: 50%;
}

.logo:hover .logo-img {
    transform: scale(1.05); /* Efeito leve ao passar o mouse */
}

/* Ajuste para telas menores se necessário */
@media (max-width: 768px) {
    .logo-img {
        height: 35px; /* Logo um pouco menor no mobile */
    }
}

/* Localize essas classes no seu style.css */

.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: none !important; /* O !important garante que nada mais deixe cinza */
  transition: none;
}


