:root {
  --bg: #0b0216;
  --glass: rgba(255, 255, 255, 0.04);
  --accent1: #8a2be2;
  --accent2: #ff66b2;
  --neon: linear-gradient(90deg, var(--accent1), var(--accent2));
  --glass-border: rgba(255, 255, 255, 0.06);
  --text: #eae6f8;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(138, 43, 226, 0.12), transparent 6%),
              radial-gradient(900px 500px at 90% 90%, rgba(255, 102, 178, 0.08), transparent 6%),
              var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
  color: var(--text);
}

/* Layout */
.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-start;
  padding: 8px 32px;
  backdrop-filter: blur(6px);
}

/* GLASS BAR */
.navglass {
  width: fit-content;
  min-width: 520px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 40px;
  backdrop-filter: blur(10px);
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 42px;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

nav a.active {
  font-weight: 700;
}
/* Logo personalizada */
.site-logo {
  height: 48px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(255, 102, 178, 0.2);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

nav a:hover {
  background: linear-gradient(90deg, rgba(138,43,226,0.12), rgba(255,102,178,0.08));
  transform: translateY(-2px);
}

/* Active link underline */
nav a.active {
  position: relative;
}

nav a.active::after {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -8px;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  filter: blur(6px);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 140px 6vw 60px;
  position: relative;
}

.hero-left {
  flex: 1;
  max-width: 680px;
}
/* =====================================================
   Titulo
===================================================== */
.academy-location.premium {
  margin: 120px auto;
  padding: 0 6vw;
  max-width: 1200px;
}

.location-wrapper {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 28px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );
  border: 1px solid var(--glass-border);
}

.glow-orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,102,178,.25), transparent 60%);
  filter: blur(40px);
}

.location-visual {
  max-width: 620px;
}

.location-visual .badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: var(--neon);
  color: #fff;
}

.location-visual h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.location-visual h2 span {
  background: var(--neon);
  -webkit-background-clip: text;
  color: transparent;
}

.location-visual p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-neon {
  display: inline-block;
  padding: 16px 26px;
  border-radius: 14px;
  background: var(--neon);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-neon:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(138,43,226,.45);
}

.location-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.stat {
  text-align: center;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
}

.stat span {
  font-size: 14px;
  opacity: 0.8;
}

/* =====================================================
   PLATAFORMAS
===================================================== */
.academy-intro {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

.academy-intro h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.academy-intro p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.academy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
}

.academy-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 25px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.academy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.academy-card img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

.academy-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.academy-card p {
  font-size: 15px;
  line-height: 1.5;
}

.academy-card .why {
  font-weight: 600;
  margin-top: 10px;
}

.academy-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg,#8a2be2,#ff66b2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.academy-location {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}

/*Localização*/ 
.academy-location {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 6vw;
}

.location-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 40px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.location-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(138,43,226,.2), rgba(255,102,178,.2));
  margin-bottom: 16px;
}

.location-text h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.location-text h2 span {
  background: var(--neon);
  -webkit-background-clip: text;
  color: transparent;
}

.location-text p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
}

.location-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.location-benefits li {
  margin-bottom: 8px;
  font-size: 15px;
  opacity: 0.9;
}

.btn-location {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--neon);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-location:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(138,43,226,.35);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  border: none;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .location-card {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    min-height: 240px;
  }
}


/* Footer */
footer {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding: 40px 6vw;
  text-align: center;
}

.footer-container h4 {
  font-family: 'Orbitron';
  font-size: 16px;
  color: transparent;
  background: var(--neon);
  margin-bottom: 10px;
}

.footer-container a {
  color: rgba(245,242,255,0.88);
  text-decoration: none;
  display: block;
  margin: 4px 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-container a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255,102,178,0.7);
}

.footer-bottom {
  text-align: center;
  padding: 14px;
  background: rgba(255,255,255,0.02);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  animation: shine 6s linear infinite;
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* Ícones sociais */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
  opacity: 1;
}

@media (max-width: 980px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .social-icons {
    margin-top: 10px;
  }
}
/* =====================================================
   RESPONSIVO
===================================================== */
@media (max-width: 768px) {
  .platform-card {
    transform: none !important;
  }
}
