:root {
  --ink: #111111;
  --paper: #f7f2e8;
  --white: #ffffff;
  --lime: #c6ff00;
  --green: #2f6f4e;
  --mint: #dff5df;
  --clay: #ef6b2e;
  --black-soft: #1b1b1b;
  --gray: #706d66;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.2);
  --radius: 8px;
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  z-index: 1000;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(198, 255, 0, 0.55);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3.6vw, 54px);
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.05));
  opacity: 1;
  transition: opacity 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 78px;
  color: var(--ink);
  background: rgba(247, 242, 232, 0.92);
  box-shadow: 0 14px 44px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before,
.site-header.is-open::before {
  opacity: 0;
}

.brand {
  position: relative;
  display: grid;
  grid-column: 2;
  justify-items: center;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: transform 0.25s ease;
}

.brand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 18px;
  background: var(--lime);
  opacity: 0.72;
  transform: translate(-50%, -50%) rotate(-8deg);
  filter: blur(1px);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
  overflow: hidden;
  transition: width 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  position: relative;
  max-width: none;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 0.62rem;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  transform: translateY(3px);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  width: 68px;
  height: 68px;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.18);
}

.site-header.is-scrolled .brand-name,
.site-header.is-open .brand-name {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .main-nav,
.site-header.is-open .main-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.nav-left {
  justify-self: end;
}

.nav-right {
  justify-self: start;
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  background: rgba(17, 17, 17, 0.06);
}

.main-nav .nav-cta {
  padding: 11px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(198, 255, 0, 0.2);
}

.main-nav .nav-cta::after {
  display: none;
}

.mobile-nav {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--lime);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.side-nav {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 800;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.side-nav a {
  position: relative;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(10px);
}

.side-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.side-nav a span {
  position: absolute;
  right: 24px;
  top: 50%;
  width: max-content;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.8);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.side-nav a:hover span {
  opacity: 1;
  transform: translate(0, -50%);
}

.side-nav a.is-active {
  transform: scale(1.28);
  border-color: var(--lime);
  background: var(--lime);
}

.side-nav a.is-active::before {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88svh;
  color: var(--white);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 86px;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6500ms linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.16) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.final-cta .eyebrow {
  color: var(--lime);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 4px;
  background: currentColor;
  transform: skewX(-22deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
  font-weight: 950;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  text-transform: uppercase;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 5.25rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 800;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(198, 255, 0, 0.26);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  color: var(--lime);
}

.slider-controls {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-controls button:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0;
}

.slider-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--lime);
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 132px) 0;
  overflow: hidden;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.09), transparent 34%),
    var(--black-soft);
}

.section-warm {
  background:
    repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.04) 0 1px, transparent 1px 18px),
    #f1d7b7;
}

.section-price {
  background: #fffaf0;
}

.section-party {
  color: var(--white);
  background: var(--green);
}

.section-events {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(239, 107, 46, 0.18), transparent 34%),
    var(--black-soft);
}

.section-schools {
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.section-schools::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5)),
    rgba(0, 0, 0, 0.18);
}

.schools-bg-slider,
.schools-bg-slide {
  position: absolute;
  inset: 0;
}

.schools-bg-slider {
  z-index: -2;
  overflow: hidden;
}

.schools-bg-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 5.5s ease;
}

.schools-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.schools-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-projects {
  background: var(--ink);
  color: var(--white);
}

.section-squad {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.14), transparent 36%),
    var(--black-soft);
}

.split,
.pista-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.split-reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.split > *,
.pista-layout > *,
.location-layout > * {
  min-width: 0;
}

.split .section-copy h2 {
  max-width: 9.6em;
  font-size: clamp(2.2rem, 4vw, 4.55rem);
  text-wrap: balance;
}

#aulas .section-copy h2 {
  max-width: 12em;
  font-size: clamp(2rem, 3.35vw, 3.9rem);
}

#aulas .split {
  align-items: start;
}

#aulas .framed-photo {
  align-self: start;
  height: clamp(390px, 35vw, 455px);
  min-height: 0;
}

#aulas .framed-photo img {
  height: 100%;
  object-position: center top;
}

#aulas .aulas-carousel {
  align-self: start;
  height: clamp(390px, 35vw, 455px);
  min-height: 0;
}

.section-copy p {
  max-width: 650px;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.section-dark .section-copy p,
.section-events .section-copy p,
.section-party .section-copy p,
.section-projects p,
.section-squad .section-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-heading p {
  max-width: 700px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 1.1rem;
}

.section-schools .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack-main,
.image-stack-float,
.framed-photo img,
.party-photo img,
.location-panel img,
.media-wide img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack-main {
  position: absolute;
  inset: 0 72px 64px 0;
}

.image-stack-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 260px;
  border: 8px solid var(--paper);
}

.about-carousel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
  box-shadow: var(--shadow);
}

.about-carousel-viewport,
.about-carousel-slide {
  position: absolute;
  inset: 0;
}

.about-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 3.8s ease;
}

.about-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-carousel-slide img {
  height: 100%;
  object-fit: cover;
}

.about-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.about-carousel-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.about-carousel-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-carousel-controls > button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.about-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.about-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0;
}

.about-carousel-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--lime);
}

.pista-carousel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.pista-carousel-viewport,
.pista-carousel-slide {
  position: absolute;
  inset: 0;
}

.pista-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 3.8s ease;
}

.pista-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.pista-carousel-slide img {
  height: 100%;
  object-fit: cover;
}

.pista-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.pista-carousel-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pista-carousel-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pista-carousel-controls > button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.pista-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.pista-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0;
}

.pista-carousel-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--lime);
}

.aulas-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
  box-shadow: var(--shadow);
}

.aulas-carousel-viewport,
.aulas-carousel-slide {
  position: absolute;
  inset: 0;
}

.aulas-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 3.8s ease;
}

.aulas-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.aulas-carousel-slide img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.aulas-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.aulas-carousel-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.aulas-carousel-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.aulas-carousel-controls > button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.aulas-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.aulas-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0;
}

.aulas-carousel-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--lime);
}

.festa-carousel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.festa-carousel-viewport,
.festa-carousel-slide {
  position: absolute;
  inset: 0;
}

.festa-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 3.8s ease;
}

.festa-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.festa-carousel-slide img {
  height: 100%;
  object-fit: cover;
}

.festa-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.festa-carousel-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.festa-carousel-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.festa-carousel-controls > button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.festa-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.festa-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0;
}

.festa-carousel-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--lime);
}

.eventos-carousel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.eventos-carousel-viewport,
.eventos-carousel-slide {
  position: absolute;
  inset: 0;
}

.eventos-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 3.8s ease;
}

.eventos-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.eventos-carousel-slide img {
  height: 100%;
  object-fit: cover;
}

.eventos-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.eventos-carousel-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.eventos-carousel-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.eventos-carousel-controls > button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.eventos-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.eventos-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0;
}

.eventos-carousel-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--lime);
}

#eventos .focus-row span {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--lime);
}

#eventos .focus-row {
  flex-wrap: nowrap;
  gap: 10px;
}

#eventos .section-copy .btn-eventos {
  margin-top: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.18);
}

#eventos .section-copy .btn-eventos:hover {
  box-shadow: 0 20px 42px rgba(255, 255, 255, 0.24);
}

.media-wide {
  min-height: 560px;
  transform: rotate(-1.5deg);
}

.pista-layout {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.section-light .check-list li,
.section-price .check-list li {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
  transform: translateY(-60%) rotate(-45deg);
}

#festas .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#festas .check-list li {
  min-height: 56px;
}

#festas .section-copy .btn {
  margin-top: 18px;
}

.audience-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.08);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-weight: 950;
}

.feature-card p,
.price-card p {
  color: rgba(17, 17, 17, 0.66);
}

.focus-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.focus-row span {
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 950;
  text-transform: uppercase;
}

.framed-photo,
.party-photo,
.location-panel {
  min-height: 520px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.price-card {
  min-height: 320px;
  background: var(--white);
}

.price-card-featured {
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px),
    var(--ink);
}

.price-card-featured p,
.price-card-featured .price-note {
  color: rgba(255, 255, 255, 0.78);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--ink) !important;
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
}

.price-card-featured .price-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.price-list strong {
  white-space: nowrap;
}

.price-note {
  margin: 22px 0 0;
}

.group-prices {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.group-table {
  display: grid;
  gap: 10px;
}

.group-table div {
  display: grid;
  grid-template-columns: 1fr auto minmax(120px, 0.55fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--white);
}

.group-table em {
  color: var(--gray);
  font-style: normal;
  text-align: right;
}

.party-photo {
  transform: rotate(1.4deg);
}

address {
  margin: 0 0 24px;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-style: normal;
  font-weight: 850;
}

.hours {
  margin: 0 0 24px;
}

.hours p {
  margin-bottom: 7px;
}

.location-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.school-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.school-marquee span {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(247, 242, 232, 0.94);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--lime);
  backdrop-filter: blur(8px);
}

.project-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.25fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: stretch;
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(198, 255, 0, 0.12), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
}

.project-copy {
  display: grid;
  align-content: center;
}

.project-details {
  display: grid;
  gap: 24px;
}

.project-details > p {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 750;
}

.especial-carousel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.especial-carousel-viewport,
.especial-carousel-slide {
  position: absolute;
  inset: 0;
}

.especial-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 3.8s ease;
}

.especial-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.especial-carousel-slide img {
  height: 100%;
  object-fit: cover;
}

.especial-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.especial-carousel-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.especial-carousel-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.especial-carousel-controls > button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.especial-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.especial-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0;
}

.especial-carousel-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--lime);
}

.squad-carousel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.squad-carousel-viewport,
.squad-carousel-slide {
  position: absolute;
  inset: 0;
}

.squad-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 3.8s ease;
}

.squad-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.squad-carousel-slide img {
  height: 100%;
  object-fit: cover;
}

.squad-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.squad-carousel-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.squad-carousel-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.squad-carousel-controls > button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.squad-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.squad-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0;
}

.squad-carousel-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--lime);
}

.btn-squad {
  margin-top: 26px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(198, 255, 0, 0.26);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 10px 20px 10px 12px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.28), 0 0 26px rgba(198, 255, 0, 0.24);
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.32), 0 0 32px rgba(198, 255, 0, 0.34);
}

.floating-whatsapp svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: block;
}

.floating-whatsapp .whatsapp-badge {
  fill: var(--ink);
}

.floating-whatsapp .whatsapp-mark {
  fill: var(--white);
}

.final-cta {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: 120px 0;
}

.final-cta-bg,
.final-cta-bg::after {
  position: absolute;
  inset: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.final-cta-bg::after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.36));
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 900px;
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand p {
  margin: 0;
  font-weight: 800;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-socials a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.footer-inner > a {
  color: var(--lime);
  font-weight: 900;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .main-nav {
    padding: 7px;
    font-size: 0.72rem;
  }

  .main-nav a {
    padding: 9px 8px;
  }

  .main-nav .nav-cta {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 78px;
    height: 78px;
  }

  .brand-name {
    font-size: 0.56rem;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .section-inner {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    padding: 10px 14px;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    transform: none;
  }

  .brand::before {
    width: 86px;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark,
  .site-header.is-open .brand-mark {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .mobile-nav {
    position: fixed;
    inset: 78px 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--ink);
    background: rgba(247, 242, 232, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    position: relative;
    padding: 14px 10px;
    border-radius: var(--radius);
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-nav a.is-active {
    background: rgba(17, 17, 17, 0.06);
  }

  .mobile-nav .nav-cta {
    margin-top: 8px;
    padding: 14px 16px;
    color: var(--ink);
    background: var(--lime);
    border-radius: var(--radius);
    text-align: center;
  }

  .side-nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 106px 0 84px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.66) 54%, rgba(0, 0, 0, 0.4) 100%),
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .slider-controls {
    left: 14px;
    right: auto;
    bottom: 24px;
  }

  .split,
  .split-reverse,
  .pista-layout,
  .location-layout,
  .group-prices,
  .project-band {
    grid-template-columns: 1fr;
  }

  .image-stack,
  .about-carousel,
  .pista-carousel,
  .aulas-carousel,
  .festa-carousel,
  .eventos-carousel,
  .especial-carousel,
  .squad-carousel,
  .framed-photo,
  .party-photo,
  .location-panel,
  .media-wide {
    min-height: 360px;
  }

  .image-stack-main {
    inset: 0 36px 54px 0;
  }

  .image-stack-float {
    height: 190px;
  }

  #aulas .framed-photo {
    height: auto;
    min-height: 0;
  }

  #aulas .framed-photo img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  #aulas .aulas-carousel {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

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

  .group-table div {
    grid-template-columns: 1fr auto;
  }

  .group-table em {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-mark,
  .site-header.is-scrolled .brand-mark,
  .site-header.is-open .brand-mark {
    width: 58px;
    height: 58px;
  }

  .hero-actions,
  .hero-stats {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .feature-card,
  .price-card {
    min-height: auto;
  }

  .section {
    padding: 70px 0;
  }

  #eventos .focus-row {
    flex-wrap: wrap;
  }

  #festas .check-list {
    grid-template-columns: 1fr;
  }

  .about-carousel {
    min-height: 330px;
  }

  .about-carousel-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .about-carousel-controls > button {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .pista-carousel {
    min-height: 360px;
  }

  .pista-carousel-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .pista-carousel-controls > button {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .aulas-carousel-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .aulas-carousel-controls > button {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .festa-carousel {
    min-height: 360px;
  }

  .festa-carousel-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .festa-carousel-controls > button {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .eventos-carousel {
    min-height: 360px;
  }

  .eventos-carousel-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .eventos-carousel-controls > button {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .especial-carousel {
    min-height: 300px;
  }

  .especial-carousel-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .especial-carousel-controls > button {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .squad-carousel {
    min-height: 360px;
  }

  .squad-carousel-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .squad-carousel-controls > button {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .about-carousel-dots,
  .pista-carousel-dots,
  .aulas-carousel-dots,
  .festa-carousel-dots,
  .eventos-carousel-dots,
  .especial-carousel-dots,
  .squad-carousel-dots {
    gap: 6px;
    padding: 7px 9px;
  }

  .about-carousel-dots button,
  .pista-carousel-dots button,
  .aulas-carousel-dots button,
  .festa-carousel-dots button,
  .eventos-carousel-dots button,
  .especial-carousel-dots button,
  .squad-carousel-dots button {
    width: 7px;
    height: 7px;
  }

  .about-carousel-dots button.is-active,
  .pista-carousel-dots button.is-active,
  .aulas-carousel-dots button.is-active,
  .festa-carousel-dots button.is-active,
  .eventos-carousel-dots button.is-active,
  .especial-carousel-dots button.is-active,
  .squad-carousel-dots button.is-active {
    width: 20px;
  }

  .price-list li {
    display: grid;
    gap: 4px;
  }

  .price-list strong {
    white-space: normal;
  }

  .school-marquee span {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 10px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-slide,
  .hero-slide.is-active,
  .about-carousel-slide,
  .about-carousel-slide.is-active,
  .pista-carousel-slide,
  .pista-carousel-slide.is-active,
  .aulas-carousel-slide,
  .aulas-carousel-slide.is-active,
  .festa-carousel-slide,
  .festa-carousel-slide.is-active,
  .eventos-carousel-slide,
  .eventos-carousel-slide.is-active,
  .especial-carousel-slide,
  .especial-carousel-slide.is-active,
  .squad-carousel-slide,
  .squad-carousel-slide.is-active {
    transform: none;
  }
}
