:root {
  --black: #000000;
  --yellow: #FFC107;
}

body { font-family: 'Montserrat', sans-serif; background: white; color: #333; }

.navbar {
  background: var(--black) !important;
  transition: all 0.3s;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s;
}

.navbar.scrolled .logo-img { height: 40px; }

.logo-text { font-family: 'Playfair Display', serif; color: white; font-size: 1.8rem; }
.logo-num { color: var(--yellow); font-weight: 800; font-size: 1.4rem; margin-left: 5px; }

.hero-slider, .carousel, .carousel-inner, .carousel-item, .slide-bg {
  height: 100vh !important;
}

.slide-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: 1;
}

.logo-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.logo-slide {
  height: 80px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.carousel-caption {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.carousel-indicators [data-bs-target] {
  width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5);
}

.carousel-indicators .active { background: var(--yellow); }

.carousel-control-prev, .carousel-control-next { width: 5%; opacity: 0.8; }

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2rem;
  color: white;
}

.carousel-control-prev-icon::before { content: "\f053"; }
.carousel-control-next-icon::before { content: "\f054"; }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-yellow:hover { background: #e0a800; transform: translateY(-2px); }

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--black);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--yellow);
}

.service-card, .location-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.map-container iframe { border-radius: 10px; }

footer { background: var(--black); }
/* LOGO EN SLIDER: ESQUINA INFERIOR DERECHA */
.logo-overlay-bottom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(0,0,0,0.4);
  padding: 10px 15px;
  border-radius: 12px;
}

.logo-slide-bottom {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* Responsive: móvil */
@media (max-width: 576px) {
  .logo-slide-bottom { height: 45px; }
  .logo-overlay-bottom { bottom: 15px; right: 15px; padding: 8px 12px; }
}
/* WHATSAPP FIJO */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #FFC107;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover 
.btn-yellow:hover { 
  background-color: #e0a800;
  transform: scale(1.1);
  color: white;
}

.whatsapp-float i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}