* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 500px;
  padding: 30px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}

p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  margin-top: 8px;
  margin-bottom: 18px;
  background-color: #f5f5f5;
  color: #000;
  font-size: 16px;
}

input:focus {
  outline: 2px solid #2196f3;
}

label.legenda {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #ffffff;
}

textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-bottom: 18px;
}


.btnenviar {
  font-weight: bold;
  width: 100%;
  background-color: #2196f3;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}


.btnenviar:hover {
  background-color: #0d8bf2;
}

#btnInscrever{
  font-weight: bold;
  width: 100%;
  background-color: #FF0000;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;}

#btnInscrever:hover {
	background-color: white;
	color: #FF0000;}

#formulario-contato {
  display: none;
  margin-top: 30px;
}

.divmeio {
  text-align: center;
  margin-bottom: 20px;
}

.legenda_aviso {
  color: #ffff66;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

label.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
