:root {
  --verde:#0B6E4F;
  --amarelo:#F4C430;
  --azul:#1B4F72;
  --branco:#FFFFFF;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Georgia', serif;
}

/* FUNDO COM IMAGEM DESFOCADA */
body{
  color:var(--branco);
  min-height:100vh;
  position:relative;
  overflow-x:hidden;
}

/* Imagem de fundo */
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:url("../img/fundo.jpeg") center/cover no-repeat;
  filter:blur(1px);
  z-index:-2;
}

/* Camada escura sobre o fundo */
body::after{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(11,110,79,0.35);
  z-index:-1;
}

/* HOME */
.home{
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh;
  text-align:center;
  backdrop-filter:blur(5px);
}

.popup{
  background:rgba(0,0,0,0.4);
  padding:40px;
  border-radius:20px;
  box-shadow:0 0 30px rgba(0,0,0,0.6);
  animation:fadeIn 1.2s ease-in-out;
}

.bandeira{
  width:160px;
  margin-bottom:20px;
  border-radius:10px;
  box-shadow:0 0 15px rgba(0,0,0,0.5);
}

/* BOTÃO */
.btn{
  background:var(--amarelo);
  padding:12px 28px;
  text-decoration:none;
  color:#000;
  font-weight:bold;
  border-radius:30px;
  transition:0.3s;
  display:inline-block;
  margin-top:15px;
}

.btn:hover{
  transform:scale(1.05);
  background:#ffd84d;
}

/* HEADER */
header{
  background:rgba(27,79,114,0.9);
  padding:15px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(10px);
  position:sticky;
  top:0;
  z-index:10;
}

.logo{
  font-weight:bold;
  font-size:18px;
}

/* MENU */
nav{
  display:none;
  flex-direction:column;
  background:rgba(0,0,0,0.6);
  position:absolute;
  top:60px;
  right:20px;
  padding:15px;
  border-radius:10px;
}

nav a{
  color:white;
  text-decoration:none;
  padding:8px 15px;
  transition:0.3s;
}

nav a:hover{
  background:var(--amarelo);
  color:#000;
  border-radius:5px;
}

.menu-toggle{
  cursor:pointer;
  font-size:24px;
}

/* CONTEÚDO */
.conteudo{
  padding:60px 25px;
  max-width:900px;
  margin:auto;
  background:rgba(0,0,0,0.45);
  border-radius:20px;
  backdrop-filter:blur(6px);
  margin-top:40px;
  margin-bottom:40px;
}

h1{
  color:var(--amarelo);
  margin-bottom:25px;
  text-align:center;
}

h2{
  color:var(--amarelo);
  margin-top:30px;
  margin-bottom:10px;
}

p{
  line-height:1.8;
  margin-bottom:15px;
  text-align:justify;
}

/* CARROSSEL */
.carrossel{
  max-width:900px;
  margin:40px auto;
  position:relative;
}

.carrossel img{
  width:100%;
  border-radius:20px;
  display:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

.carrossel img.active{
  display:block;
  animation:fadeIn 1s ease-in-out;
}

/* WHATSAPP */
.whatsapp-btn{
  position:fixed;
  bottom:25px;
  right:25px;
  background:var(--amarelo);
  color:black;
  padding:14px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 5px 15px rgba(0,0,0,0.5);
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:scale(1.1);
  background:#ffd84d;
}

/* FOOTER */
footer{
  text-align:center;
  padding:20px;
  background:rgba(0,0,0,0.6);
  margin-top:40px;
}

/* ANIMAÇÃO */
@keyframes fadeIn{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}

/* DESKTOP */
@media(min-width:768px){
  nav{
    display:flex !important;
    flex-direction:row;
    position:static;
    background:none;
  }

  nav a{
    padding:8px 12px;
  }

  .menu-toggle{
    display:none;
  }
}