body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  color: #47413C;
  background-color: #ffffff;
}

.header {
  background-color: #859dc1;
  text-align: center;
  padding: 1.5rem;
}

.logo {
  max-width: 220px;
  height: auto;
}

.fixed-hero-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.hero {
  padding: 3rem 2rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  color: #255194;
  font-size: 2rem;
  font-weight: 600;
}

.hero-intro {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.button {
  background-color: #d6ae64;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.button:hover {
  background-color: #b78f4d;
}

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.info-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.info-card h2 {
  color: #255194;
}

.images-section {
  padding: 3rem 2rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.images-section h1 {
  color: #255194;
  font-size: 2rem;
  font-weight: 600;
}

.features {
  background-color: #f3f3f3;
  padding: 3rem 2rem;
  text-align: center;
}

.features h2 {
  color: #255194;
}

.features ul {
  max-width: 600px;
  margin: auto;
  list-style-position: inside;
  padding-left: 0;
  text-align: left;
}

.contact-form {
  background-color: #f3f3f3;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 2px solid #ccc;
}

.contact-form form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #255194;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #859dc1;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d6ae64;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

.carousel-inner img {
  width: 220px;            /* Fixed width per image */
  max-width: 90vw;         /* Responsive max width */
  height: auto;            /* Keep aspect ratio */
  border-radius: 12px;     /* Matches Bootstrap `rounded` */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;       /* Ensures image fills nicely */
  transition: transform 0.3s ease;
}

.carousel-inner img:hover {
  transform: scale(1.03);  /* Slight zoom on hover */
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1;
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4); /* fondo oscuro semi-transparente */
  border-radius: 50%;
  padding: 1.2rem;
  background-size: 60% 60%;
}

@media (max-width: 768px) {
  .info-section {
    grid-template-columns: 1fr;
  }

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

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

  .button {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 1rem auto 0;
  }

  .contact-form button {
    width: 100%;
  }

  .logo {
    max-width: 180px;
  }

  .carousel-slide {
    flex-direction: column;
    align-items: center;
  }
  .carousel-img {
    width: 85%;
    margin-bottom: 1rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 0.8rem;
    background-size: 50% 50%;
  }
}
