body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.hero {
  background: url('/static/img/portada.jpg') no-repeat center center/cover;
  min-height: 80vh;
  padding: 100px 20px;
}

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

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 10px auto;
}

.service-card {
  background-color: #e9ecf0;
}

.plot-gallery img {
  height: 200px;
  object-fit: cover;
}

/* Botón WhatsApp flotante */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  background-color: #1ebe57;
}



/* Cambia el color del ícono de los controles del carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6); /* color oscuro semitransparente */
  border-radius: 50%;
  background-size: 60% 60%; /* reduce tamaño del ícono */
  background-position: center;
  background-repeat: no-repeat;
}

/* Tamaño más pequeño si deseas */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-item img {
  height: 400px; /* o el alto que prefieras */
  width: 100%;
  object-fit: cover;
}


/* ==== Carrusel continuo personalizado ==== */
.carousel-custom {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.carousel-custom img {
  height: 300px;
  width: auto;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-custom img {
    height: 200px;
  }
}
