/* CONFIGURACIÓN Y PALETA DE COLORES CORPORATIVA HEXATEX */
:root {
  --bg-dark-base: #05070B;
  --bg-card: rgba(14, 20, 30, 0.95);
  --gold-primary: #D4AF37;
  --gold-gradient: linear-gradient(135deg, #C5A039 0%, #FDF8C4 30%, #B88E28 65%, #AA771C 100%);
  --text-white: #FFFFFF;
  --text-gray: #B0B9C6;
  --border-gold: rgba(212, 175, 55, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FONDO NEGRO ABSOLUTO CON GEOMETRÍA DE HEXÁGONOS DORADOS FINOS (CSS/SVG INTEGRADO) */
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark-base) !important;
  
  /* SVG Vectorial: Traza hexágonos dorados súper sutiles y elegantes sin depender de imágenes pesadas */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 66L56 50L56 84L28 100Z' fill='none' stroke='%23D4AF37' stroke-width='1' stroke-opacity='0.22'/%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  background-size: 56px 100px !important;
  background-attachment: fixed !important;
  
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 12px;
}

/* CONTENEDOR PRINCIPAL TIPO LANDING LINK */
.link-container {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}

/* ENCABEZADO Y LOGO */
.link-header {
  margin-bottom: 20px;
}

.link-logo {
  height: 60px !important;
  width: auto !important;
  margin: 0 auto 8px auto;
  display: block;
  object-fit: contain;
}

.tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
}

/* CARRUSEL DE IMÁGENES */
.carousel-container {
  position: relative;
  width: 100%;
  height: 230px;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BOTONERA PRINCIPAL */
.buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(6, 9, 14, 0.9);
  border: 1px solid var(--gold-primary);
  color: var(--text-white);
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.btn-whatsapp {
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #FFF;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* SECCIÓN DEL MAPA DE UBICACIÓN */
.map-section h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-primary);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.address-text {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

/* FOOTER */
.link-footer {
  margin-top: 25px;
  font-size: 0.75rem;
  color: var(--text-gray);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 15px;
}