body {
  background-color: #fdfdfd;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  background-color: #ffffff;
  border-bottom: 4px solid #7AC943;
}
.navbar-brand img {
  height: 80px;
}
.nav-link {
  color: #642B0C !important;
  font-weight: 500;
}
.nav-link.active,
.nav-link:hover {
  color: #7AC943 !important;
}
.btn-custom {
  background-color: #7AC943;
  color: white;
  border-radius: 25px;
  padding: 10px 25px;
  border: none;
}
.btn-custom:hover {
  background-color: #5a9e32;
}

/* CARRUSEL */
.carousel-item img {
  height: 60vh;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .carousel-item img {
    height: 40vh;
  }
}
.carousel-caption h5 {
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.carousel-caption p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* FAVORITOS */
#favoritos {
  background: #f2fdf2;
  padding: 60px 20px;
  border-radius: 15px;
}
.section-title {
  color: #642B0C;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
.section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: #7AC943;
  display: block;
  margin: 10px auto 0;
}
.card {
  border: none;
  border-top: 4px solid #7AC943;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  height: 220px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

/* NOSOTROS */
.nosotros {
  background-color: #f2fdf2;
  padding: 60px 20px;
  border-radius: 15px;
}

/* CONTACTO */
.contacto {
  padding: 60px 20px;
}
.form-control {
  border-radius: 10px;
}

/* FOOTER */
.footer {
  background-color: #7AC943;
  color: white;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}
.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
}
.social-icons a:hover {
  color: #642B0C;
}
