/* ============================================
   LATINAS STYLE - Estilos Globales
   ============================================ */

/* === RESET & BASE === */
html, body { overflow-x: hidden; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #c9a96e; border-radius: 4px; }

/* === LETTER WATERMARK === */
.letter-watermark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: -1rem;
  left: 1rem;
  pointer-events: none;
  user-select: none;
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === NAVIGATION === */
.nav-scrolled {
  background-color: rgba(26, 26, 26, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #c9a96e;
  transition: width 0.3s ease;
  margin-top: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* === MOBILE MENU === */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* === BUTTONS === */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-gold:hover::after {
  transform: translateX(100%);
}

/* === IMAGE ZOOM === */
.img-zoom {
  transition: transform 0.6s ease;
}
.img-zoom:hover {
  transform: scale(1.03);
}

/* === SERVICE CARDS === */
.service-card:hover .service-overlay { opacity: 1; }
.service-card:hover img { transform: scale(1.05); }

/* === GALLERY === */
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* === PRICING === */
.tab-btn.active {
  color: #c9a96e;
  border-bottom: 2px solid #c9a96e;
}
.pricing-row {
  transition: background-color 0.3s ease;
}
.pricing-row:hover {
  background-color: rgba(201, 169, 110, 0.05);
}

/* === COUNTERS === */
.counter-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #c9a96e;
}

/* === TESTIMONIALS === */
.testimonial-track {
  transition: transform 0.5s ease;
}

/* === PAGE HERO === */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.page-hero > * {
  position: relative;
  z-index: 1;
}

/* === DIVIDER === */
.gold-divider {
  width: 60px;
  height: 1px;
  background: #c9a96e;
  margin: 0 auto;
}

/* === FEATURE ICON === */
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  color: #c9a96e;
  stroke: #c9a96e;
  fill: none;
}

/* === WHATSAPP FLOAT === */
@keyframes pulse-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(201, 169, 110, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #c9a96e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 40;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
  transition: all 0.3s ease;
  animation: pulse-gold 2s infinite;
}
.whatsapp-float:hover {
  background: #b8944f;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.6);
  animation: none;
}

/* === LOGO === */
.logo-oscuro { display: none; }
