/* ============================================================
   BITENCKIDS — stylesheet
   ============================================================ */

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

:root {
  --purple:    #7C3AED;
  --purple-lt: #A78BFA;
  --blue:      #2563EB;
  --cyan:      #06B6D4;
  --green:     #10B981;
  --pink:      #EC4899;
  --yellow:    #F59E0B;
  --orange:    #F97316;

  --bg:        #06060F;
  --bg2:       #0D0D1E;
  --bg3:       #12122A;
  --card:      rgba(255,255,255,0.04);
  --card-bdr:  rgba(255,255,255,0.08);
  --text:      #F1F5F9;
  --muted:     #94A3B8;

  --grad:      linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
  --grad2:     linear-gradient(135deg, var(--blue), var(--cyan));
  --grad3:     linear-gradient(135deg, var(--pink), var(--orange));

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;

  --shadow: 0 25px 60px rgba(0,0,0,.5);
  --glow-purple: 0 0 40px rgba(124,58,237,.4);
  --glow-pink:   0 0 40px rgba(236,72,153,.4);
  --glow-cyan:   0 0 40px rgba(6,182,212,.3);

  --nav-h: 72px;
  --section-pad: clamp(5rem, 10vw, 9rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 99px; }

/* ── Cursor glow ── */
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 0;
  transition: transform 80ms linear;
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: var(--section-pad) 0; position: relative; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.25);
  padding: .35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent { color: var(--cyan); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 99px;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: .75rem 1.75rem;
  font-size: .95rem;
  box-shadow: 0 8px 32px rgba(124,58,237,.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(124,58,237,.6);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: .75rem 1.75rem;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--purple-lt);
  color: var(--purple-lt);
  transform: translateY(-3px);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(124,58,237,.5); }
  50%       { box-shadow: 0 8px 48px rgba(236,72,153,.7), 0 0 0 12px rgba(124,58,237,.08); }
}

/* ── Reveal animations ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal         { transform: translateY(40px); }
.reveal-left    { transform: translateX(-60px); }
.reveal-right   { transform: translateX(60px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(6,6,15,.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 99px;
  transition: width .3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,6,15,.92) 0%,
    rgba(124,58,237,.25) 50%,
    rgba(6,6,15,.88) 100%
  );
  z-index: 1;
}

/* floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.shape-1 { width: 500px; height: 500px; background: rgba(124,58,237,.25); top: -100px; right: -100px; }
.shape-2 { width: 350px; height: 350px; background: rgba(236,72,153,.2); bottom: 0; left: 10%; }
.shape-3 { width: 250px; height: 250px; background: rgba(6,182,212,.2); top: 40%; left: 60%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 24px 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  padding: .4rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.hero-sub {
  color: rgba(241,245,249,.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

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

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hl-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  padding: .55rem 1.1rem;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--text);
}
.hl-icon { font-size: 1.1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator span {
  width: 4px; height: 10px;
  background: var(--text);
  border-radius: 99px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}


/* ============================================================
   FEATURE VIDEO
   ============================================================ */
.feature-video {
  background: var(--bg);
  padding-bottom: 0;
}

.feature-video-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.fv-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,.25);
  background: #000;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.04),
    0 0 60px rgba(124,58,237,.15);
}
.fv-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--r-lg);
  background: var(--grad);
  opacity: .25;
  filter: blur(28px);
  z-index: -1;
}

.fv-player {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  background: #000;
}

@media (max-width: 768px) {
  .fv-frame { border-radius: var(--r-md); }
  .fv-player { max-height: 70vh; }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-media { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo {
  width: 100%; height: 500px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: 1.5rem; left: -1.5rem;
  background: rgba(12,12,30,.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}
.about-badge-float div strong { display: block; font-size: .9rem; }
.about-badge-float div small  { color: var(--muted); font-size: .75rem; }

.about-photo-pending {
  position: absolute;
  top: 1rem; right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(12,12,30,.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245,158,11,.4);
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .02em;
  padding: .45rem .85rem;
  border-radius: 99px;
  max-width: 88%;
  text-align: left;
  line-height: 1.3;
}
.pp-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}

.about-card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: var(--r-xl);
}

.about-text .section-title { text-align: left; }

.about-desc {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.about-desc strong { color: var(--text); }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: .95rem;
}
.list-icon {
  width: 40px; height: 40px;
  background: var(--card);
  border: 1px solid var(--card-bdr);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--card);
  border: 1px solid var(--card-bdr);
  padding: .5rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
  color: var(--muted);
  transition: all .2s;
}
.contact-chip:hover {
  border-color: var(--purple-lt);
  color: var(--text);
  background: rgba(124,58,237,.1);
}


/* ============================================================
   BANNER PLACEHOLDER
   ============================================================ */
.banner-placeholder {
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.02),
    rgba(255,255,255,.02) 10px,
    transparent 10px,
    transparent 20px
  );
  border-top: 2px dashed rgba(255,255,255,.12);
  border-bottom: 2px dashed rgba(255,255,255,.12);
  padding: 3rem 1rem;
  margin-bottom: 3rem;
  text-align: center;
}
.banner-placeholder--dark {
  background: repeating-linear-gradient(
    45deg,
    rgba(124,58,237,.05),
    rgba(124,58,237,.05) 10px,
    transparent 10px,
    transparent 20px
  );
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .6;
}
.banner-icon { font-size: 2rem; }
.banner-inner p { font-weight: 700; color: var(--text); font-size: 1rem; }
.banner-inner small { color: var(--muted); font-size: .85rem; }
.banner-inner strong { color: var(--cyan); }


/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-bdr);
  border-radius: var(--r-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,.4);
  box-shadow: 0 20px 60px rgba(124,58,237,.2);
}
.service-card:hover::before { opacity: .05; }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: .5rem;
  position: relative;
}
.service-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
  position: relative;
}

.service-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--grad3);
  color: #fff;
  padding: .2rem .65rem;
  border-radius: 99px;
  position: absolute;
  top: 1.25rem; right: 1.25rem;
}

.service-card--cta {
  background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(236,72,153,.15));
  border-color: rgba(124,58,237,.3);
  display: flex;
  flex-direction: column;
}
.service-card--cta .btn { margin-top: auto; align-self: flex-start; }

.service-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(236,72,153,.12), rgba(6,182,212,.12));
  border-color: rgba(236,72,153,.3);
}
.service-tag--alt {
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
@media (max-width: 1024px) {
  .service-card--featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  .service-card--featured { grid-column: auto; }
}


/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule { background: var(--bg2); }

.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.day-col {
  background: var(--card);
  border: 1px solid var(--card-bdr);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.day-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: .6;
}
.day-col:hover {
  border-color: rgba(124,58,237,.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(124,58,237,.15);
}

.day-head {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.day-abbr {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.day-head h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}

.slot-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.slot {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px;
  padding: .85rem .95rem;
  transition: border-color .2s, background .2s;
}
.slot:hover {
  border-color: rgba(6,182,212,.3);
  background: rgba(6,182,212,.05);
}

.slot-time {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .5rem;
}
.st-hour {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.st-sep {
  color: var(--muted);
  font-weight: 700;
  font-size: .85rem;
  opacity: .6;
}

.period-pill {
  margin-left: auto;
  font-family: 'Poppins', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 99px;
  border: 1px solid;
}
.period-manha {
  color: var(--yellow);
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.3);
}
.period-tarde {
  color: var(--orange);
  background: rgba(249,115,22,.1);
  border-color: rgba(249,115,22,.3);
}
.period-noite {
  color: var(--purple-lt);
  background: rgba(167,139,250,.1);
  border-color: rgba(167,139,250,.35);
}

.slot-where strong {
  display: block;
  font-size: .88rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .15rem;
}
.slot-where small {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 500;
}

.schedule-note {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--card);
  border: 1px solid var(--card-bdr);
  border-radius: var(--r-sm);
  padding: 1rem 1.5rem;
}


/* ============================================================
   LOCATIONS
   ============================================================ */
.locations { background: var(--bg3); overflow: hidden; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.location-card {
  background: var(--card);
  border: 1px solid var(--card-bdr);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.location-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform .3s;
}
.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,.3);
  box-shadow: 0 20px 48px rgba(124,58,237,.15);
}
.location-card:hover::after { transform: scaleX(1); }

.loc-number {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 900;
  color: var(--purple-lt);
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.loc-icon { font-size: 2rem; margin-bottom: .75rem; }
.location-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}


/* ============================================================
   PARTNERS
   ============================================================ */
.partners { background: var(--bg3); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.partner-card {
  background: var(--card);
  border: 1px solid var(--card-bdr);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,.4);
  box-shadow: 0 20px 60px rgba(124,58,237,.2);
}

.partner-video {
  position: relative;
  background: #000;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--r-md);
}
.partner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .partner-video { max-width: 320px; }
}

.partner-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.partner-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  display: grid;
  place-items: center;
  margin-bottom: .25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
}
.partner-modalidade {
  display: inline-block;
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--grad2);
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 99px;
}
.partner-addr {
  color: var(--muted);
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  margin-top: .25rem;
  line-height: 1.5;
}


/* ── CTA banner image ── */
.cta-banner {
  width: 100%;
  overflow: hidden;
}
.cta-banner img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: #06060F;
  max-height: 600px;
}

.cta-section .container {
  margin-top: 3rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--bg2); }

.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(236,72,153,.12));
  border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--r-xl);
  padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 6vw, 6rem);
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-emoji-row {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  letter-spacing: .5rem;
}
.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-info-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-brand img {
  width: 38px; height: 38px;
  border-radius: 10px;
  object-fit: cover;
}
.footer-brand strong { display: block; font-family: 'Poppins', sans-serif; font-weight: 800; }
.footer-brand small  { color: var(--muted); font-size: .8rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-bdr);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all .2s;
}
.footer-social a:hover {
  border-color: var(--purple-lt);
  color: var(--purple-lt);
  background: rgba(124,58,237,.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}


/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 48px rgba(37,211,102,.65);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .locations-grid   { grid-template-columns: repeat(3, 1fr); }
  .partners-grid    { grid-template-columns: repeat(2, 1fr); }
  .week-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,6,15,.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links.open a { font-size: 1.1rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge-float { left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .week-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: 2.6rem; }
  .hero-highlights { gap: .5rem; }
  .hl-item { font-size: .78rem; padding: .45rem .9rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links  { gap: 1rem; }
}

@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .about-photo { height: 380px; }
  .cta-box { border-radius: var(--r-lg); padding: 2.5rem 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .cta-box .pulse {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .cta-info-row {
    flex-direction: column;
    gap: .5rem;
    font-size: .8rem;
  }
  .cta-info-row span:nth-child(even) { display: none; }
}
