/*
CTC Separate Stylesheet
Updated: 2026-07-05 02:57:31
*/

@font-face {
  font-family: 'Cormorant';
  src: url('./fonts/CormorantGaramond.woff2') format('woff2');
  font-optical-sizing: auto;
  font-weight: 400 800; /* Corregido: removido <weight> */
  font-style: normal;
}

@font-face {
  font-family: 'Instrument';
  /* src: url('./fonts/InstrumentSans.woff2') format('woff2'); */
  src: url('./fonts/Manrope.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

.cormorant-400  *{
  font-family: 'Cormorant', serif;

}

h2.cormorant, #cormorant {
  font-family: 'Cormorant', serif;
  font-weight: 800;
  font-style: normal;
  color: #000;
}

.instrument {
  /* Espacio reservado */
}

.instrument, .instrument p {
  font-family: 'Instrument', sans-serif;
  font-weight: 400;
}

.menu-header * {
  font-weight: 600 !important;
}

body {
  font-family: 'Instrument', sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ==========================================================================
   Carrusel Infinito de Partners
   ========================================================================== */
.clients-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  cursor: grab;
}

.carousel-track.is-dragging {
  cursor: grabbing;
}

.carousel-group {
  display: flex;
  align-items: center;
}

.carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 3rem; 
}

.carousel-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70px; 
  background-color: rgba(0, 0, 0, 0.12); 
}

.carousel-group img {
  height: 50px !important;
  width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none; /* Evita que la imagen intercepte el click/drag */
  -webkit-user-drag: none; /* Bloquea el arrastre por defecto del navegador */
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Aseguramos que el contenedor del item no interfiera con el arrastre nativo */
.carousel-item a {
  display: block;
  line-height: 0;
  -webkit-user-drag: none;
} 

.carousel-item a:hover img {
  opacity: .7;
}

@media screen and (max-width: 1024px) {
  .carousel-group img { height: 40px !important;}
  .carousel-item { padding: 0 1rem; }
  .carousel-item::after { height: 45px; }
}


/* ==========================================================================
   LUXURY SLIDER - CORE STYLES (PREMIUM SMOOTH OVERLAY & 85VH)
   ========================================================================== */
.luxury-slider-wrapper {
  position: relative;
  width: 100%;
  height: 88vh;
  max-height: 88vh;
  overflow: hidden;
  background: #000;
  contain: layout style paint; 
}

.luxury-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* --- SLIDES & TRANSICIÓN DE OPACIDAD --- */
.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
  z-index: 1;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* --- ESTRUCTURA DE IMAGEN ADAPTADA A 85VH --- */
.slide-bg-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.slide-bg-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: right center;
  display: block;
  transform: scale(1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Animación Zoom In */
.slide-item.active .slide-bg-img {
  animation: premiumZoomIn 12s cubic-bezier(0.1, 0, 0.9, 1) forwards;
}

@keyframes premiumZoomIn {
  0% { transform: scale(1) translateZ(0); }
  100% { transform: scale(1.03) translateZ(0); }
}

/* --- OVERLAY ULTRA SUAVE Y GRADUAL (DESKTOP) --- */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* Transición progresiva tipo Easing de izquierda a derecha + capa base tenue */
  background: 
    linear-gradient(
      90deg, 
      rgba(0, 0, 0, 0.62) 0%, 
      rgba(0, 0, 0, 0.48) 25%, 
      rgba(0, 0, 0, 0.25) 50%, 
      rgba(0, 0, 0, 0.18) 75%, 
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      0deg, 
      rgba(0, 0, 0, 0.15), 
      rgba(0, 0, 0, 0.15)
    );
  pointer-events: none;
}

.slide-container-fixed {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.slide-content {
  max-width: 580px;
  color: #ffffff;
}

/* --- TEXTOS Y TRANSICIONES ASÍNCRONAS --- */
.slide-subtitle, 
.slide-title, 
.slide-description, 
.slide-cta {
  opacity: 0;
  transform: translateY(25px);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.slide-item.active .slide-subtitle    { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.slide-item.active .slide-title       { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.slide-item.active .slide-description { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

.slide-subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: #B79B74;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Instrument', sans-serif;
}

.slide-title {
  font-size: clamp(44px, 4.5vw, 70px);
  line-height: clamp(49px, 4.7vw, 75px);
  margin: 0 0 5px 0;
  font-weight: 400;
  font-family: 'Cormorant', serif;
}

.slide-description {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
  letter-spacing: 1px;
  margin-top: 12px;
  color: #e5e5e5;
  font-family: 'Instrument', sans-serif;
}

.slide-cta {
  border: 1px solid #B79B74;
  display: inline-block;
  padding: 12px 30px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(25px);
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.slide-cta:hover {
  background: #B79B74;
  border-color: #B79B74;
  color: #ffffff;
}

.slide-item.active .slide-cta {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.75s, 
              opacity 0.8s ease 0.75s,
              background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.slide-branding {
  opacity: 0;
  transition: opacity 1s ease 0.6s;
}

.slide-item.active .slide-branding {
  opacity: 1;
}

.slide-branding img {
  max-width: 250px !important;
  height: auto;
  display: block;
}

/* --- DOTS --- */
.slider-dots {
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  gap: 0.75rem; 
}

.slider-dot {
  position: relative;
  width: 15px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
}

.slider-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: transparent;
}

.slider-dot:hover, 
.slider-dot:focus {
  background: #b58648;
  opacity: .7;
}

.slider-dot.active {
  background: #b58648;
  transform: scaleY(1.2);
  opacity: 1;
}

@media (max-width: 1300px){
  .slide-container-fixed {
    padding: 0 1rem;
  }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 720px) {
  .slide-description {
    font-size: 14px;
    line-height: 20px !important;
  }
	
	.slide-subtitle {
		display: none
	}
	
	.slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;

}

  .luxury-slider-wrapper {
    height: 83vh;
    max-height: 83vh;
  }

  .slide-branding img {
    display: none;
  }

  /* OVERLAY SUAVIZADO EN MÓVIL (DE ABAJO HACIA ARRIBA) */
  .slide-overlay {
/* 	  background: transparent; */
background:
  linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.46) 35%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0.00) 100%
  ),
  linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.08)
  );
}
	
	@media (max-width: 520px) {
		
  .luxury-slider-wrapper {
    height: 75vh;
    max-height: 75vh;
  }
	}
	
	