html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

/* Ajuste para barra de administração do WordPress */
body.admin-bar .meet-site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .meet-site-header {
    top: 46px;
  }
}

/* Evita estilos padrões do WordPress interferindo na landing */
.wp-site-blocks,
.site,
.site-content,
.content-area,
#primary,
main {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #008B74;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #006655;
}

.view-section {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.view-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.expanded {
  max-height: 2000px;
  transition: max-height 0.5s ease-in;
}

/* Conteúdo exclusivo para professores */
.teacher-only {
  display: none;
}

.is-teacher .teacher-only {
  display: block;
  animation: fadeIn 0.5s;
}

.is-teacher .student-only-notice {
  display: none;
}

/* Estado ativo do menu */
.nav-link.is-active {
  color: #1c9d9a !important;
  border-color: #1c9d9a !important;
}

/* Pequenos ajustes de acessibilidade */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(28, 157, 154, .35);
  outline-offset: 2px;
}

/* Melhor comportamento do menu em telas intermediárias */
@media (max-width: 1100px) {
  .meet-site-header nav {
    gap: 1.25rem !important;
  }

  .meet-site-header .nav-link {
    font-size: .92rem;
  }
}
