/* ================= GERAL ================= */
body {
  background-color: var(--cor_background);
  color: var(--azul_escuro);
  font-family: 'opensans';
  font-size: 20px;
  margin: 0;
  padding: 0;  
}
/* ======== ICONE DO FONT AWESOME ======= */
#icon {
  color: white;
}

:root {
  --cor_background: #e7e2e2;
  --azul_escuro: #10396b;
  --azul_claro: #4775a8;
  --fonte_padrao: 'opensans';
  --fonte_redonda: 'bernoru';
}

@font-face {
  font-family: 'opensans';
  src: url('../fontes/OpenSans.ttf') format('truetype');
}

@font-face {
  font-family: 'bernoru';
  src: url('../fontes/bernoru.ttf') format('opentype');
}

hr {
  background-color: white;
  width: 90%;
  height: 0.5px;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

p {
  font-family: var(--fonte_padrao);
  color: #10396b;
}

.menu_ativo {
  text-decoration: underline wavy #e1802c;
  text-decoration-thickness: 2px;
}

/* ================= QUEM SOMOS ================= */
.titulos_paginas {
  font-family: 'bernoru';
  padding: 3%;
  margin-bottom: -4%;
  margin-top: -4%;
  text-align: center;
  font-size: 70px;
  color: #072b57;
}

.container_quemsomos {
  align-items: center;
  margin-top: 150px;

}
.questao_container
.imagem_grupo {
  width: 40%;
  display: flex;
  text-align: left;
  padding: 5% 3% 0% 5%;
}

.texto_quemsomos {
  display: flex;
  text-align: right;
  margin-top: -5%;
  padding: 5% 0% 3% 5%;
  font-family: 'opensans', sans-serif;
}


/* ================= MENU HAMBURGUER ================= */
.container5 {
  display: inline-block;
  cursor: pointer;
  position: fixed;
  top: 3%;
  left: 1%;
  z-index: 2100;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 2px;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg); 
  /* angulo de inclinação */
}

.change .bar2 {
  opacity: 0;
}

/* altera o angulo e a distância */
.change .bar3 {
  transform: translate(0, -7.5px) rotate(45deg);
}


/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #4774a8eb;
  padding: 60px 20px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  color: white;
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin-top: 20px;
  font-family: 'opensans', sans-serif;
}

.sidebar.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-shadow: 4px 20px 15px var(--azul_escuro);
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 20px;
  font-size: 18px;
}

.sidebar ul li a {
  color: white;
  transition: color 0.5s;
  transition: 0.3s ease;
}

.sidebar ul li a:hover {
  color: #e1802ce9;
  font-size: 19px;
}

/* ================= TOPO ================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #4774a8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 5000;
  box-shadow: 1px 3px 16px var(--azul_escuro);
}

.topbar .logo {
  height: 50px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  /* espaço entre dropdown e login */
}

/* PARTE DA HEADER - MENU DE ACESSIBILIDADE */
.menu_suspenso {
  position: relative;
  left: 68%;
  border-radius: 15px;
  padding: 10px;
  margin-right: 10%;

}

.menu_suspenso .dropbtn {
  font-size: 16px;
  border: none;
  padding: 14px 10px;
  cursor: pointer;
  background-color: transparent;
  color: white;
  margin-right: auto;

}

.menu_suspenso-content {
  display: none;
  position: absolute;
  right: 0;
  /* abre o menu à direita */
  top: 100%;
  background-color: #e8e9f4e7;
  min-width: 200px;
  box-shadow: 13px 5px 16px var(--azul_escuro);
  z-index: 1000;
  padding: 12px 2px;
}

.menu_suspenso-content a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 8px 16px;
}

.menu_suspenso-content a:hover {
  background-color: #4775a8;
  color: white;
}

.menu_suspenso:hover .menu_suspenso-content {
  display: block;
  border-radius: 15px;
}

/* ===== MENU HAMBÚRGUER ===== */
.container5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-left: 20px;
}

.container5 div {
  width: 28px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.topbar img.logo {
  height: 40px;
  margin: 0 20px;
}


.logologin {
  margin-left: auto;
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.logologin img {
  height: 24px;
  cursor: pointer;
}

.texto_menu {
  text-align: center;
}

@media (max-width: 768px) {
  .topbar {
    height: 55px;
    padding: 0 10px;
    position: fixed;
  }

  .container5 {
    margin-top: -5px;
    margin-left: 5px;
  }

  .container5 div {
    width: 22px;
    height: 2.5px;
    margin-top: 1px;
  }

  .topbar img.logo {
    height: 30px;
    margin-left: 30px;
  }

  .menu_suspenso {
    left: auto;
    margin: 10px 0;
    width: 100%;
    text-align: center;
    display: block;
    /* força aparecer no mobile */
  }

  .menu_suspenso .dropbtn {
    width: 100%;
    padding: 12px;
    background-color: #4775a8;
    color: white;
    border-radius: 10px;
    text-align: center;
  }

  .menu_suspenso-content {
    display: none;
    background-color: #e8e9f4e7;
    border-radius: 10px;
    margin-top: 5px;
    padding: 8px 0;
  }

  .menu_suspenso.active .menu_suspenso-content {
    display: block;
  }

  .menu_suspenso-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
  }

  .menu_suspenso-content a:hover {
    background-color: #4775a8;
    color: white;
  }

  .logologin {
    margin-right: 25px;
  }

  .logologin img {
    height: 20px;
  }
}


@media (min-width: 1200px) {
  .topbar {
    height: 80px;
    padding: 0 40px;
  }

  .container div {
    width: 30px;
    height: 3px;
    margin: 3px 0;
    margin-left: -20px;
  }

  .topbar img.logo {
    height: 45px;
    margin: 0 40px;
  }

  .logologin {
    margin-right: 70px;
  }

  .logologin img {
    height: 28px;
  }
}

/* ================= CONTEÚDO ================= */
.content {
  width: 80%;
  padding: 30px;
  background-color: #E8E8E8;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  margin: 140px auto 50px auto;
  transition: margin-left 0.3s ease;
  font-family: 'opensans', sans-serif;
}

.content.shift {
  margin-left: 250px;
}

.container2 {
  align-items: center;
  margin-top: 40px;

}

/* =========== PÁGINA DE QUESTÕES ============= */
.btn_questoes {
  background-color: white;
  color: #10396b;
  border-color: #072b57;
  border-radius: 25px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'opensans', sans-serif;
  font-size: large;
  margin: 1%;
}

.btn_questoes:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.4);
}

/* ================= LOGIN ================= */
.login-card {
  display: flex;
  background-color: #4775a8;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  width: 650px;
  max-width: 90%;
  margin: 20px auto;
  font-family: 'opensans', sans-serif;
}


.container_login {
  margin-top: 10%;
  text-align: center;
  flex: 1;
  min-height: 90vh;
}

.login-left,
.login-right {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-left {
  border-right: 2px solid #4775a8;
  position: relative;
}

.login-left::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 25%;
  width: 2px;
  height: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1px;
}

.input-group {
  display: flex;
  align-items: center;
  padding: 8px 0;
  margin-bottom: 20px;
}

.input-group .icon1 {
  width: 28px;
  margin-right: 8px;
}

.input-group .icon2 {
  width: 40px;
  margin-right: 8px;
  margin-left: -10px;
}

.input-group input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  background: none;
  color: white;
  border-bottom: 2px solid white;
  padding: 5px;
  transition: border-color 0.3s ease;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.input-group input:focus {
  border-color: #e1802c;
}

.btn-login {
  background-color: #10396b;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 5px;
  font-family: 'opensans', sans-serif;
}

.ou-texto {
  text-align: center;
  color: white;
  margin: 15px 0;
  font-size: 14px;
  font-family: 'opensans', sans-serif;
}

.btn-google {
  background-color: white;
  color: #10396b;
  border: none;
  border-radius: 20px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'opensans', sans-serif;
}

.btn-google img {
  width: 18px;
}

.btn-google:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.4);
}

.bemlog {
  margin: 8;
  font-family: 'bernoru';
  font-size: 150%;
  margin-bottom: -3%;
}

#texto_login {
  color: #E8E8E8;
  font-size: 20px;
  font-family: 'opensans', sans-serif;
}

.login-right {
  text-align: center;
  color: white;
}

.login-right h2 {
  font-family: 'bernoru';
  margin-bottom: 10px;
}

.btn-cadastrar {
  background-color: #10396b;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 20px;
  width: 250px;
}

@media (max-width: 650px) {
  .titulos_paginas {
    margin-top: 3%;
    text-align: center;
  }

  .login-card {
    flex-direction: column;
  }

  .login-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .login-left::after {
    display: none;
  }

  .topbar {
    height: 8%;
  }
}


/* ================= CADASTRO ================= */
.login-card {
  display: flex;
  background-color: #4775a8;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  width: 650px;
  max-width: 90%;
  margin: 20px auto;
  font-family: 'opensans', sans-serif;
}

.login-left,
.login-right {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-left {
  position: relative;
}

.login-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.7);
}

.input-group {
  margin-bottom: 15px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 8px;
  border: none;
  border-bottom: 2px solid white;
  background: none;
  color: white;
  font-size: 14px;
  outline: none;
}

.input-group input::placeholder,
.input-group select {
  color: rgba(255, 255, 255, 0.7);
}

.btn-cadastrar {
  background-color: #10396b;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  font-family: 'opensans', sans-serif;
}

.login-right {
  text-align: center;
  color: white;
}

.login-right h2 {
  font-family: 'bernoru';
  font-size: 25px;
  margin-bottom: 10px;
}

.login-right p {
  font-size: 14px;
  margin-bottom: 15px;
}

select {
  background-color: #2c5e9e;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
}

select option {
  background-color: #2c5e9e;
  color: white;
}


/* ================= HOME ================= */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

.container3 {
  margin: auto;
  padding: 10px;
  text-align: center;
}

.hero {
  position: relative;
  text-align: center;
  height: 110%;
}

.hero h1 {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 300px;
  font-weight: bold;
  color: var(--blue);
  margin: 0;
  z-index: 1;
  font-family: 'bernoru';
}

.hero h2 {
  font-family: 'bernoru';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 265px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 4.5px var(--azul_claro);
  margin: 0;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50%;
  z-index: 3;
}

.hero-content p {
  font-size: 20px;
  color: var(--blue);
  margin: 0;
  font-weight: bold;
}

.hero img {
  position: relative;
  z-index: 2;
  width: 40%;
}

/* ===== CAIXA AZUL (sobre) ===== */
.sobre {
  background: var(--azul_escuro);
  border-radius: 30px;
  padding: 30px 30px;
  margin-top: -100px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.sobre h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--cor_background);
}

.sobre p {
  max-width: 700px;
  margin: auto;
  color: #E8E8E8;
  font-size: 18px;
  line-height: 1.6;
}

/* ===== LINKS ===== */
body a {
  color: #072b57;
  /* azul da paleta */
  text-decoration: none;
}

body a:hover {
  text-decoration: underline;
}

/* Links dentro da caixa azul → brancos */
.sobre a,
.container2 a {
  color: #ffffff !important;
}

.sobre a:hover,
.container2 a:hover {
  color: #e8e8e8;
}

.faixa {
  margin-top: -250px;
  width: 100%;
}

.container_bem_vindo {
    margin: 150px auto;
    width: 100%;
    max-width: 1550px;
    /* display: flex;
    flex-direction: column; */
    align-items: justify;
  }

.container1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .text_boas_vindas {
    /* Removemos o flex: 1 para que o texto use seu max-width sem ser forçado a encolher */
    /* Deixamos ele como um elemento de largura fixa (até 600px) */
    color: var(--azul_escuro);
    max-width: 600px; 
    font-size: 20px;
    line-height: 1.8em;
    text-align: justify;
    /* Ajuste de margem para alinhar melhor à esquerda */
    margin-left: 150px; 
  }

  #aluna {
    /* CORREÇÃO: Definimos a imagem para NÃO crescer e ocupar sua largura máxima */
    flex: 0 0 460px; 
    width: 460px;
    height: auto;
    object-fit: contain;
    /* CORREÇÃO CHAVE: Remove a margem excessiva que estava empurrando tudo */
    margin-right: 0;
    margin-top: -10%;
  }

.img_bem_vindos {
  width: 42%;
  display: block;
  margin-top: -400px;
  margin-left: 12%;
}

/* ===== CARROSSEL ===== */
.carousel {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0 50px;
  margin-bottom: 100px;
}

.cards {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

.card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 0 0 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--blue);
}

.card-content p {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--blue);
  transition: color 0.3s;
}

.arrow:hover {
  color: var(--azul_claro);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* ===== MOBILE - HOME  ===== */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }
/* header */
  .topbar {
    height: 55px;
  }
  
  .change .bar1 {
    transform: translate(0, 11px) rotate(-45deg); 
    /* angulo de inclinação */
  }

  .change .bar2 {
    opacity: 0;
  }

  .change .bar3 {
    transform: translate(0, -3px) rotate(45deg);
  }

  body {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 88px !important;
  }

  .hero h2 {
    font-size: 78px !important;
    -webkit-text-stroke-width: 0.5px !important;
    margin-top: 5px;
  }

  .hero-content {
    padding: 8px 10px;
    font-size: 12px;
    margin-top: 40px;
    text-align: center;
  }

  .hero-content p {
    font-size: 12px !important;
    line-height: 0.9;
    margin-top: -35px;
    width: 100%;
    display: flex;
    margin-right: -65px;
  }

  .hero-content a {
    margin-top: -40px;
    /* sobe só o link */
    display: inline-block;
  }

  .sobre {
    display: block !important;
    background: var(--azul_escuro);
    border-radius: 30px;
    width: 90% !important;
    padding: 15px 20px;
    margin: 20px auto;
    color: var(--white);
  }

  .sobre h3 {
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 5px;
  }

  .sobre p {
    color: #fff;
    font-size: 11px;
    line-height: 1.6;
  }

  .faixa {
    margin-bottom:-20px;
    margin-top: -95px;
    width: 100%;
  }
/* apresentação bem-vindo e aluna */
 .container_bem_vindo {
  display: flex;
  align-items: center; 
  justify-content: space-between; /* separa texto e imagem */
  flex-wrap: wrap; /* permite quebrar em telas pequenas */
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto;
}
.container1 {
    flex-direction: column; /* empilha os elementos verticalmente */
    align-items: center; 
    width: 100%;
  }


.bem-vindo {
  width: 80% !important;
  max-width: 280px;
   margin: -80px auto;
  display: block;
  }

.text_boas_vindas {
  flex-direction: column;
  font-size: medium;
  text-align: justify;
  line-height: 1.3em;
  margin: 10px;
}

.img_bem_vindos {
  flex-direction: column;
  flex: 1; /* ocupa metade do espaço */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

#aluna {
  width:70%;
  max-width: 300px;
  height: auto;
}


}


/* ======== Rodapé  ======== */
footer {
  background-color: var(--azul_claro);
  color: white;
  width: 100%;
  padding: 20px 15px 10px;
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
}

.menu_debaixo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  max-width: 100%;
  z-index: 1000;
}

.contatos {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 20px;
}

.contatos a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  word-break: break-word;
  font-size: 14px;
}

.contatos img {
  height: 16px;
  margin-right: 6px;
}

.logo_slogan {
  flex: 1 1 250px;
  text-align: right;
  margin-right: 20px;
}

.logo_slogan .logonav {
  max-width: 120px;
  height: auto;
  margin-bottom: 6px;
}

.logo_slogan h3,
.logo_slogan h6 {
  margin: 3px 0;
  font-size: 14px;
  line-height: 1.3;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 10px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #dcdcdc;
  line-height: 1.4;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #cccccc;
}

@media (max-width: 768px) {

  .menu_debaixo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .contatos {
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    margin-top: -80px;
  }

  .contatos a {
    justify-content: center;
    font-size: 12px;
  }

  .logo_slogan {
    text-align: center;
    margin-top: -50px;
    margin-bottom: -120px;
  }

  .logo_slogan .logonav {
    max-width: 90px;
  }

  .logo_slogan h3,
  .logo_slogan h6 {
    font-size: 12px;
  }
}


/* ================= INTEGRANTES ================= */

.grid-integrantes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: auto;
  padding: 30px;
}

.integrante img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #4775a8;
}

@media (max-width: 768px) {
  .grid-integrantes {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .integrante img {
    width: 120px;
    height: 120px;
  }
}


/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #E8E8E8;
  margin: 15% auto;
  padding: 20px;
  border-radius: 15px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  color: #10396b;
  font-family: 'opensans';
}

.fechar {
  float: right;
  font-size: 28px;
  cursor: pointer;
  color: #10396b;
}

.fechar:hover {
  color: #e1802c;
}


/* ================= MISSÃO ================= */
.missao-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.missao-imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.missao-texto {
  max-width: 500px;
  font-size: 20px;
  font-family: 'opensans', sans-serif;
  color: #10396b;
  line-height: 1.5;
  text-align: justify;
}


@media (max-width: 768px) {
  .missao-container {
    flex-direction: column;
    text-align: center;
  }

  .missao-imagem img {
    max-width: 90%;
  }

  .missao-texto {
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }
}



/* ================= QUESTÕES ================= */

body.questao {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #adc2da, #10396bca);
  min-height: 120vh;
  display: flex;
  flex-direction: column;
}

.questao_container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* ocupa a tela toda */
  padding: 20px;
  margin-top: -13%;
}

@media (max-width: 720px) {
  .questao_container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* ocupa a tela toda */
  padding: 20px;
  margin-top: -45%;
}
}

.container2 {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px;
  width: 80%;
  max-width: 800px;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 1.2s ease;
}

.titulopergunta {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
}

.option {
  display: block;
  text-align: left;
  margin: 10px 0;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #4775a8;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #10396b;
  transform: scale(1.03);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= PAGINA MATERIA================= */

.bemvinda {
  margin-top: 70px;
  text-align: center;
  font-size: 22px;
  color: #10396b;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 1s forwards;
  /* animação de entrada */
}

/* Animação de entrada */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação de saída */
.fade-out {
  animation: fadeOutUp 1s forwards;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}


.titulo-materia {
  font-family: 'bernoru';
  padding: 3%;
  margin-bottom: -4%;
  margin-top: 4%;
  text-align: center;
  font-size: 70px;
  color: #072b57;
}


.page-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto 100px auto;
  width: 90%;
  max-width: 1400px;
}
.niveis-container {
  display: flex;
  flex-direction: column;   /* Empilha título e círculos */
  align-items: center;      /* Centraliza horizontalmente */
}

/* (Regra separada para .instrucoes, caso precise) */
.instrucoes {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* 3. Título "NÍVEIS" */
.niveis-titulo {
  font-size: 40px;
  color: #072b57;
  text-align: center;
  /* Removido o margin-top para centralização correta na página */
  margin-bottom: 25px; /* Espaço abaixo do título */
}

/* Seu código (está ótimo) */
.niveis {
  display: flex;
  flex-direction: row;
  gap: 35px;
  align-items: center;
}

.nivel {
  width: 120px;
  height: 120px;
  background-color: #10396b;
  border-radius: 50%;
  color: white;
  font-size: 42px;
  font-family: 'bernoru'; /* Certifique-se que essa fonte está carregada */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nivel:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}
.instrucoes {
  padding-left: 50px;
  text-align: left;
}

.instrucoes-titulo {
  font-size: 50px;
  margin-bottom: 25px;
  text-align: center;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 10px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 85%;
  max-width: 350px;
  /* menor e centralizado */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.3s ease-in-out;
}

/* Link estilo moderno */
.link-instrucoes {
  display: inline-block;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #10396b;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s;
}

.link-instrucoes:hover {
  color: #4775a8;
}

/* Botões */
.modal-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.modal-buttons button {
  background: #10396b;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-buttons button:hover {
  background: #4775a8;
}

/* Instruções dentro do modal */
.modal-instrucoes {
  display: none;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
  color: #10396b;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.08);
}

.modal-instrucoes.show {
  display: block;
}

@media (max-width: 768px) {
  .instrucoes {
    display: none !important;
  }
}

/* Animação */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsivo */
@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
    max-width: 90%;
    font-size: 13px;
  }

  .modal-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .modal-buttons button {
    flex: 1;
  }
}


/*=========RESULTADO===========*/
main.card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  width: 90%;
  max-width: 480px;
  min-height: 450px;
  margin: 40px auto;
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;

}

h1 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
}

.subtitle {
  margin-bottom: 20px;
  color: #ddd;
}

.ring {
  position: relative;
  width: 220px;
  height: 220px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#a008ce 0% var(--pct, 0%),
      #ffffff var(--pct, 0%) var(--pct, 0%),
      rgba(255, 255, 255, 0.15) var(--pct, 0%) 100%);
  transition: background 1s ease-in-out;
  margin: 20px auto;
  flex-shrink: 0;
}

.ring::before {
  content: "";
  position: absolute;
  inset: 28px;
  background: rgb(27, 10, 71);
  border-radius: 50%;
}


.label {
  position: relative;
  text-align: center;
  z-index: 1;
}

.percent {
  font-size: 44px;
  font-weight: bold;
  background: linear-gradient(90deg, #a008ce, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legend {
  font-size: 14px;
  color: #ccc;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  background: var(--azul_escuro);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.btn.secondary {
  background: #fff;
  color: var(--azul_escuro);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(.97);
}

/*========VERIFICAÇÃO===========*/

.perfil-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'opensans', sans-serif;
  padding: 20px;
}

.perfil-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 25px var(--azul_escuro);
}

.perfil-foto img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(110, 5, 5, 0.2);
}


.perfil-card h2 {
  margin: 10px 0 5px;
  font-size: 24px;
  font-weight: 600;
}

.perfil-card .email {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}


.perfil-info {
  text-align: left;
  font-size: 16px;
  margin: 20px 0;
}

.perfil-info p {
  margin: 10px 0;
}


.perfil-actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}


/*============ALTERAR============*/

/* Fundo com centralização */
/* Título */
h2 {
  color: #fff;
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  /* espaçamento abaixo */
}

/* Card */
.form-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Subtítulo dentro do card (caso use) */
.form-card h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

fieldset {
  border: none;
  padding: 0;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

input,
select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 15px;
  outline: none;
}

input[readonly] {
  background: rgba(255, 255, 255, 0.25);
  color: #ddd;
  cursor: not-allowed;
}

option {
  color: #000;
}

input[type="submit"] {
  background: rgba(71, 117, 168, 0.9);
  color: #fff;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

input[type="submit"]:hover {
  background: rgba(54, 91, 130, 0.95);
  transform: scale(1.05);
}


/* ================= ANIMAÇÕES GERAIS ================= */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes clickPress {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}


button,
.login-card,
.btn-login,
.btn-google,
.btn-cadastrar,
.btn_entrar,
.btn_questoes {
  transition: all 0.3s ease;
}



.login-card {
  animation: fadeSlideUp 0.8s ease;
}


.btn-login:hover,
.btn-google:hover,
.btn-cadastrar:hover,
.btn_entrar:hover,
.btn_questoes:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-login:active,
.btn-google:active,
.btn-cadastrar:active,
.btn_entrar:active,
.btn_questoes:active {
  animation: clickPress 0.2s ease;
}

.integrante {
  animation: fadeSlideUp 0.9s ease;
}


.integrante img {
  transition: none;
  transform: none;
  box-shadow: none;
}

/* ============ BOTÕES PARA DIMINUIÇÃO E AUMENTO DE FONTE ===========  */
.ajuste_fontes {
  font-size: 1.1em;
  padding: 10px;
  border-radius: 10px;
  margin: 1px;
  cursor: pointer;
}

/* ======== FILTROS DE COR =========*/
.accessibility_tools {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #2a4d74;
  padding: 10px;
  border-radius: 10px;
  z-index: 1000;
}

.accessibility_tools button {
  background-color: #7d95c5;
  color: #fff;
  border: 1px solid #7d95c5;
  border-radius: 5px;
  margin: 3px;
  padding: 6px 10px;
  cursor: pointer;
}

.accessibility_tools button:focus {
  outline: 3px solid #ffd700;
}

@media (max-width: 480px) {
  .accessibility_tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* duas colunas */
    gap: 5px;
    bottom: 5px;
    right: 5px;
    padding: 8px;
    width: auto;
  }

  .accessibility_tools button {
    width: 100%;
    font-size: 12px;
    padding: 5px;
    margin: 0;
  }
}

/*==============gerenciar===============*/
.card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;

  display: flex; /* coloca info e ações lado a lado */
  justify-content: space-between; /* info à esquerda, botões à direita */
  align-items: center;
}

/* infos alinhadas */
.card .info {
  display: flex;
  gap: 30px; /* espaço entre ID, Nome e Email */
}

.card .info p {
  margin: 0;
  font-size: 16px;
  color: #10396b;
}

/* botões no canto direito */
.acoes {
  display: flex;
  gap: 10px;
}
