/* --- Global --- */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  padding-top: 67px; /* Valor para mobile (arredondando 66.96px) */
}

@media (min-width: 768px) { /* O breakpoint 'md' do Tailwind é 768px */
  body {
    padding-top: 76px; /* Valor para desktop */
  }
}

/* --- Swiper (index.html) --- */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1.5px solid #d1d5db;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #38bdf8;
  border-color: #38bdf8;
}

/* --- Accordion (estudante.html) --- */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}