:root {
  --bg-deep: #091b44;
  --bg-ocean: #00a6ff;
  --bg-lagoon: #00d4b8;
  --bg-sun: #ffb703;
  --bg-coral: #ff4f8b;
  --bg-purple: #6a4cff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text-main: #0b1230;
  --text-soft: rgba(11, 18, 48, 0.78);
  --line: rgba(15, 35, 90, 0.15);
  --shadow-soft: 0 18px 44px rgba(10, 16, 50, 0.14);
  --shadow-strong: 0 32px 72px rgba(10, 16, 50, 0.24);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --header-h: 82px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  min-height: 100%;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(55rem 38rem at -10% -8%, rgba(255, 79, 139, 0.4), transparent 60%),
    radial-gradient(50rem 40rem at 108% 8%, rgba(0, 212, 184, 0.38), transparent 58%),
    radial-gradient(42rem 30rem at 52% 48%, rgba(255, 183, 3, 0.22), transparent 60%),
    linear-gradient(175deg, #fef8ff 0%, #f0fbff 47%, #f8fff5 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(106, 76, 255, 0.55);
  outline-offset: 4px;
}

.container {
  width: min(1180px, 100% - 14%);
  margin: 0 auto;
}

.muted {
  color: var(--text-soft);
  margin-top: 10px;
}

.skipLink {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 2200;
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skipLink:focus {
  transform: translateY(0);
}

.topProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1700;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.topProgress span {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--bg-purple), var(--bg-coral), var(--bg-sun));
  box-shadow: 0 8px 25px rgba(106, 76, 255, 0.44);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1600;
  padding: 14px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(11, 19, 56, 0.14);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logoImg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 9px 18px rgba(0, 166, 255, 0.35));
}

.logoText {
  font-family: "Bungee", system-ui, sans-serif;
  font-size: 19px;
  letter-spacing: 0.03em;
  color: #08306f;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: rgba(8, 34, 92, 0.92);
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

nav a:hover {
  transform: translateY(-1px);
  background: rgba(106, 76, 255, 0.11);
  border-color: rgba(106, 76, 255, 0.2);
}

nav a.is-active {
  color: #0b1134;
  background: linear-gradient(130deg, rgba(0, 166, 255, 0.2), rgba(255, 79, 139, 0.17));
  border-color: rgba(12, 39, 107, 0.2);
  box-shadow: 0 10px 24px rgba(16, 38, 96, 0.12);
}

.menuToggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  padding: 10px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.menuToggle span {
  height: 3px;
  border-radius: 999px;
  background: #0d3f91;
  transition: 0.25s ease;
}

header.menu-open .menuToggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

header.menu-open .menuToggle span:nth-child(2) {
  opacity: 0;
}

header.menu-open .menuToggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  min-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 61, 0.38), rgba(7, 20, 61, 0.64));
  z-index: 1;
  pointer-events: none;
}

.carrossel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: saturate(1.24) contrast(1.1) brightness(0.74);
  transform: scale(1.07) translate3d(0, var(--parallax, 0px), 0);
  transition: opacity 920ms ease, transform 1400ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.slides img.is-active {
  opacity: 1;
}

.heroGlow {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.92;
  pointer-events: none;
}

.heroGlowA {
  width: 280px;
  height: 280px;
  top: 16%;
  right: 11%;
  background: radial-gradient(circle at 28% 26%, rgba(255, 183, 3, 0.82), rgba(255, 79, 139, 0.55), transparent 74%);
  animation: bob 6s ease-in-out infinite;
}

.heroGlowB {
  width: 240px;
  height: 240px;
  bottom: 10%;
  left: 8%;
  background: radial-gradient(circle at 32% 30%, rgba(0, 212, 184, 0.86), rgba(0, 166, 255, 0.45), transparent 76%);
  animation: bob 7.4s ease-in-out infinite reverse;
}

.heroTexto {
  width: min(800px, 92vw);
  position: relative;
  z-index: 3;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 42px;
  text-align: left;
  background: linear-gradient(145deg, rgba(6, 23, 68, 0.76), rgba(38, 12, 80, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 34px 88px rgba(4, 10, 33, 0.48);
  backdrop-filter: blur(12px);
  animation: fadeUp 800ms ease;
}

.heroKicker {
  font-family: "Baloo 2", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.heroTexto h1 {
  font-family: "Bungee", system-ui, sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.heroTexto p {
  margin-top: 14px;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--bg-coral), #ff7a37, var(--bg-sun));
  box-shadow: 0 14px 32px rgba(255, 79, 139, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.botao:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(255, 79, 139, 0.45);
}

.botao.botaoSec {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.heroBadges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.heroBadges li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 600;
}

.scrollHint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.scrollHintDot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(130deg, #fff, #ffdc5b);
  box-shadow: 0 8px 18px rgba(255, 223, 88, 0.5);
  animation: pulse 1.4s ease-in-out infinite;
}

.scrollHintText {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.secao {
  position: relative;
  padding: 96px 8%;
}

.cinza {
  background:
    radial-gradient(40rem 30rem at 8% 20%, rgba(0, 212, 184, 0.12), transparent 70%),
    radial-gradient(40rem 26rem at 92% 12%, rgba(255, 79, 139, 0.13), transparent 70%),
    rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(11, 30, 80, 0.08);
  border-bottom: 1px solid rgba(11, 30, 80, 0.08);
}

.secao h2 {
  font-family: "Bungee", system-ui, sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  color: #091e5d;
  margin-bottom: 14px;
}

.secao h2::after {
  content: "";
  display: block;
  width: 94px;
  height: 6px;
  border-radius: 999px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--bg-purple), var(--bg-coral), var(--bg-sun));
}

.secao p {
  max-width: 72ch;
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 1.03rem;
}

.miniStats {
  padding-top: 28px;
  padding-bottom: 20px;
}

.miniStatsGrid {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  margin-top: 0;
}

.miniStat {
  text-align: center;
  padding: 22px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(18, 40, 96, 0.12);
  box-shadow: var(--shadow-soft);
}

.miniStat strong {
  display: block;
  font-family: "Bungee", system-ui, sans-serif;
  font-size: 1.25rem;
  color: #0a388f;
}

.miniStat span {
  display: block;
  margin-top: 7px;
  color: rgba(11, 18, 48, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.topicChips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topicChips span {
  display: inline-block;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #0e2f7b;
  background: rgba(0, 166, 255, 0.14);
  border: 1px solid rgba(0, 166, 255, 0.24);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 18px), 0) scale(0.985);
  filter: blur(7px);
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 700ms ease, filter 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.card {
  border-radius: var(--radius-md);
  padding: 30px 22px;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(0, 166, 255, 0.5), rgba(255, 79, 139, 0.45), rgba(255, 183, 3, 0.5)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.cardIcon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: linear-gradient(130deg, rgba(0, 166, 255, 0.2), rgba(255, 183, 3, 0.24));
  border: 1px solid rgba(13, 50, 133, 0.16);
}

.card h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.35rem;
  color: #0a2164;
}

.card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.97rem;
}

.vibeCard {
  text-align: left;
  background:
    linear-gradient(var(--surface-strong), var(--surface-strong)) padding-box,
    linear-gradient(130deg, rgba(106, 76, 255, 0.55), rgba(255, 79, 139, 0.55), rgba(0, 212, 184, 0.5)) border-box;
}

.vibeCard h3 {
  font-size: 1.42rem;
}

.cardPlano {
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  background:
    linear-gradient(var(--surface-strong), var(--surface-strong)) padding-box,
    linear-gradient(135deg, rgba(0, 166, 255, 0.45), rgba(255, 183, 3, 0.55)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cardPlano:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.cardPlano h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.52rem;
  color: #0a2568;
}

.cardPlano p {
  margin-top: 8px;
  color: var(--text-soft);
}

.cardPlano button {
  margin-top: 22px;
  border: 0;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0f60ff, #6a4cff, #ff4f8b);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(33, 52, 140, 0.28);
  transition: transform 140ms ease;
}

.cardPlano button:hover {
  transform: translateY(-2px);
}

.destaque {
  border-color: rgba(255, 79, 139, 0.54);
  box-shadow: 0 26px 58px rgba(255, 79, 139, 0.24);
}

.clubeGrid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
}

.clubeFigure img {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.carteirinhaCard {
  width: min(560px, 100%);
  margin: 30px auto 0;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.carteirinhaQr {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(10, 16, 50, 0.14);
}

.carteirinhaUrl {
  display: inline-flex;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(130deg, #0f60ff, #00a6ff, #00d4b8);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.carteirinhaHint {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
}

.galeria {
  position: relative;
  margin-top: 30px;
}

.galeriaViewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 60px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.galeriaViewport::-webkit-scrollbar {
  display: none;
}

.galeriaViewport {
  scrollbar-width: none;
}

.galeriaTrack {
  list-style: none;
  display: flex;
  gap: 16px;
}

.galeriaItem {
  flex: 0 0 auto;
  width: clamp(240px, 36vw, 370px);
  scroll-snap-align: center;
}

.galeriaFigure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.galeriaFigure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.03);
}

.galeriaCaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 24, 73, 0.16);
  color: #102b74;
  font-size: 0.82rem;
  font-weight: 700;
}

.galeriaBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  color: #14398b;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
}

.galeriaBtn[data-dir="-1"] {
  left: 12px;
}

.galeriaBtn[data-dir="1"] {
  right: 12px;
}

.galeriaBtn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.contatoForm {
  max-width: 760px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contatoForm label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 700;
  color: #0b2f83;
}

.contatoForm input,
.contatoForm textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 0.97rem;
  background: rgba(255, 255, 255, 0.9);
}

.contatoForm textarea {
  resize: vertical;
  min-height: 120px;
}

.contatoForm input:focus,
.contatoForm textarea:focus {
  border-color: rgba(106, 76, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(106, 76, 255, 0.13);
  outline: none;
}

.contatoForm .botao {
  align-self: flex-start;
}

footer {
  margin-top: 36px;
  padding: 40px 8%;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(130deg, #081947, #1e0e56, #0a4b9f);
}

.toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 900;
  background: linear-gradient(140deg, #0f60ff, #6a4cff, #ff4f8b);
  box-shadow: 0 20px 42px rgba(32, 45, 120, 0.34);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toTop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

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

@media (max-width: 980px) {
  .container {
    width: min(1180px, 100% - 10%);
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.92);
    padding: 0 8%;
    box-shadow: 0 20px 42px rgba(11, 19, 56, 0.12);
    transition: max-height 300ms ease, opacity 250ms ease;
  }

  header.menu-open nav {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
    padding: 14px 8% 18px;
  }

  nav a {
    width: 100%;
    padding: 12px 14px;
  }

  .menuToggle {
    display: flex;
  }

  .heroTexto {
    text-align: center;
    padding: 40px 22px;
  }

  .heroTexto p {
    margin-left: auto;
    margin-right: auto;
  }

  .heroActions,
  .heroBadges {
    justify-content: center;
  }

  .miniStatsGrid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

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

  .galeriaViewport {
    padding: 10px 54px 14px;
  }
}

@media (max-width: 640px) {
  .secao {
    padding: 80px 6%;
  }

  header {
    padding: 12px 6%;
  }

  .logoText {
    font-size: 16px;
  }

  .miniStatsGrid,
  .cards {
    grid-template-columns: 1fr;
  }

  .galeriaBtn {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .heroGlow,
  .scrollHintDot,
  .heroTexto,
  .slides img,
  .toTop,
  .js .reveal {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
