* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  height: 100%;
  overflow: hidden;
  color: #fff;
  background: #000;
}

/* Video o imagen de fondo */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Oscurecer fondo */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* Contenido centrado */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 45%;
  transform: translateY(-50%);
}

.logo {
  width: 120px;
  margin-bottom: 15px;
}

h1 {
  font-size: 1.8rem;
  color: #c8a46d;
  letter-spacing: 1px;
}

p {
  font-size: 1rem;
  margin: 10px auto 20px;
  color: #f0e6d2;
}

button {
  padding: 12px 28px;
  background: linear-gradient(135deg, #c8a46d, #b58b55);
  border: none;
  border-radius: 30px;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(200,164,109,0.3);
  transition: all 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #e0c287, #c8a46d);
  box-shadow: 0 0 25px rgba(200,164,109,0.6);
  transform: scale(1.05);
}


.popup-card {
  background: #0d0d0d;
  color: #f5f5f5;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
  border: 1px solid #d4af37;
}
.popup-card h3 {
  color: #d4af37;
  margin: 0 0 3px;
  font-size: 16px;
}
.popup-card .tipo {
  color: #f1c27d;
  font-weight: 600;
  margin-bottom: 4px;
}
.popup-card .direccion {
  font-size: 13px;
  color: #ccc;
}
.popup-card .descripcion {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.4;
}
.popup-links {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
}
.popup-links a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}
.popup-links a:hover {
  color: #fff;
}

