/* style.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100vh;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90%;
}

h2 {
  text-align: center;
  color: #1e1e1e;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.question {
  margin-bottom: 20px;
}

.question label,
.email-final label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #222;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 5px;
  transition: border 0.2s;
}

input:focus,
select:focus {
  border-color: #092b67;
  outline: none;
}

button {
  display: inline-block;
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #092b67;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #880101;
}

.erro {
  margin-top: 15px;
  color: #880101;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }
}

/* Menu retrátil */
.hamburger {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 28px;
  cursor: pointer;
  color: white;
  z-index: 1001;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 200px;
  height: 100%;
  background-color: #1e1e1e;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar a {
  display: block;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.sidebar a:hover {
  background-color: #092b67;
}

.sidebar.active {
  left: 0;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.nav-buttons button {
  width: 48%;
}

@media (max-width: 600px) {
  .nav-buttons button {
    width: 100%;
    margin-top: 10px;
  }

  .nav-buttons button:first-child {
    order: 2;
  }

  .nav-buttons button:last-child {
    order: 1;
  }
}
.radio-group {
  margin-top: 10px;
}

.radio-group label:hover {
  background-color: #092b67;
  color: white;
  border-color: #092b67;
}

.radio-group label {
  display: block;
  background: #9b9b9b30;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease, background 0.3s ease;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group input[type="radio"]:checked + span,
.radio-group label:has(input[type="radio"]:checked) {
  background-color: #880101;
  color: white;
  border-color: #880101;
}

/* Menu desktop */
.menu-desktop {
  display: flex;
  justify-content: center;
  gap: 40px;
  background-color: #880101;
  padding: 15px 0;
}

.menu-desktop a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
}

.menu-desktop a:hover {
  text-decoration: underline;
}

/* Menu mobile */
.menu-mobile {
  display: none;
}



.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 220px;
  height: 100%;
  background-color: #1e1e1e;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar a {
  display: block;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.sidebar a:hover {
  background-color: #880101;
}

.sidebar.active {
  left: 0;
}

/* Responsividade */
@media (max-width: 768px) {

  body {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: url('ingles_bg.jpg') no-repeat top center fixed !important;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  }

  .consent-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: url('ingles_bg.jpg') no-repeat top center fixed !important;
  background-size: contain !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}


  .menu-desktop {
    display: none;
  }

  .menu-mobile {
    display: block;
  }
}
.intro-section {
  background-color: #f7f9fc;
  padding: 50px 20px;
}

.intro-container {
  max-width: 960px;
  margin: 0 auto;
}

.intro-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #004087;
  margin-bottom: 20px;
  text-align: center;
}

.intro-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.consent-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.consent-box {
  background: #880101;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  max-width: 420px;
  color: white;
  font-family: sans-serif;
}

.consent-title {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.4;
}

.consent-text {
  font-size: 18px;
  margin-bottom: 20px;
}

.consent-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.consent-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

#btnConcordo {
  background: #004087;
  color: white;
  border: 2px solid #004087;
}

#btnConcordo:hover {
  background: #04274e;
}

#btnNaoConcordo {
  background: #bdbdbd;
  color: #333;
}

#btnNaoConcordo:hover {
  background: #999;
}

.consent-info {
  font-size: 12px;
  color: #b2dfdb;
  line-height: 1.5;
}

