/* ===== LineWaves full-site background ===== */
#linewaves-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.text-primary { color: var(--color-primary); }
.text-muted   { color: var(--color-muted); }

/* ===== Palette extensions ===== */
:root {
  --color-red:      #cc0000;
  --color-red-soft: rgba(204, 0, 0, 0.12);
  --color-red-glow: rgba(204, 0, 0, 0.35);
}

/* ===== Animations ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes xp-slide-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes badge-pop {
  0%   { opacity: 0; transform: scale(0.8) translateX(8px); }
  60%  { transform: scale(1.06) translateX(-2px); }
  100% { opacity: 1; transform: scale(1) translateX(0); }
}
@keyframes gam-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(204,0,0,0); }
}

/* ===== Button size extension ===== */
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }


/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%,   rgba(204,0,0,.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%,  rgba(255,138,0,.12), transparent),
    radial-gradient(ellipse 40% 30% at 5%   70%,  rgba(255,138,0,.05), transparent),
    var(--color-bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a00' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-copy { animation: fade-up 0.65s cubic-bezier(0.2, 0, 0, 1) both; }

.hero-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 8px var(--color-red-glow);
  animation: gam-pulse 2s ease-in-out infinite;
}
.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow-wrap .eyebrow { margin-bottom: 0; }

.hero-copy h1 {
  font-size: clamp(3.6rem, 7.5vw, 5.8rem);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.0;
  font-weight: 400;
}
.hero-lead {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 48ch;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ===== Hero stats bar ===== */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border);
  background: transparent;
  padding: 1.35rem 0;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 120px;
}
.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-stat span { color: var(--color-muted); font-size: 0.78rem; margin-top: 0.1rem; }
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
  margin: 0 2rem;
}

/* ===== Hero visual ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fade-up 0.65s 0.1s cubic-bezier(0.2, 0, 0, 1) both;
}
.hero-visual-inner {
  position: relative;
  animation: float 5s ease-in-out infinite;
}
.hero-card {
  width: 100%;
  max-width: 310px;
  background: var(--color-surface);
  border: 1px solid rgba(255,138,0,.15);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow:
    0 0 0 1px rgba(255,138,0,.06),
    0 0 40px rgba(204,0,0,.08),
    0 24px 64px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.hero-card-days {
  display: flex;
  gap: 0.4rem;
  margin: 1.25rem 0 1.5rem;
}
.day-dot {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: var(--color-surface-2);
}
.day-dot.filled {
  background: linear-gradient(90deg, var(--color-red), var(--color-primary));
  box-shadow: 0 0 6px rgba(255,138,0,.4);
}
.hero-card-xp-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.hero-card-xp-label span { font-size: 0.78rem; color: var(--color-muted); }
.hero-card-xp-label strong { font-size: 0.88rem; font-weight: 700; color: var(--color-primary); }
.xp-bar { height: 7px; background: var(--color-surface-2); border-radius: 999px; overflow: hidden; }
.xp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-red), #ff6600, var(--color-primary));
  border-radius: 999px;
  transform-origin: left;
  animation: xp-slide-in 1.5s 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Hero badges */
.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  white-space: nowrap;
}
.hero-badge-top {
  top: -28px;
  right: -36px;
  color: var(--color-primary);
  border-color: rgba(255,138,0,.2);
  background: rgba(255,138,0,.06);
  animation: badge-pop 0.5s 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hero-badge-bottom {
  bottom: -24px;
  left: -32px;
  color: var(--color-red);
  border-color: rgba(204,0,0,.25);
  background: rgba(204,0,0,.06);
  animation: badge-pop 0.5s 1.1s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* ===== Section utilities ===== */
.section-alt {
  background: transparent;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.center-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Gamificação ===== */
.gamificacao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.gamificacao-copy h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.gamificacao-copy p  { color: var(--color-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }

.gam-features { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.gam-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.gam-feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--color-red-soft);
  border: 1px solid rgba(204,0,0,.2);
  color: var(--color-red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gam-feature > div { display: flex; flex-direction: column; gap: 0.2rem; }
.gam-feature strong { font-size: 0.92rem; font-weight: 700; }
.gam-feature span   { color: var(--color-muted); font-size: 0.83rem; line-height: 1.55; }

/* Gamification card */
.gamificacao-visual { position: relative; }
.gam-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow:
    0 0 0 1px rgba(204,0,0,.08),
    0 0 60px rgba(204,0,0,.1),
    0 24px 64px rgba(0,0,0,.55);
}
.gam-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gam-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.gam-card-header-info { display: flex; flex-direction: column; gap: 0.4rem; }
.gam-card-header-info strong { font-size: 1rem; font-weight: 700; }

.gam-xp-section { margin-bottom: 1.5rem; }
.gam-xp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}
.gam-xp-row strong { color: var(--color-primary); font-weight: 800; font-size: 1rem; }
.gam-xp-bar-outer {
  height: 8px;
  background: var(--color-surface);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.gam-xp-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--color-red), #ff5500, var(--color-primary));
  border-radius: 999px;
  transform-origin: left;
  animation: xp-slide-in 1.8s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.gam-xp-label { font-size: 0.75rem; color: var(--color-muted); }

.gam-stats-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.gam-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.gam-stat strong { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.gam-stat span   { font-size: 0.72rem; color: var(--color-muted); text-align: center; }

.gam-notification {
  position: absolute;
  bottom: -16px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-surface);
  border: 1px solid rgba(255,138,0,.25);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  animation: badge-pop 0.5s 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* ===== Plans ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover {
  border-color: rgba(204,0,0,.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(204,0,0,.08), 0 0 40px rgba(204,0,0,.06);
}
.plan-card.plan-featured {
  border-color: var(--color-red);
  background: var(--color-surface-2);
  box-shadow:
    0 0 0 1px rgba(204,0,0,.25),
    0 0 60px rgba(204,0,0,.15),
    0 24px 60px rgba(0,0,0,.5);
  transform: translateY(-6px);
}
.plan-card.plan-featured:hover {
  border-color: var(--color-red);
  transform: translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(204,0,0,.35),
    0 0 80px rgba(204,0,0,.2),
    0 28px 64px rgba(0,0,0,.5);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(204,0,0,.5);
}
.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}
.plan-featured .plan-name { color: var(--color-red); }
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  line-height: 1;
}
.plan-currency {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}
.plan-amount {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-text);
}
.plan-cents {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.plan-period {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
  margin-left: 0.1rem;
}
.plan-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 0.9rem;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  padding-bottom: 0.5rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.plan-features li [data-icon] { color: var(--color-primary); flex-shrink: 0; }
.plan-featured .plan-features li [data-icon] { color: var(--color-red); }

/* Electric border canvas on featured plan */
.plan-electric-canvas {
  position: absolute;
  inset: -12px;              /* deve bater exato com PAD=12 no JS */
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  pointer-events: none;
  z-index: 0;
}
.plan-card.plan-featured > *:not(.plan-electric-canvas):not(.plan-badge) {
  position: relative;
  z-index: 1;
}
.plan-card.plan-featured .plan-badge { z-index: 2; }

/* ===== Como funciona — Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 1rem;
}
.step-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-red);
  text-transform: uppercase;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--color-red-soft);
  border: 1px solid rgba(204,0,0,.2);
  color: var(--color-red);
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.step-card p  { color: var(--color-muted); font-size: 0.88rem; line-height: 1.65; }
.step-divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, var(--color-red), transparent);
  margin-top: calc(0.72rem + 14px + 1rem);
  opacity: 0.4;
}

/* ===== Depoimentos ===== */
.depoimento-card {
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.depoimento-card:hover {
  border-color: rgba(204,0,0,.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(204,0,0,.06);
}
.depoimento-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0.9rem 0 1.1rem;
  line-height: 1.75;
}
.depoimento-autor { display: flex; align-items: center; gap: 0.7rem; }
.avatar-fallback {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.depoimento-autor strong { display: block; font-size: 0.88rem; }
.depoimento-autor span  { color: var(--color-muted); font-size: 0.78rem; }
.stars { display: flex; gap: 0.15rem; color: var(--color-red); margin-bottom: 0.25rem; }

/* ===== Horários ===== */
#tabela-horarios td:first-child { font-weight: 600; }

/* ===== Localização ===== */
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.localizacao-contatos { margin-top: 0.5rem; font-size: 0.92rem; }
.localizacao-contatos a:hover { color: var(--color-primary); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  box-shadow: 0 0 0 1px rgba(204,0,0,.06), 0 16px 40px rgba(0,0,0,.4);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.15s;
}
.faq-trigger:hover { color: var(--color-primary); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--color-muted);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), color 0.15s;
}
.faq-trigger:hover .faq-arrow { color: var(--color-primary); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--color-primary); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-body { max-height: 240px; }
.faq-body p {
  padding-bottom: 1.35rem;
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

/* ===== CTA / Agendar ===== */
.section-cta {
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%,  rgba(204,0,0,.07), transparent),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(255,138,0,.06), transparent),
    var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.agendar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.agendar-grid > div > h2 { margin-bottom: 0.75rem; }
.agendar-grid > div > p  { color: var(--color-muted); font-size: 1rem; margin-bottom: 1.5rem; }
.agendar-beneficios {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.lead-form { max-width: 440px; margin-left: auto; }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 3.5rem 0;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo  { width: fit-content; }
.footer-brand p {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 26ch;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.footer-social-link:hover {
  background: var(--color-red-soft);
  border-color: rgba(204,0,0,.3);
  color: var(--color-red);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3.5rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--color-text); }
.footer-address {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a { color: var(--color-muted); transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--color-text); }

/* ═══════════════════════════════════════════════════════
   GALLERY — horizontal spotlight scroll
   ═══════════════════════════════════════════════════════ */
.gallery-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0 2.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.gallery-track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem max(1.5rem, calc((100vw - 1180px) / 2 + 1.5rem));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-padding-left: max(1.5rem, calc((100vw - 1180px) / 2 + 1.5rem));
}
.gallery-track:active { cursor: grabbing; }
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-card {
  flex-shrink: 0;
  width: 280px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  scroll-snap-align: start;
  transition: transform 0.45s cubic-bezier(.03,.98,.52,.99),
              box-shadow 0.45s;
}
.gallery-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .65),
              0 0 0 1px rgba(204, 0, 0, .18),
              0 0 40px rgba(204, 0, 0, .08);
}
.gallery-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s cubic-bezier(.03,.98,.52,.99);
}
.gallery-card:hover .gallery-card-bg {
  transform: scale(1.08);
}
.gallery-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

/* ─── Plan badge fire variant ─── */
.plan-badge-fire {
  background: linear-gradient(90deg, #cc0000, #ff5500) !important;
  box-shadow: 0 4px 16px rgba(255, 85, 0, 0.45) !important;
}

/* ─── WhatsApp floating button ─── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.35rem 0.8rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.40),
              0 2px 10px rgba(0, 0, 0, 0.25);
  z-index: 9900;
  transition: transform 0.28s cubic-bezier(.34, 1.56, .64, 1),
              box-shadow 0.25s,
              background 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.50),
              0 4px 14px rgba(0, 0, 0, 0.3);
  background: #22c55e;
}
.whatsapp-float svg {
  flex-shrink: 0;
}
.whatsapp-float-label {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .whatsapp-float { padding: 1rem; }
  .whatsapp-float-label { display: none; }
  .gallery-card { width: 240px; height: 300px; }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.2,0,0,1), transform 0.6s cubic-bezier(0.2,0,0,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 4rem;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }
  .hero-visual { order: -1; }
  .hero-visual-inner { animation: none; }
  .hero-badge-float { display: none; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 40%; }

  .gamificacao-inner  { grid-template-columns: 1fr; }
  .gamificacao-visual { order: -1; }
  .gam-notification   { display: none; }

  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.plan-featured { transform: none; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-divider { display: none; }
  .step-card { align-items: flex-start; text-align: left; }

  .localizacao-grid { grid-template-columns: 1fr; }
  .agendar-grid { grid-template-columns: 1fr; }
  .lead-form { max-width: none; margin-left: 0; }

  .site-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); padding-top: 0; }
  .footer-bottom-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 600px) {
  .footer-links { grid-template-columns: 1fr; }
}
