@import url('reset.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.imagem-inicial {
  background-image: url('../images/Header Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conteudo-sobreposto {
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 600px;
  width: 90%;
}

.conteudo-sobreposto h1 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: 3px;
}

.conteudo-sobreposto p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 auto 30px;
  max-width: 500px;
  width: 100%;
  letter-spacing: 0.2px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

}

.btn {
  padding: 12px 24px;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn.primary {
  background-color: white;
  color: black;
}

.btn.secondary {
  background-color: #23272a;
  color: white;
}

@media (max-width: 900px) {
  .imagem-inicial {
    height: 500px;
  }

  .conteudo-sobreposto h1 {
    font-size: 36px;
  }

  .conteudo-sobreposto p {
    font-size: 16px;
    padding: 0 10px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 90%;
    max-width: 300px;
  }
}

@media (max-width: 500px) {
  .imagem-inicial {
    height: 400px;
  }

  .conteudo-sobreposto h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .conteudo-sobreposto p {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 375px) {
  .imagem-inicial {
    height: 350px;
  }

  .conteudo-sobreposto p {
    font-size: 13px;
  }

  .btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}


/* Section 1 */

.feature.light {
  padding: 60px 20px;
  background-color: white;
}

.feature .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature .container img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.feature .container div {
  max-width: 500px;
}

.feature h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #23272a;
}

.feature p {
  font-size: 18px;
  line-height: 1.6;
  color: #2c2f33;
}

.text-1 h2 {
  font-family: 'Open Sans';
  font-weight: 800;
  font-size: 40px;
  color: #23271a;
  max-width: 315px;

}

.text-1 p {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #23271a;
  max-width: 350px;
}

/*Section 2*/

.feature {
  background-color: #f6f6f6;
  padding: 60px 20px;
}

.container.row.reverse {
  display: flex;
  flex-direction: row;
  align-items: center; 
  gap: 40px;
}

.container.row.reverse > div {
  flex: 1; 
}

.text-2 h2 {
  font-family: 'Open Sans';
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  color: #23271a;
}

.text-2 p {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #23271a;
  max-width: 350px;
}

.container.row.reverse img {
  width: 607px;
  height: auto;
}

@media (max-width: 900px) {
  .container.row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .container.row.reverse > div {
    max-width: 100%;
  }

  .container.row.reverse img {
    width: 90%;
    margin-top: 30px;
  }
}

/*Section 3*/

.feature {
  padding: 60px 20px;
}

.container.row.reverse {
  display: flex;
  align-items: center; 
  gap: 40px;
}

.container.row.reverse > div {
  flex: 1; 
}

.text-3 h2 {
  font-family: 'Open Sans';
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  color: #23271a;
  max-width: 300px;

}

.text-3 p {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #23271a;
  max-width: 300px;
}

.container.row.reverse img {
  width: 607px;
  height: auto;
}

@media (max-width: 900px) {
  .container.row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .container.row.reverse > div {
    max-width: 100%;
  }

  .container.row.reverse img {
    width: 90%;
    margin-top: 30px;
  }
}


/*Section 4*/
.container.column.center {
  display: flex;
  flex-direction: column;
  align-items: center;  
  text-align: center;   
  gap: 20px;            
  padding: 20px;       
}

.container.column.center h2 {
  font-family: 'Luckiest Guy', cursive;
  font-weight: 400;
  font-size: 40px;
  color: #23272a;
  text-align: center;
}

.container.column.center p {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 16px;
  color: #23272a;
  max-width: 900px;
}

.container.column.center img {
  width: 784px;
  max-width: 500px;
  height: auto;
}

@media (max-width: 600px) {
  .container.column.center h2 {
    font-size: 1.5rem;
  }

  .container.column.center p {
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .container.column.center img {
    width: 95%;
    max-width: none;
  }
}

/* Footer */
footer {
  background-color: #23272a;
  padding: 40px 0;
  text-align: center;
}

footer .logo img {
  width: 150px; 
  height: auto;
  display: block;
  margin: 0 auto;
}
