@import url("evento.css?1.0.1");
@import url("login.css?1.0.1");
@import url("pagamento.css?1.0.1");

body { 
  font-family: 'Inter', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  padding: 0;
  margin: 0;
}

header {
  background: #0189ff;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

section {
  max-width: 700px;
  margin: auto;
  margin-top: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #0189ff;
  color: #ccc;
  margin-top: 2rem;
}

/* MENU == */
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e2f;
  padding: 0 30px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.menu .links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu .links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu .links a:hover {
  color: #c60001;
}

.menu .btn-login {
  background-color: #c60001;
  color: #1e1e2f;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
}

.menu .btn-login:hover {
  background-color: #e6b800;
}

/* Mobile menu */
.menu .hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* BOTÕES == */
.bnts{
  margin-top: 20px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.bnt-azul {
  background-color: #2f76d3;
  color: #fff;
  transition: background 0.3s ease;
}

.bnt-vermelho {
  background-color: #d32f2f;
  color: #fff;
  transition: background 0.3s ease;
}

.bnt-vermelho:hover {
  background-color: #b71c1c;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1e1e2f;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .menu .nav-links.active {
    display: flex;
  }

  .menu .hamburger {
    display: block;
  }
}


.evento { background: #fff; padding: 15px; margin-bottom: 15px; border-radius: 8px; box-shadow: 0 0 5px rgba(0,0,0,0.1); }
h2 { margin: 0; }
p { margin: 5px 0; }