@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #25ad00;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.navbar .navbar-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f8f9fa !important;
}

.navbar .nav-link {
  color: #f8f9fa !important;
  margin-left: 12px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar .nav-link:hover, 
.navbar .nav-link.active {
  color: #ffcc00 !important;
  transform: scale(1.1);
}

/* Hero */
.hero {
  background: linear-gradient(to right, #25ad00, #007bff);
  color: white;
  text-align: center;
  padding: 100px 20px 70px 20px;
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
  font-style: italic;
}

/* Carrusel */
.carousel-inner img {
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-caption {
  background: rgba(0,0,0,0.55);
  padding: 15px;
  border-radius: 10px;
}

.carousel-caption h5 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #ffcc00;
}

.carousel-caption p {
  color: #f1f1f1;
  font-style: italic;
}

/* Secciones */
section {
  padding: 60px 0;
}

.text-center h2 {
  font-family: 'Dancing Script', cursive;
  color: #004aad;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

section p {
  font-style: italic;
}

/* Nosotros */
.nosotros-img {
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

ul.valores {
  list-style: none;
  padding-left: 0;
  font-style: italic;
}

ul.valores li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

ul.valores li::before {
  content: "🐾";
  color: #25ad00;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

/* Footer */
footer {
  background: #004aad;
  color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
  font-style: italic;
}

footer a {
  color: #ffcc00;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

/* Responsive: móviles (hasta 768px) */
@media (max-width: 768px) {
  .carousel-inner img {
    height: 280px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* Responsive: tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .carousel-inner img {
    height: 400px;
  }
  .hero {
    padding: 70px 15px 50px 15px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .navbar .navbar-brand {
    font-size: 1.6rem;
  }
  .text-center h2 {
    font-size: 2rem;
  }
}

/* Responsive: laptops pequeños (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .carousel-inner img {
    height: 450px;
  }
  .hero {
    padding: 90px 20px 60px 20px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .navbar .navbar-brand {
    font-size: 1.7rem;
  }
  .text-center h2 {
    font-size: 2.1rem;
  }
}