:root {
  --dark-moss-green: #606c38ff;
--pakistan-green: #283618ff;
--cornsilk: #fefae0ff;
--earth-yellow: #dda15eff;
--tigers-eye: #bc6c25ff;
}

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

html {
  font-family: "Montserrat", sans-serif;
}

body {
  padding: 80px 120px;
  background-color: var(--earth-yellow);
  z-index: -1;
}

.container-logo {
  justify-content: center;
  display: flex;
  margin-bottom: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 24px;
}

.container-imagem {
  display: flex;
  justify-content: center;
}

.container-imagem img {
  border: 3px solid black;
  border-radius: 15px;
  margin-bottom: 40px;
}

.container-tempo {
  display: flex;
  gap: 20px;
  justify-content: center;
  list-style: none;
  margin-bottom: 40px;
}

.container-tempo li {
  background-color: var(--tigers-eye);
  padding: 10px;
  width: fit-content;
  border: 2px solid black;
  border-radius: 15px;
  font-weight: bold;
  font-size: small;
  color: white;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.p {
  text-align: justify;
  margin-bottom: 50px;
}
.parágrafo{
    text-decoration: none;
    color: white;
    width: fit-content;
    background-color: var(--tigers-eye);
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}

h2 {
  margin-top: 20px;
  text-align: center;
  color: black;
  background-color: white;
  border-radius: 15px;
  padding: 5px 20px;
}

.container-ingredientes li {
  background-color: var(--tigers-eye);
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 30px;
  padding: 10px;
  gap: 20px;
  font-weight: bold;
  margin-top: 20px;
  border-radius: 15px;
}

.container-utensilios li {
  background-color: var(--tigers-eye);
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 30px;
  padding: 10px;
  gap: 20px;
  font-weight: bold;
  border-radius: 15px;
  margin-top: 20px;
}

.container-preparo {
  list-style: none;
  color: white;
  background-color: var(--tigers-eye);
  border: 2px;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: fit-content;
  margin-top: 15px;
  padding: 20px 40px;
}

a {
    text-decoration: none;
    color: white;
    width: fit-content;
    background-color: orangered;
    padding: 20px 50px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 50px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
@media (max-width: 480px) {
  body {
    padding: 20px 15px; /* Reduz muito o padding lateral */
  }
  
  h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 1.2rem;
    padding: 8px 15px;
    margin: 15px 0;
  }
  
  .container-imagem img {
    width: 100%;
    max-width: 350px;
    border: 2px solid black;
  }
  
  .container-tempo {
    flex-direction: column; /* Empilha os itens verticalmente */
    align-items: center;
    gap: 10px;
  }
  
  .container-tempo li {
    padding: 8px 15px;
    font-size: 0.8rem;
    text-align: center;
    width: 80%;
  }
  
  .parágrafo {
    padding: 15px 20px;
    font-size: 0.85rem;
    line-height: 1.4;
    width: 100%;
  }
  
  .container-ingredientes li,
  .container-utensilios li {
    flex-direction: column; /* Empilha imagem e texto */
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .container-ingredientes li img,
  .container-utensilios li img {
    width: 60px;
    height: 60px;
  }
  
  .container-preparo {
    padding: 15px 20px;
    font-size: 0.9rem;
    text-align: left;
  }
  
  .container-preparo li {
    margin-bottom: 12px;
    line-height: 1.4;
  }
  
  a {
    padding: 15px 30px;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 30px;
  }
}