@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Patua+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body, html{
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  background-color: #002847;
  color: white;
}

header > section#desktop{
  display: none;
}

header > header{
  background-color: #003b69;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: #F8F8FF;
}

header > header > span{
  margin: 0px;
}

header#topo {
  background-color: #003b69;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header#topo img {
  height: 40px; 
  width: auto;
}

#imgTopo {
  display: none;
}

body > header#inicio > main {
  padding-top: 90px; 
}

#btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    position: fixed;   
    top: 15px; 
    right: 20px;       
    z-index: 2000;     
    background-color: transparent; 
    width: 40px;       
    height: 40px;
    padding: 0;
}

.hamburger {
    display: block;
    width: 30px;        
    height: 3px;        
    background: #fff; 
    position: relative; 
    transition: background 0.3s;
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger::before { top: -10px; } 
.hamburger::after  { top: 10px; }  

#btn-mobile.ativo .hamburger {
    background: transparent;
}

#btn-mobile.ativo .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

#btn-mobile.ativo .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

header > nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    width: 75%; 
    max-width: 300px;
    height: 100vh; 
    top: 0;
    right: 0;
    background-color: #003b69; 
    box-shadow: -5px 0 15px rgba(0,0,0,0.5); 
    padding-top: 80px; 
    z-index: 1500;
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
    border-radius: 20px 0px 0px 20px;
}

header > nav.aberto {
    transform: translateX(0); 
}

header > nav > a {
    color: #F8F8FF;
    font-size: 1.1rem;
    margin: 10px 0;
    padding: 12px;
    width: 80%;
    text-align: center;
    border-radius: 8px;
    display: block; 
    text-decoration: none;
    font-weight: 500;
}

header > nav > a:hover,
header > nav > a.ativo {
    background-color: #002847; 
    color: #0084E9;
}

.nav-marker {
    display: none !important; 
}

header > header > img{
  width: 30px;
}

header > main{
  background-image: url('../imagens/wallpaper\ com\ efeito.png');
  background-size: cover;
  background-position: bottom center;
  height: 75vh;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}

main  h1{
  margin-top: 70px;
  color: #0071C7;
  font-weight: bolder;
  font-size: 2em;
  font-family: "Poppins", sans-serif;
  text-shadow: 5px 5px 4px #000000;
}

main{
  padding-top: 20px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
}

main > section#texto-ini{
  width: 300px;
}

main > section#texto-ini > h1{
  text-align: center;
}

section#proj{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  margin-bottom: 80px;
  padding-left: 5px;
  padding-right: 5px;
  max-width: 600px;
}

section#proj img{
  width: 297px;
  margin-top: 30px;
  border-radius: 10px 10px 0px 0px;
  border: 2px solid #2568EF;
  border-bottom: none;
  margin-bottom: 0px;
}

section#proj div{
  width: 300px;
}

section#proj article{
  background-color: #1B2739;
  border-radius: 0px 0px 10px 10px;
  border: 2px solid #2568EF;
  border-top: none;
  margin-top: -7px;
  padding: 10px;
  padding-bottom: 20px;
}

section#proj article > h2{
  margin-top: 0px;
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
}

section#proj article > p{
  text-indent: 12px;
  padding-left: 10px;
  padding-right: 10px;
}

section#proj article > div{
  display: inline-block;
  width: auto;
  margin-right: 7px;
  margin-left: 7px;
}

section#proj article > div > p{
  padding: 5px;
  border-radius: 5px;
  font-weight: bolder;
}

section#proj article > section{
  margin-top: 7px;
  display: flex;
  justify-content: space-between;
  padding-left: 7px;
  padding-right: 7px;
}

section#proj article > section > a, .link{
  text-decoration: none;
  background-color: #2568EF;
  border-radius: 10px;
  color: white;
  padding: 7px;
  font-weight: bolder;
}

section#proj article > section > button, .maisDetalhes{
  text-decoration: none;
  border: 2px solid #2568EF;
  border-radius: 10px;
  color: #2568EF;
  background-color: transparent;
  padding: 7px;
  font-weight: bolder;
  cursor: pointer;
}

dialog {
  width: 75%;
  height: 85%;
  background-color: #D9D9D9; ;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

section#proj dialog article {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

dialog::backdrop {
  background-color: rgba(0, 40, 71, 0.8); 
  backdrop-filter: blur(3px); 
}

dialog button {
  background: transparent;
  border: none;
  float: right;
  cursor: pointer;
  position: fixed;
}

dialog > p{
  text-align: right;
  width: 84%;
}

section#proj dialog img {
  width: 100%;
  max-width: 500px;
  border: none; 
  border-radius: 8px;
  margin-top: 15px;

  display: block;
  margin: 15px auto 20px auto;
}

section#proj dialog button img#fechar {
  width: 35px;
  height: 35px;
  border: none;
  margin-top: 0px;
}

dialog a.link {
  display: block; 
  width: max-content;
  margin: 0 auto; 
  text-align: center; 
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 35px; 
  margin-bottom: 10px;
  line-height: 24px;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); 
  
  background-image: url('../icones/check.png'); 
  background-size: cover; 
  background-repeat: no-repeat;
  
  width: 20px; 
  height: 20px;
}

footer{
  position: fixed;
  top: 1;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex; /* mudar para flex */
  align-items: center;
  justify-content: center;
  background-color: #003b69;
  height: 47px;
}

footer > p{
  margin-right: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #F8F8FF;
  font-family: "Poppins", sans-serif;
}

footer > a{
  padding: 0px;
  padding-top: 10px;
}

footer > a > img{
  width: 30px;
  margin-right: 15px;
}
