body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #2b1d17;
}

h1, h2, h3, p {
  letter-spacing: 1px;
}


.nome_empresa {
  background-color: #1e140f;
  border-bottom: 1px solid #4a352c;
}

.green_yard {
  font-size: 28px;
  font-weight: 600;
  color: #e8d8c3;
  text-align: center;
}

/* CAPA */

.capa {
  background-image: url('./img/capa.jpg'); 
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capa_conteudo {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(43,29,23,0.7));
  text-align: center;
  padding: 120px 20px;
}

.capa_conteudo h1 {
  font-size: 48px;
  font-weight: 700;
  color: rgb(181, 206, 71);
}

.capa_conteudo h2 {
  font-size: 24px;
  font-weight: 300;
  margin-top: 10px;
  color: #e6c9a8;
}

.title {
  align-items: center;
  padding: 30px 20px;
  text-align: center;
}

.titulo1 {
  font-size: 28px;
  font-weight: 600;
  color: #c29665;
}

.titulo2 {
  text-align: center;
  font-weight: 300;
  margin-bottom: 40px;
  color: #e6c9a8;
}

/* COMIDAS */

.comidas {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

.div_alimentos {
  text-align: center;
}

.alimentos {
  width: 150px;
  transition: transform 0.3s ease;
}

.alimentos:hover {
  transform: scale(1.1);
}

.div_alimentos p {
  margin-top: 10px;
  font-weight: 500;
}

.descricao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.coluna img{
    width: 40%;
}

.seus_favoritos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.favoritos_texto {
  order: 1; /* texto primeiro */
}

.seus_favoritos img {
  order: 2; /* imagem depois */
}

.catalogo_texto,
.favoritos_texto {
  max-width: 55%;
}

.nosso_catalogo img,
.seus_favoritos img {
  max-width: 40%;
  border-radius: 10px;
}

.nosso_catalogo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalogo_texto {
  order: 1; /* texto primeiro */
}

.nosso_catalogo img {
  order: 2; /* imagem depois */
}

.texto {
  max-width: 400px;
}

.texto h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #e6c9a8;
}

.texto p {
  font-size: 18px;
  line-height: 1.6;
  color:  #c29665;
}

.catalogo_texto h1 {
  color: rgb(181, 206, 71);
  font-weight: 600;
}

.favoritos_texto h1 {
   color: rgb(181, 206, 71);
  font-weight: 600;
}

.favoritos_texto h2 {
    color: #c29665;
}

.imagem_descricao {
  width: 350px;
  border-radius: 12px;
}

.comida_desconto h2{
    color: #c29665;
}

.catalogo_texto h2{
        color: #c29665;
}

/* OPÇÕES */

.opcoes {
  display: flex;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.comida_desconto {
  width: 48%;
}

.coluna {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comida_desconto {
  background-color: #3a261f;
  border-radius: 12px;
  padding: 20px;
  max-width: 500px;
}

.texto_desconto h1 {
  color: rgb(181, 206, 71);
  font-weight: 600;
}

.coluna {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nosso_catalogo,
.seus_favoritos {
  background-color: #3a261f;
  padding: 20px;
  border-radius: 12px;
}

.comida_desconto img {
  width: 100%;
  border-radius: 12px;
}

/* ==========================
   RESPONSIVIDADE
========================== */

@media (max-width: 1024px) {
  .capa_conteudo h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {

  .title {
    flex-direction: column;
    gap: 15px;
  }

  .descricao {
    flex-direction: column;
    text-align: center;
  }

  .imagem_descricao {
    width: 100%;
    max-width: 350px;
  }

  .capa_conteudo {
    padding: 80px 20px;
  }

  .capa_conteudo h1 {
    font-size: 32px;
  }

  .capa_conteudo h2 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {

  .capa_conteudo h1 {
    font-size: 26px;
  }

  .titulo1 {
    font-size: 22px;
  }

  .alimentos {
    width: 120px;
  }
}

@media (max-width: 768px) {

  .nosso_catalogo,
  .seus_favoritos {
    flex-direction: column;
    text-align: center;
  }

  .catalogo_texto,
  .favoritos_texto,
  .nosso_catalogo img,
  .seus_favoritos img {
    max-width: 100%;
  }
}

.comida_desconto {
  width: 48%;
}

.coluna {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}