body {
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  letter-spacing: 1px;
}


.img-hover {
  transition: transform 0.6s ease, filter 0.6s ease;
}

.img-hover:hover {
  transform: scale(1.08);
  filter: brightness(1.05);
}


.card {
  transition: all 0.4s ease;
}
.card:hover {
  transform: translateY(-10px);
}




/* ------------------ LOGO ------------------------ */


/* 🟡 LOGO PRINCIPAL (YA DORADO REAL) */
.hero-logo-main {
  width: 460px;
  position: relative;
  z-index: 2;

  /* ligera iluminación para que no se “aplane” */
  filter: 
    drop-shadow(0 0 6px rgba(255,255,255,0.15))
    drop-shadow(0 0 20px rgba(255,255,255,0.08));

  transition: all 0.4s ease;
}


/* ✨ HOVER SUTIL (vida sin exagerar) */
.hero-logo-main:hover {
  transform: scale(1.03);
  filter: 
    drop-shadow(0 0 10px rgba(255,255,255,0.25))
    drop-shadow(0 0 30px rgba(255,255,255,0.12));
}


/* 💡 GLOW BLANCO DETRÁS (PRO TAGLINE LOOK) */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 160px;
  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.12) 35%,
    rgba(255,255,255,0.04) 55%,
    transparent 75%
  );

  filter: blur(10px); /* 🔻 antes 30px */
  z-index: 1;
  pointer-events: none;
}

/* ✨ LÍNEA DE LUZ DORADA (detalle premium) */
.hero-logo-main::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 55%;
  width: 180%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(197,164,109,0.9),
    transparent
  );

  opacity: 0.8;
  filter: blur(1px);
}




/* ------------------ PARALLAX ------------------------ */
.parallax-wrapper {
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;

  background-image: url('../assets/img/103.png');
  background-size: cover;
  background-position: center;

  transform: scale(1.1);
  will-change: transform;
}





/* GALERÍA DE IMÁGENES */
.gallery-img {
  filter: brightness(0.95);
  transition: all 0.5s ease;
}

.gallery-img:hover {
  filter: brightness(1.05);
}








/* LINKS FOOTER */
.social-link {
  font-size: 14px;
  color: #9CA3AF;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #C5A46D;
  transform: translateY(-2px);
}



/* LOGO FOOTER (versión más sutil para no competir con el fondo oscuro) */
.footer-logo {
  width: 180px;

  /* lo convierte a blanco real */
  filter: brightness(0) invert(1);

  opacity: 0.95;

  /* leve glow para que no se pierda */
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,255,255,0.15));

  transition: all 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.03);
}









/* ICONOS REDES SOCIALES */
.social-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;

  color: rgba(255,255,255,0.8); /* 🔥 CAMBIO CLAVE */

  transition: all 0.3s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.social-icon:hover {
  color: #C5A46D;
  border-color: #C5A46D;
  transform: translateY(-2px);
}






/* BOTÓN SCROLL TOP */

.scroll-top {
  position: fixed;

  bottom: 90px;
  right: 30px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(30,30,30,0.9);
  color: #C5A46D;

  border: 1px solid rgba(197,164,109,0.3);
  border-radius: 12px;

  font-size: 18px;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;
  backdrop-filter: blur(10px);

  z-index: 9999;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}


.scroll-top:hover {
  transform: translateY(-3px);
  background: #C5A46D;
  color: #1E1E1E;
}

/* visible */
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}




/* HOVER SUTIL EN HORARIOS*/
#schedules > div {
  transition: all 0.3s ease;
}

#schedules > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}




/* HOVER SUTIL EN SERVICIOS */
#services > div {
  transition: all 0.3s ease;
}

#services > div:hover {
  transform: translateY(-4px);
  border-color: rgba(197,164,109,0.4);
}



#info svg {
  width: 18px;
  height: 18px;
}