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

body {
  background-color: #fff3b0;
}

.hero {
  background: url('../img/cozinha.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #240e03;
}

.hero-content {
  background-color: rgba(196, 165, 149, 0.7);
  padding: 2rem;
  border-radius: 10px;
}

.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #8d0801;
  color: #fdfcfc;
  font-size: 1.3rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: #240e03 2px 2px 10px;
}

.btn:hover {
 background-color: #e5383b;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 2rem 1rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding: 1.5rem;
    border-radius: 8px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
/*---------------------------------*/
 
.depoimento {
  padding: 2rem;
  text-align: center;
}

.depoimentos {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.depoimento {
  display: none;
  font-size: 1.2rem;
  font-style: italic;
  color: #313030;
  background: #c9a88f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: opacity 0.5s ease;
}

.depoimento.ativo {
  display: block;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


