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

:root {
  --bg-dark-1: #131314;
  --bg-dark-2: #0e0e0f;
  --bg-card: #161719;
  --bg-card-2: #201f20;
  --green: #7fff00;
  --green-dark: #3e4a34;
  --text-primary: #e5e2e3;
  --text-secondary: #b5b5b7;
  --text-muted: #bdcbae;
  --border-card: rgba(136, 149, 123, 0.1);
  --border-footer: rgba(62, 74, 52, 0.1);
  --border-nav: rgba(62, 74, 52, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark-1);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(19, 19, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-nav);
  height: 72px;
}

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

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #fffefd;
  letter-spacing: -1.6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fffefd;
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: #0b2000;
  background: var(--green);
  border: none;
  border-radius: 12px;
  padding: 8px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/fotos/hero-bg.webp') center/cover no-repeat;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,12,0) 0%, rgba(11,11,12,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14.9px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -2.6px;
  color: #fff;
  max-width: 1232px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 672px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  padding-top: 25px;
}

.btn-primary {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  background: var(--green);
  color: #000;
  border: none;
  padding: 20.5px 40px 21.5px 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 20px 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--green);
  color: #000;
}

/* ========== SECTION COMMON ========== */
.section {
  width: 100%;
  padding: 80px 24px;
}

.section-container {
  max-width: 1232px;
  margin: 0 auto;
}

.label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green);
}

.heading-2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.96px;
  color: var(--text-primary);
}

/* ========== DIFERENCIAIS ========== */
.diferenciais {
  background: var(--bg-dark-1);
}

.diferenciais-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.diferenciais-title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.diferenciais-divider {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.diferenciais-divider-line {
  width: 100%;
  height: 1px;
  background: var(--green-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.card-icon {
  margin-bottom: 24px;
}

.card-icon img {
  width: 40px;
  height: 45px;
}

.card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

.card-label {
  padding-top: 23.5px;
  border-top: 1px solid var(--green-dark);
  margin-top: auto;
}

.card-label span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--green);
}

/* ========== QUADRAS ========== */
.quadras {
  background: var(--bg-dark-2);
}

.quadras-layout {
  display: grid;
  grid-template-columns: 499px 1fr;
  gap: 0;
  align-items: start;
}

.quadras-text {
  display: flex;
  flex-direction: column;
  gap: 22.7px;
}

.quadras-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -0.96px;
  color: var(--text-primary);
}

.quadras-text > p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.quadras-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 9.3px;
}

.quadras-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quadras-list-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.quadras-list-item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: #fff;
}

.quadras-gallery {
  display: flex;
  gap: 16px;
}

.quadras-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quadras-gallery-col:first-child {
  flex: 1;
}

.quadras-gallery-col:last-child {
  flex: 1;
}

.quadras-img {
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.quadras-img-tall {
  height: 433px;
}

.quadras-img-square {
  height: 346px;
}

/* .quadras-img-medium {
  height: 260px;
} */

/* ========== AULAS ========== */
.aulas {
  background: var(--bg-dark-1);
  position: relative;
  overflow: hidden;
}

.aulas-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.aulas-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.aulas-left {
  display: flex;
  flex-direction: column;
  gap: 7.1px;
}

.aulas-left .heading-2 {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -1.28px;
  white-space: pre-line;
}

.aulas-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 41px;
}

.aulas-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.metodologia-box {
  background: var(--bg-card-2);
  border-left: 3px solid var(--green);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6.8px;
}

.metodologia-box h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  white-space: pre-line;
}

.metodologia-box p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.aula-type {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.aula-type-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--bg-dark-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aula-type-icon img {
  width: 30px;
  height: 15px;
}

.aula-type-text h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.aula-type-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
}

/* ========== TESTEMUNHOS ========== */
.testemunhos {
  background: var(--bg-dark-2);
}

.testemunhos-header {
  margin-bottom: 64px;
}

.testemunhos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 39px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-quote img {
  width: 68px;
  height: 48px;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-dark);
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: #fff;
}

.testimonial-role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--green);
}

/* ========== CTA ========== */
.cta {
  background: var(--green);
  position: relative;
  overflow: hidden;
  padding: 119px 24px 40px 24px;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 1232px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22.9px;
}

.cta-content .heading-2 {
  color: #000;
  white-space: pre-line;
}

.cta-content .cta-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.45px;
  color: #000;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #000;
  color: var(--green);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  padding: 23.5px 48px;
  text-decoration: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s;
}

.cta-button:hover {
  opacity: 0.9;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-footer);
  padding: 80px 24px;
  display: flex;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-copy {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-footer);
  display: flex;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 313px;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
  color: #fffefd;
}

.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
  padding-top: 8px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s;
}

.footer-social-link:hover {
  border-color: var(--green);
}

.footer-social-link img {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fffefd;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--green);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
  /* justify-content: flex-end; */
}

.footer-legal p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal .footer-location {
  color: var(--text-primary);
}

/* ========== EVENTOS PAGE ========== */
.eventos-hero {
  padding: 140px 24px 60px;
  text-align: center;
}

.eventos-hero .label {
  margin-bottom: 16px;
  display: block;
}

.eventos-hero .heading-2 {
  margin-bottom: 16px;
}

.eventos-hero p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.eventos-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.evento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  transition: border-color 0.2s;
}

.evento-card:hover {
  border-color: var(--green-dark);
}

.evento-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.evento-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.evento-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
}

.evento-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--text-primary);
}

.evento-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.evento-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  width: fit-content;
}

.evento-status.aberto {
  background: rgba(127, 255, 0, 0.15);
  color: var(--green);
}

.evento-status.encerrado {
  background: rgba(181, 181, 183, 0.15);
  color: var(--text-secondary);
}

.evento-status.proximo {
  background: rgba(255, 200, 0, 0.15);
  color: #ffc800;
}

.evento-vagas {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
}

.evento-vagas strong {
  color: var(--green);
}

.evento-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.evento-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.evento-action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(136, 149, 123, 0.25);
}

.evento-action-btn.copied {
  border-color: var(--green);
  color: var(--green);
  background: rgba(127, 255, 0, 0.08);
}

.evento-action-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.4);
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}

.evento-empty {
  text-align: center;
  padding: 120px 24px;
}

 evento-empty .heading-2 {
  margin-bottom: 24px;
}

.evento-empty p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--text-secondary);
}

/* ========== HAMBURGER ========== */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== DRAWER ========== */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-overlay.visible {
  display: block;
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg-dark-2);
  border-left: 1px solid var(--border-nav);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.drawer.open {
  display: flex;
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-nav);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.drawer-close:hover {
  color: var(--text-primary);
}

.drawer-links {
  list-style: none;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.drawer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-card);
  transition: color 0.2s;
}

.drawer-links a:hover,
.drawer-links a.active {
  color: #fffefd;
}

.drawer-cta {
  margin: 20px;
  text-align: center;
  border-radius: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .cards-grid,
  .testemunhos-grid {
    grid-template-columns: 1fr;
  }

  .quadras-layout {
    grid-template-columns: 1fr;
  }

  .aulas-layout {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .footer-brand {
    min-width: auto;
  }

  .footer-legal {
    margin-left: 0;
  }

  .hero-title {
    font-size: 48px;
  }

  .aulas-left .heading-2 {
    font-size: 48px;
  }

  .evento-card {
    grid-template-columns: 1fr;
  }

  .evento-image {
    min-height: 200px;
  }
}

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

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .heading-2 {
    font-size: 32px;
  }

  .quadras-gallery {
    flex-direction: column;
  }

  .footer {
    padding: 40px 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
}
