:root {
  --glass-bg: rgba(40, 40, 40, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --primary-text: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --wsp-green: #25D366;
  --location-red: #ff4757;
}

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


/* =====================
   WHATSAPP FLOTANTE
===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
}

.tooltip-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #1e293b;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 9999;
}

.tooltip-whatsapp.show {
  opacity: 1;
  transform: translateY(0);
}
/* =====================
   ANIMACIONES
===================== */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

html {
  background-color: #000;
}


body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: var(--primary-text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Fondos decorativos */
.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 0, 0, 0.03) 0%, transparent 30%);
  z-index: -2;
}

.background-car {
  position: fixed;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-image: url('https://cdn.pixabay.com/photo/2013/07/12/14/07/car-147016_960_720.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.03;
  z-index: -1;
  transform: rotate(15deg);
}

/* Contenedor principal */
.glass-card {
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 480px;
  margin: 1rem;
}

/* Logo */
.logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

/* Texto */
.lead {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* Contenedor de enlaces */
.links-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* Botones */
.btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-custom i {
  font-size: 1.25rem;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-wsp {
  background-color: var(--wsp-green);
}

.btn-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-fb {
  background-color: #1877F2;
}

.btn-tt {
  background: linear-gradient(45deg, #010101, #69C9D0, #EE1D52);
}

/* Mapa y ubicación */
.map-container {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 15px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.map-container h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.location-icon {
  color: var(--location-red);
  font-size: 1.3em;
  position: relative;
}

.location-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background-color: var(--location-red);
  border-radius: 50%;
  border: 2px solid rgba(40, 40, 40, 0.8);
}

.location-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}








/* Animación de corazón */
@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

/* Media Queries para responsividad */
@media (max-width: 576px) {
  .glass-card {
    padding: 1.5rem;
    margin: 0.5rem;
    border-radius: 15px;
  }
  
  .logo {
    max-width: 220px;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .btn-custom {
    font-size: 0.9rem;
    padding: 0.7rem 1.25rem;
  }
  
  .map-container {
    padding: 0.75rem;
  }
  

}

@media (max-width: 400px) {
  .glass-card {
    padding: 1.25rem;
  }
  
  .btn-custom {
    font-size: 0.85rem;
  }
  
  .btn-custom i {
    font-size: 1.1rem;
  }
  
  .location-text {
    font-size: 0.95rem;
  }
  
  
}

/* Estilo para el botón de fotos */
.btn-photos {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
}
.btn-photos:hover {
  background: linear-gradient(45deg, #2575fc, #6a11cb);
}

/* Estilos para el modal de fotos */
.modal-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.carousel-item img {
  max-height: 70vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 5px;
}

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

@media (prefers-color-scheme: light), (prefers-color-scheme: dark) {
  html, body {
    background-color: #000 !important;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d) !important;
    color: #fff !important;
  }
}
/* Botón Página web */
.btn-web {
  background-color: #930404;
}
.btn-web:hover {
  background-color: #adadad;
}
