* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  line-height: 32px;
}
body, html{
  overflow-x: hidden;
}
body {
  font-size: 20px;
  font-family: sans-serif;
  margin: 0;
  background-color:  #f9f7f4;
}

a {
  text-decoration: none;
  color: inherit;

}

ul {
  list-style: none;
}

      /* Header e navegação */

ul {
  list-style: none;
}

.logo {
  width: 140px;
  object-fit: cover;
}

/* Header e navegação */
header {
  font-size: 15px;
  height: 80px;
  background-color: #1c1c1c71;
  padding: 15px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  bottom: 16px;
}


.nav-links {
  display: flex;
  gap: 20px;
  position: absolute;
  right: 20px;
}

.nav-links li a {
  color: white;
  transition: .4s;
  margin: 4px;
}

.nav-links li a:hover {
  text-decoration: underline;
}


.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 7px;
}

.hamburger .bar {
  width: 30px;
  height: 1px;
  background-color: white;
  border-radius: 5px;
}

/* Responsividade */
@media (max-width: 900px) {
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #333333;
      position: absolute;
      top: 50px;
      left: 0;
      padding: 20px;
      box-sizing: border-box;
      gap: 10px;
  }

  .nav-links li {
      text-align: center;
  }

  .hamburger {
      display: flex;
  }

  .nav-links.active {
      display: flex;
  }
}
      
/*LOGO com transição*/

.logo-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px; 
  
}
   

/* Estilo do texto */
.texto {
    z-index: 1;
    font-size: 12vw;
    font-weight: bold;
    text-transform: uppercase;
    background-image: url(../imagem/Cancio.png);
    background-size: cover;
    -webkit-background-clip: text;
    color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    opacity: 1;
    transition: opacity 1s ease;
    line-height: 1.2;
}



/* Responsividade */
@media (max-width: 1200px) {
  .texto {
      font-size: 10vw; /* Ajuste do tamanho da fonte para telas médias */
      line-height: 1.2; /* Mantém o espaçamento adequado */
  }
}

@media (max-width: 768px) {
  .texto {
      font-size: 14vw; /* Ajuste para tablets */
      line-height: 1.1; /* Reduz o espaçamento para telas menores */
  }
}

@media (max-width: 480px) {
  .texto {
      line-height: 1.1; /* Reduz o espaçamento ainda mais */
  }
}
.novo-conteudo {
  z-index: 100;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 1s ease, transform 1s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 100%;
    justify-content: center;
    height: 100vh;
    
}


.novo-conteudo.active {
    opacity: 1;
    transform: translate(-50%, -50%); 
}


.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10%;
  }
  
  .contant2{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
    font-size: 16px;
  }
  
  .contant {
    padding: 20px;
    border-radius: 10px;
   
  }
  
  .contant h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .contant p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
  }
  
  .contant img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    
    .container {
      grid-template-columns: 1fr;
    }
  
   
    .contant h2 {
      font-size: 20px;
    }
  
    .contant p {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    
    .contant h2 {
      font-size: 18px;
    }
  
    .contant p {
      font-size: 13px;
    }
  
    .container {
      padding: 10px;
    }
  }

   /*footer*/ 



.containers{
  max-width: 1170px;
  margin: auto;
}



.row{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
  margin: 30px;
}

ul{
  list-style: none;
}


/*footetr*/

.footer{
  background-color: #161616;
  padding:  70px 0;
}
.footer-col{
  padding: 0 15px;
}


.footer-col h4{
  font-size: 15px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 40px;
  font-weight: 500;
  position: relative;
}


.footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #3a4b53;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}



.footer-col ul li a{
  font-size: 15px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #ffffff;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover{
  color: #c4c4c4;
  
}


.copy{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9f7f4;
  font-size: 12px;
}