/* Reset e fonte */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #3acd6d;
  color: #333;
  line-height: 1.6;
  transition: background 0.4s, color 0.4s;
}

/* Modo escuro */
body.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

body.dark-mode .card,
body.dark-mode .produto-card{
  background-color: #1e1e1e;
  color: white;

}

body.dark-mode .hero-section {
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.6);

}

body.dark-mode .navbar{
  background-color: #1e1e1e;
}
body.dark-mode footer {
  background-color: rgba(0, 0, 0, 0.83);
}

body.dark-mode .nav-links a:hover {
  color: #1abc9c;
}

/* Botão de dark mode */
.dark-mode-toggle {
  position: fixed;
  top: 1.5rem;
  right: 0.5rem;
  background-color: #1abc9c;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
  z-index: 1000;

}

/* Navbar */
.top-header {
  background-color: #36b87a;
  padding: 0.5rem 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 70px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-right: 3rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;


}

.nav-links a:hover {
  color: #16602a;
}

/* Hero */
.hero-section {
  background: url("imagens/cachorrinhos.jpg") center/cover no-repeat;
  padding: 7rem 5rem;
  text-align: center;
  color: white;
  background-attachment: fixed;
}

.hero-content {
  animation: fadeIn 2.5s ease forwards;
}

.hero-content h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.hero-content h3 {
  font-size: 2rem;

}

.cta-button {
  background-color: #1abc9c;
  padding: 1.5rem 2.6rem;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  margin-top: 4rem;
  font-size: 1.5rem;
}

.cta-button:hover {
  background-color: #16a085;
}

/* Benefícios */
.benefits {
  padding: 4rem 2rem;
  text-align: center;
  animation: slideUp 1s ease forwards;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.benefits h2{
  font-size: 2.6rem;
}

.card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
  max-width: 350px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  border-radius: 1rem;
  width: 280px;
  margin-bottom: 1rem;
}

/* Produtos */
.produtos-section {
  padding: 4rem 2rem;
  background-color: #7cffa3;
  text-align: center;
  animation: slideUp 1.3s ease forwards;

}
.produtos-section h2{
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.produtos-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;

}

.produto-card {
  background-color: white;
  padding: 1rem;
  border-radius: 1rem;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.produto-card:hover {
  transform: translateY(-10px);
}

.produto-card img {
  width: 100%;
  border-radius: 0.5rem;
}

.produto-card p {
  margin-top: 0.5rem;
  font-weight: bold;
}

/* Seção redes sociais */
.social-buttons {
  text-align: center;
  margin-top: 2rem;
}

.whatsapp-button,
.instagram-button {
  display: inline-block;
  margin: 1rem 1rem;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  animation: pulse 1.8s infinite;
}

.whatsapp-button {
  background-color: #25d366;
}

.instagram-button {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

body.dark-mode .whatsapp-button {
  background-color: #1ebe5d;
}

body.dark-mode .instagram-button {
  filter: brightness(0.9);
}

/* Footer */
footer {
  background-color: rgb(123, 255, 148);
  color: #000000;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
  .card-container, .produtos-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
}