/**
 * Estudio Talamo - Estilos personalizados
 * Complementa las utilidades de Tailwind CSS con componentes propios de marca.
 */

.luxury-line { height: 1px; background: linear-gradient(90deg, transparent, #B08D57, transparent); }
.text-stone-grey { color: #6B7177; }
.bg-ivory { background-color: #F5F3EF; }
.bg-dark-teal { background-color: #1C2B33; }
.border-gold { border-color: #B08D57; }

/* ===== Slider principal (hero) a pantalla completa ===== */
.hero-slider { position: relative; overflow: hidden; touch-action: pan-y; }
.hero-track { display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); height: 100%; }
.hero-slide { min-width: 100%; height: 100%; position: relative; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(180deg, rgba(7,22,30,0.35) 0%, rgba(7,22,30,0.55) 55%, rgba(7,22,30,0.85) 100%); }
.hero-dot { transition: all 0.3s ease; }
.hero-dot.active { background-color: #B08D57; width: 32px; }

/* ===== Botón flotante WhatsApp ===== */
.whatsapp-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: #25D366;
  animation: pulse-ring 2.2s cubic-bezier(0.4,0,0.6,1) infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ===== Logo circular en el header ===== */
.logo-circle {
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid #B08D57;
  box-shadow: 0 0 0 4px rgba(176,141,87,0.15);
  background: #07161E;
}

/* ===== Menú mobile ===== */
.mobile-nav { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.mobile-nav.open { max-height: 320px; }
.hamburger-line { transition: all 0.3s ease; transform-origin: center; }
.hamburger.open .line-1 { transform: translateY(7px) rotate(45deg); }
.hamburger.open .line-2 { opacity: 0; }
.hamburger.open .line-3 { transform: translateY(-7px) rotate(-45deg); }

/* ===== Iconos modernos de contacto ===== */
.contact-icon {
  width: 56px; height: 56px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(176,141,87,0.18), rgba(176,141,87,0.06));
  border: 1px solid rgba(176,141,87,0.35);
  color: #B08D57;
  transition: all 0.3s ease;
}
.contact-icon:hover { background-color: #B08D57; color: #ffffff; transform: translateY(-2px); }
.contact-icon-wa { color: #25D366; border-color: rgba(37,211,102,0.35); background: radial-gradient(circle at 30% 30%, rgba(37,211,102,0.16), rgba(37,211,102,0.05)); }
.contact-icon-wa:hover { background-color: #25D366; color: #ffffff; }

@media (prefers-reduced-motion: reduce) {
  .hero-track { transition: none; }
  .whatsapp-pulse::before { animation: none; }
}
