/* Reset de margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.banner{
    width: 100%;
}

/* NAV FAIXA MENU */

.logo{
  margin-left: 50px;
  width: 20%;
}

.nav {
    max-width: 1280px;
    height: 100px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #144565
  }
 
.nav-list {
  display: flex;
  gap: 52px;
  list-style: none;
  margin-right: 50px;
}

.nav-list a {
  font-size: 22px;
  text-decoration: none;
  color: white;
  padding-block: 16px;
  transition: color 0.3s ease; /* Suaviza a transição de cor */
}

.nav-list a:hover{
  color: #bb9b75;; /* Cor azul ao passar o mouse */
}

.hamburger {
  display: none;
  border: none;
  background: none;
  border-top: 3px solid #fff;
  cursor: pointer;
  margin-right: 40px;
}

.hamburger::after,
.hamburger::before {
  content: " ";
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin-top: 5px;
  position: relative;
  transition: 0.3s;
}

.secao{
    background-color: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px 10px 10px 10px;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 50px;
    margin-top: -50px;
}

.conteudo {
  border-style: solid;
  margin-top: 60px;
  margin-left: 0px;
  border-width: 6px 0px 6px 0px;
  border-radius: 5px;
  border-color: #bb9b75;
  box-shadow: 0px 0px 21px 4px rgba(0, 0, 0, 0.397);
  background-color: #144565;
  flex-wrap: wrap;
  width: 360px;
  height: 420px;
  padding: 30px 20px;
  cursor: pointer;
  text-align: center;

}

.conteudo:hover{
  transform: scale(1.05); /* Aumenta o tamanho em 5% */
  transition: transform 0.3s ease-in-out; /* Adiciona uma transição suave */
}

h1{
  color: #bb9b75;
  margin-top: 15px;
  font-size: 30px;
}

p{
  color: white;
  margin-top: 25px;
  font-size: 22px;
  font-family: "Raleway" sans-serif;
}

h2{
  text-align: center;
  color: white;
  font-size: 40px;
  margin-top: 20px;
  font-family: 'Lexend', sans-serif;
}

.rodape{

  padding-top: 20px; 
  background-color: #144565;

}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
}

.footer-section {
    margin: 15px 0;
    min-width: 250px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.footer-icon {
    MARGIN-TOP: 25PX;
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: invert(1); /* Torna os ícones brancos */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
}


@media(max-width: 768px){

  .logo{
    width: 50%;
    margin-left: -15px;
  }

  .banner{
    width: 100%;
    height: 100%;

  }

  .hamburger {
    display: block;
    z-index: 1;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #144565;
    clip-path: circle(100px at 90% -15%);
    transition: 1s ease-out;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 0;

    pointer-events: none;
  }

  .nav-list a {
    font-size: 24px;
    opacity: 0;
    text-decoration: none;
  }

  .nav-list li:nth-child(1) a {
    transition: 0.5s 0.2s;
  }

  .nav-list li:nth-child(2) a {
    transition: 0.5s 0.4s;
  }

  .nav-list li:nth-child(3) a {
    transition: 0.5s 0.6s;
  }

  .nav-list li:nth-child(4) a {
    transition: 0.5s 0.8s;
  }

  /* Estilos ativos */

  .nav.active .nav-list {
    clip-path: circle(1500px at 90% -15%);
    pointer-events: all;
  }

  .nav.active .nav-list a {
    opacity: 1;
  }

  .nav.active .hamburger {
    position: fixed;
    top: 26px;
    right: 16px;
    border-top-color: transparent;
  }

  .nav.active .hamburger::before {
    transform: rotate(135deg);
  }

  .nav.active .hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  .secao{
        margin-top: 25px;
        width: 100%;
  }
  
  .conteudo{
    margin-top: 20px;
    width: 70%;
  }

  h1{
    color: white;
    margin-top: 15px;
    font-size: 29px
  }
  
  p{
    color: white;
    margin-top: 25px;
    font-size: 19px;
    font-family: "Raleway" sans-serif;
  }

  .rodape{
    height: 170px;
    padding-top: 20px; 
  
  }

     .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin: 10px 0;
    }
    
    .contact-item {
        margin: 15px 0;
    }
    
    .footer-icon {
        width: 25px;
        height: 25px;
    }
    
    .rodape {
        height: auto;
        padding-bottom: 20px;
    }
    
    .footer-bottom {
        margin-top: 20px;
    }

  
  
} 