body {
  background: white;
  color: black;
  font-family: Arial, sans-serif;
  padding-bottom: 120px;
}

.main-container {
  width: 100%;
  padding: 40px 40px;
}

.title {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #777;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.btn-main {
  background: #ff4da6;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 15px;
  display: block;
}

.btn-main:hover {
  background: #ff1a8c;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
  display: block;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.footer {
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

.carousel-item .row {
  display: flex;
}

.carousel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.carousel-img:hover {
  transform: scale(1.08);
}

#imageModal .modal-dialog {
  max-width: 95vw;
  margin: auto;
}

#imageModal .modal-content {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modalImage {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #777;
  border-radius: 50%;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.btn-float {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);

  color: black;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.btn-float i {
  font-size: 16px;
}

.btn-float:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ICONO WHATSAPP */
.btn-float .fa-whatsapp {
  color: #25D366;
}

/* ICONO CALENDARIO (azul pastel) */
.btn-float .fa-calendar-alt {
  color: #8fbfff;
}

.btn-float:hover i {
  transform: scale(1.15);
}

.floating-buttons {
  bottom: calc(20px + env(safe-area-inset-bottom));
}

.services {
  text-align: left;
  margin-top: 30px;
}

.section-title {
  font-size: 20px;
  margin: 25px 0 10px;
  font-weight: 600;
}

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.04);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.service-card:hover {
  background: rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 16px;
  margin: 0;
}

.service-card p {
  font-size: 13px;
  color: #777;
  margin: 5px 0 0;
}

.service-price {
  font-weight: bold;
  font-size: 16px;
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}
