/* CSS GLOBAL */

/* 0 - COMUNES */
/* 1.- CABECERA HEADER */
/* 2.- SLIDER */
/* 3- ZONAS */
/* 4- CUENTA ATRÁS */
/* 5.- SEDES */
/* 6.- ACTIVIDADES  */
/* 7.- ESTRELLAS */
/* 8- NEWSLETTER */
/* 9.- FOOTER */
/* 10.- SELECTOR DE IDIOMAS */



/* * 0 - COMUNES */

/* Tipografías */
.Univers45Light {
	font-family: Univers45Light;
}
.Univers55Roman {
	font-family: Univers55Roman;
}

/* Estilos generales */
body {
	font-family: Univers45Light;
	cursor: none; /* ocultamos el cursor real */
}

body.interior {
	cursor: default;
}

body.interior #cabecera h1 {
	margin: 0 !important;
}

body.interior .contenido a {
	color: #000 !important;
}

body.interior  .dropdown-menu li  a{
    background-color: #000;
}

.no-seleccionable {
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge antiguos */
}

h1, h2, h3, strong {
	font-weight: bold; 
}

strong {
	font-weight: 600;
}

footer a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

/* Selección de texto */
::selection {
	background: #000000;
	color: #FFFFFF;
}

/* ===== Scrollbar general (Firefox) ===== */
html {
    scrollbar-color: #B4B4B4 #000000;
    scroll-behavior: smooth; 
}



#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #000;
  pointer-events: none; /* que no bloquee clicks */
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background-color 0.1s ease;
  z-index: 999;
}



/* 1.- CABECERA HEADER */

header,
header h1 {
	color: #FFF;
	font-size: 34px;
	font-style: normal;
	font-weight: 300;
	line-height: 64px;
	letter-spacing: -1.7px;
}

/* Si el idioma es inglés */
html[lang="en"] header .logo {
    width: 264px;
	text-align: left;
}

/* Si el idioma es español */
html[lang="es"] header .logo {
    width: 334px;
	text-align: left;
}

header #eklipse {
	width: 100%;
}

header .idioma {
    padding-left: 30px;
}

header .idioma a {
	font-size: 24px;
    text-decoration: none;
	color: #FFF;
}

#cabecera {
    z-index: 9;
    position: relative;
}

#eklipse video {
    max-height: 95vh;
    margin-top: -62px;
}

header .lema a {
	color: #FFF;
	text-decoration: none;
}



/* 2.- SLIDER Y SEDES - Estilos Generales Compartidos */

#slider-menu {
    position: absolute;
    z-index: 9;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}


#slider .slider-menu {
	color:#000;
}

#slider .slider-menu ul {
	padding-left: 0;
}

#slider .slider-menu li {
	display: inline-block;
}

#slider .slider-menu li a {
    border-radius: 100px;
    border: 1px solid #000;
    color: #000;
    background-color: #FFF;
    text-decoration: none;
    text-align: center;
    font-size: 27px;
    font-style: normal;
    line-height: 24px;
    letter-spacing: -0.81px;
    padding: 19px 29px 15px 29px;
    margin-right: 24px;
    display: block;
    margin-bottom: 12px;
	transition: all 0.3s ease;
}

#slider .slider-menu li a:hover,
#slider .slider-menu li a.active {
	border-radius: 100px;
	border: 1px solid #000;
	color:#FFF;
	background-color: #000;
}


/* Define estilos base comunes para evitar repetición */
#slider h2,
#sedes h2,
#slider h3,
#sedes h3,
#slider .num,
#slider p,
#sedes p,
#slider aside p,
#sedes aside p {
	color: #000;
}

/* Estilos de Tipografía Univers45Light (Peso 300) */
#slider h2,
#sedes h2,
#slider .num,
#slider p,
#sedes p,
#slider aside p,
#sedes aside p {
	font-family: Univers45Light;
	font-weight: 300;
}

/* --- Títulos H2 --- */
#slider h2,
#sedes h2 {
	font-size: 65px;
	line-height: 1;
	letter-spacing: -1.3px;
	margin-bottom: 30px;
}

/* --- Títulos H3 --- */
#slider h3,
#sedes h3 {
	font-family: Univers55Roman; /* Sobrescribe Univers45Light */
	font-size: 27px;
	font-weight: 400; /* Sobrescribe 300 */
	line-height: 30px;
	letter-spacing: -0.54px;
	margin-bottom: 20px;
}

/* --- Número grande (.num) --- */
#slider .num {
	font-style: normal;
	line-height: 1.1;
	letter-spacing: -2px;
	font-size: clamp(50px, 15vw, 125px);
}

/* --- Párrafos principales (p) --- */
#slider p,
#sedes p {
	font-size: 27px;
	line-height: 32px;
	letter-spacing: -0.81px;
}

/* --- Subtítulos dentro de Párrafos --- */
#slider p .subtitulo,
#sedes p .subtitulo {
	font-weight: 600; /* Sobrescribe 300 */
	letter-spacing: 0.40px;
	margin-bottom: 5px;
	display: block;
}

/* --- Párrafos en ASIDE (menor tamaño) --- */
#slider aside p,
#sedes aside p {
	font-size: 20px;
	font-style: normal;
	line-height: 24px;
	letter-spacing: -0.6px;
	text-align: left;
}

/* --- Subtítulo dentro de ASIDE (con Univers55Roman) --- */
/* Se combinaron los selectores, manteniendo las diferencias por especificidad */
#slider aside p .subtitulo {
	font-family: Univers55Roman; 
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -0.6px;
	margin-bottom: 0;
	display: block;
}

#sedes aside p .subtitulo {
	font-family: Univers55Roman;
	font-weight: 300; 
	letter-spacing: 0.40px;
	margin-bottom: 0;
	display: block;
	padding-right: 75px;
}



/* --- Estilos Específicos de Slider y Posicionamiento --- */



#slider .slide {
	padding-top: 90px;
    padding-bottom: 90px;
    overflow: hidden;
    height: 100vh;
	/* min-height: 950px; */
}


.fijo {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #FFF;
}

aside {
	position: relative;
	overflow: hidden;
	background-color: #FFF;
}

/* Común: Transición para elementos .p2 */
/* Se combinaron: #slider p.p2 y #slider aside .p2 */
#slider p.p2,
#slider aside .p2 {
	transition: all 0.7s ease;
}

#slider p.p2 {
	bottom: -500px;
	position: relative;
}

aside .p1 .num {
	margin-left: -5px;
}

aside .p2 {
	top: 0;
	position: absolute;
	background-color: #FFF;
	/* transition: all 0.7s ease; ya está en el grupo anterior */
}





/* ----------------------------------------------------------------- */
/* MEDIA QUERIES */
/* ----------------------------------------------------------------- */

@media (max-width: 1199px) {

	#slider p.p2 {
		bottom: 0;
	}

	aside {
		margin-left: 0 !important;
		margin-top: 30px !important;
	}

	aside .p2 {
		position: relative;
		margin-top: 50px;
	}

	aside .p1 .num {
		margin-left: 0;
	}

	#slider .num {
		letter-spacing: normal;
	}

}




/* 3.- ZONAS */
#zonas {
    background-color: #828282;
    width: 100%;
    /* min-height: 880px; */
    color: #000;
    padding-top: 100px; 
    padding-bottom: 100px;
    height: auto; 
	overflow: hidden;
	position: relative;
}

#zonas .contenedor {
    position: absolute;
    bottom: 0;
	width: 100%;
}

#zonas .titulo {
    position: relative;
    z-index: 9;
}

#zonas .titulo h2 {
	font-family: Univers45Light;
	font-size: 65px;
    line-height: 1;
    letter-spacing: -1.3px;
    margin-bottom: 30px;
    color: white;
	font-weight: 300;
}

#zonas .titulo h3 {
	font-family: Univers55Roman;
    font-size: 27px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.54px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Estructura Nueva Responsive */
.contenedor-mapa-interactivo {
    color: white;
}

/* Mapa Wrapper */
.mapa-wrapper {
	position: relative;
    width: 100%;
    /* height: 100vh; ELIMINADO para permitir responsive */
    height: auto;
}

.mapa-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


/* Puntos (con animación) */
.punto {
    position: absolute;
    /* width: 24px; 
    height: 24px;  */   
	width: 18px; 
    height: 18px;
    border: none; 
    border-radius: 50%;
    cursor: pointer;
    background: white;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, background-color 0.2s;
}

/* Efecto Onda (Pulse Ring) */
.punto::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.punto.activo {
	background: #FFED00;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.punto:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: #ffc107; /* Amarillo al hover */
}


/* Panel de info */
.info-panel {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


#zonas .col-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.leyenda {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -1px;
    position: relative;
    padding-left: 55px !important;
}

.leyenda::before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: #FFED00;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 25px;
    bottom: 20px;
    transform: translateY(-50%);
}

#info-content {
    transition: opacity 0.3s ease-in-out;
    /* Opacidad inicial 1 porque cargamos Estella por defecto */
    opacity: 1; 
}

#info-content label {
    font-family: Univers45Light;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px; 
	letter-spacing: -0.6px;
}

#lbl-ciudad {
    color: #FFF;
    font-family: Univers45Light;
    font-size: 65px;
    font-weight: 300;
    line-height: 65px;
    letter-spacing: -1.3px;
    text-align: left;
    margin-bottom: 8px !important;
    position: relative;
    margin-left: -5px !important;
}

#lbl-latitud, #lbl-duracion {
    color: #FFF;
    font-family: Univers45Light;
    font-size: 65px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1.3px;
    margin-top: 8px;
}

#lbl-ciudad::before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: #FFED00;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 9px;
    transform: translateY(-50%);
    margin-left: -38px;
}

















/* 4- CUENTA ATRÁS */

#cuenta  {
	background-color: #FFED00;
}

#cuenta h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cuenta .container-fluid {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
	min-height: 700px;
}

#countdown {
    color: #000;
    font-family: Univers45Light;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: -11.25px;
    font-size: 16vw;
}

#cuenta .titulo {
	color: #000;
    font-family: Univers45Light;
	font-size: 65px;
	font-style: normal;
	font-weight: 300;
	line-height: 30px; 
	letter-spacing: -1.3px;
}

.n01 {
    width: 121px;
    height: 56px;
    background-image: url("../images/01.svg");
    background-repeat: no-repeat;
    padding-bottom: 60px;
    display: block;
}

.n02 {
    width: 112px;
    height: 56px;
    background-image: url("../images/02.svg");
    background-repeat: no-repeat;
    padding-bottom: 60px;
    display: block;
    filter: grayscale(1);
}

.n03 {
    width: 100px;
    height: 56px;
    background-image: url("../images/03.svg");
    background-repeat: no-repeat;
    padding-bottom: 110px;
	display: block;
}

.n04 {
	width: 85px;
    height: 56px;
    background-image: url("../images/04.svg");
    background-repeat: no-repeat;
    padding-bottom: 110px;
    background-position-x: center;
    display: block;
    text-align: center;
}

.n05 {
    height: 56px;
    background-image: url("../images/05.svg");
    background-repeat: no-repeat;
    padding-bottom: 110px;
    background-position-x: center;
    display: block;
    width: 100%;
    text-align: center;
}

.n06 {
    height: 56px;
    background-image: url("../images/06.svg");
    background-repeat: no-repeat;
    padding-bottom: 110px;
    background-position-x: center;
    display: block;
    width: 100%;
    text-align: center;
}

#countdown.countdown {
    gap: 1.5vw;
}

#countdown .time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

#countdown .label {
    color: #000;
	font-family: Univers55Roman;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -1px;
    width: 100%;
    text-align: left;
	padding-bottom: 30px;
	padding-left: 10px;
}

#countdown .value {
  line-height: 1;
}

#countdown .separator {
    align-self: flex-end;
    margin-bottom: 0.5rem;
    bottom: calc(50% - 24px);
    position: relative;
    /* width: 16px;
    height: 16px; */
    width: 1.2vw;
    height: 1.2vw;
}

  #countdown .no-resize {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
  }

  #countdown  h1 img {
    display: block;
    margin: 0 auto;
  }






/* 5.- SEDES */

/* --- RESETEO DE ESPACIADO DE GRID (Bootstrap) --- */

#sedes {
    padding-top: 80px;
    padding-bottom: 40px;
}

/* Contenedor sin padding horizontal */
#imagenes .container-fluid.no-padding {
	padding-left: 0;
	padding-right: 0;
}

/* Fila sin márgenes ni gap */
.row.no-gutters {
	margin-left: 0;
	margin-right: 0;
	gap: 0;
}

/* Columnas sin padding horizontal */
#imagenes .col-izda,
#imagenes .col-dcha {
	padding-left: 0;
	padding-right: 0;
	position: relative;
	min-height: 400px;
	overflow: hidden;
}

/* Imagen a ancho completo */
#imagenes .col-izda img, 
#imagenes .col-dcha img {
    width: 100%;
    display: block;
    min-height: 400px;
    object-fit: cover;
	transition:  transform .5s ease;
}

#imagenes .col-izda:hover img, 
#imagenes .col-dcha:hover img {
    width: 100%;
    display: block;
    min-height: 400px;
    object-fit: cover;
	transition:  transform .5s ease;
	transform:  scale(1.1); 
}


#imagenes h3,
#imagenes p,
#imagenes a.enlace {
	color: #000;
	font-family: Univers45Light;
	font-weight: 300;
	font-style: normal;
}

/* --- Contenedor de Imágenes y Rollover --- */

#imagenes {
	position: relative;
	overflow: hidden;
}

#imagenes .sede {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.75);
	width: 100%;
	height: 100%;
	top: 0;
   /* padding: 70px 45px; */
    padding: 5vw 5vw;
	opacity: 0;
	transition: opacity 0.5s ease;
}

#imagenes .sede:hover,
#imagenes .sede:focus-within {
  opacity: 1;
  border: 0;
}

/* --- Título H3 --- */
#imagenes h3 {
	font-size: 65px;
	line-height: 30px;
	letter-spacing: -1.3px;
}

#imagenes .subtitulo {
	font-family: Univers55Roman; 
	font-weight: 400; 
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.6px;
	margin-bottom: 0px;
	display: block;
	padding-right: 75px;
	padding-left: 5px;
	padding-top: 10px;
}

#imagenes p {
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.6px;
	padding-left: 5px;
	max-width: 435px;
	padding-top: 2px;
}


/* --- Enlace y enlace con Icono --- */

#imagenes a {
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.6px;
	text-decoration: none;
	position: relative;
	display: inline-block;
	margin-top: 20px;
	color:#000;
	padding-left: 5px;
}

#imagenes a.enlace {
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.6px;
	text-decoration: none;
	padding-left: 70px;
	position: relative;
	display: inline-block;
	margin-top: 30px;
}

#imagenes a.enlace::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	background-image: url("../images/localizador.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

#imagenes a.enlace:focus {
  outline: none;
}






/* 6.- ACTIVIDADES */



#actividades h2 {
	font-family: Univers45Light;
    font-weight: 300;
    font-size: 65px;
    line-height: 1;
    letter-spacing: -1.3px;
    margin-bottom: 30px;
}

#actividades .numero {
	padding-top: 14px;
	position: relative;
	line-height: 1;
	font-size: 225px;
	color: #000;
	font-family: Univers45Light;
	font-weight: 300;
	letter-spacing: -11.25px;
	display: block;
	margin: 20px 0 -20px -20px;
	white-space: nowrap;
}

#actividades .subrayado {
	text-decoration: underline;
}

#actividades p {
	color: #000;
	font-family: Univers45Light;
	font-size: 27px;
	font-weight: 300;
	line-height: 32px;
	letter-spacing: -0.81px;
	max-width: 620px;
}

#actividades .titulo  {
	color: #000;
	font-family: Univers55Roman;
	font-size: 27px;
	font-weight: 400;
	line-height: 30px; 
	letter-spacing: -0.54px;
}







/* 6.- ESTRELLAS */


#estrellas {
	/* Propiedades de Fondo (Parallax y Animación) */
	background-image: url(../images/estrellas.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	animation: zoomEstrellas 50s ease-in-out infinite alternate;

	/* Propiedades de Layout y Dimensiones */
	position: relative;
	height: 500px; /* La altura se puede controlar aquí o con min-height */
	min-height: 100vh; 
	overflow: hidden;

	/* Flexbox para centrado de contenido */
	display: flex;
	align-items: center; 
	justify-content: center; 
	text-align: center;
	
	/* Estilos de texto base comunes */
	color: white; /* Aplica a todos los elementos dentro */
	font-family: Univers45Light; /* Aplica a todos los elementos dentro */
}

/* --- Overlay/Superposición (Para oscurecer el fondo) --- */
#estrellas::before {
	content: "";
	position: absolute;
	inset: 0; /* cubre todo el div */
	background-color: rgba(0, 0, 0, 0.2); /* Oscurecer imagen de fondo */
	z-index: 1;
}

/* --- Control de Capas (Z-Index) --- */
/* Asegura que el contenido quede por encima del overlay y otros fondos */
#estrellas .bloque,
#estrellas > * {
	position: relative;
	z-index: 2;
}

/* --- Contenedor del Cielo (.sky) --- */
#estrellas .sky {
	width: 100vw;
	height: 100vh;
	position: absolute;
	inset: 0; /* ocupa todo el contenedor */
	z-index: 1;
	overflow: hidden;
}


/* --- Títulos (H2 y H3) y Párrafos (P) --- */

#estrellas h2 {
	font-size: 27px;
	font-weight: 300;
	line-height: 30px;
	letter-spacing: -0.54px;
}

#estrellas h3 {
	font-size: 65px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: -1.3px;
	margin-top: 25px;
	margin-bottom: 25px;
}

#estrellas p {
	font-size: 27px;
	line-height: 32px;
	letter-spacing: -0.81px;
	max-width: 875px;
	margin: auto;
	margin-bottom: 30px;
}

#estrellas a {
	text-decoration: none;
	font-size: 27px;
	line-height: 34px;
	letter-spacing: -0.81px;
	display: block;
	border: 1px solid #FFF;
	padding: 12px 75px 12px 25px;
	border-radius: 30px;
	width: fit-content;
	margin: auto auto 30px; 
	height: 57px;
	position: relative;
	color: #FFF;
	transition: all 0.5s ease;
}

#estrellas a:hover,
#estrellas a:focus {
	background-color: #000;
    transition: all 0.5s ease;
}

#estrellas a::after {
	content: " ";
	height: 57px;
	width: 57px;
	border: 1px solid #FFF;
	border-radius: 30px;
	display: block;
	position: absolute;
	right: -1px;
	top: -1px;
}

/* --- Iconos de Enlace --- */
#estrellas a.form::after {
	background-image: url("../images/form.svg");
	background-repeat: no-repeat;
	background-position: center;
}

#estrellas a.download::after {
	background-image: url("../images/down.svg");
	background-repeat: no-repeat;
	background-position: center;
}

/* --- Cometas y Animación --- */

#estrellas .comets {
	width: 150vw;
	height: 150vh;
	transform-origin: center;
	transform: translate3D(-25vw, -25vh, 1px) rotate(125deg) scale(0.9);
	overflow: hidden;
}

#estrellas .comet {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 75vh;
	background: linear-gradient(#fff, transparent);
	-webkit-animation: comet 3s ease-in-out forwards;
	animation: comet 3s ease-in-out forwards;
}

@-webkit-keyframes comet {
	0% {
		opacity: 0;
		transform: translateY(200%) scaleY(0);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(0) scaleY(1);
	}
}

@keyframes comet {
	0% {
		opacity: 0;
		transform: translateY(200%) scaleY(0);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(0) scaleY(1);
	}
}

/* --- Keyframes de Zoom --- */
@keyframes zoomEstrellas {
	0% {
		background-size: 100%;
	}
	50% {
		background-size: 115%;
	}
	100% {
		background-size: 100%;
	}
}






/* 7.- NEWSLETTER */

#newsletter {
	background-color: #FFED00;
	padding: 90px 0 !important;
}

#newsletter h3,
#newsletter input,
#newsletter .form-check,
#newsletter button.btn,
#newsletter .form-control::placeholder,
#newsletter a {
	color: #000;
	font-weight: 300;
	font-style: normal;
}

#newsletter h3 {
	font-size: 65px;
	line-height: 1;
	letter-spacing: -1.3px;
	font-family: Univers45Light; 
	padding-bottom: 5px;
}

#newsletter p {
	font-family: Univers55Roman; 
	font-size: 27px;
	font-weight: 400; 
	line-height: 24px;
	letter-spacing: -0.81px;
}

#newsletter input {
    background-color: transparent !important;
    border: 1px solid #000;
    border-radius: 40px;
    height: 57px;
    padding: 0px 24px 0 24px;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -0.81px;
	font-weight: 300;
}

/* --- Placeholder --- */
#newsletter .form-control::placeholder {
	font-family: Univers45Light;
	font-size: 27px;
	line-height: 24px;
	letter-spacing: -0.81px;
	opacity: 1;
}

/* --- Checkbox (Input específico) --- */
#newsletter input.form-check-input {
	height: 57px;
	width: 57px;
	cursor: pointer;
}

/* --- Contenedor del Checkbox (.form-check) --- */
#newsletter .form-check {
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.6px;
	height: 57px;
	display: flex;
	align-items: center;
	padding-left: 40px;
}

#newsletter .form-check label {
	padding-left: 20px;
	padding-top: 8px;
	font-size: 18px;
	max-width: 800px;
}

/* --- Botón (button.btn) --- */
#newsletter button.btn {
	font-family: Univers45Light !important;
	color: #FFF;
	height: 57px;
	padding: 14px 40px 9px 40px;
	border-radius: 30px;
	font-size: 27px;
	line-height: 30px;
	letter-spacing: -0.81px;
	background-color: #000;
	width: fit-content !important;
}

/* --- Estilos de Layout --- */
#newsletter form .col10,
#newsletter .bloque {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}

#newsletter .col {
	margin-top: 25px;
}

/* --- Icono de Checkbox --- */
.form-check-input:checked[type=checkbox] {
	--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}


#sib-container {
	background: transparent;
	margin: 0 auto;
	padding: 0;
	display: inline-block;
	width: 100%;
}


.sib-form {
	width: 100%;
}

#sib-form .campos imput{
    margin-top: 25px;
}

#sib-form label {
    padding-left: 0;
    padding-bottom: 8px;
    max-width: 800px;
    color: #000;
    display: flex !important;
    align-items: center;
    font-family: Univers45Light;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 24px; /* 120% */
	letter-spacing: -0.6px;
}

#sib-container .entry__field {
	background: transparent;
	border: 0;
	margin: 0;
}

.sib-form .entry__choice .checkbox, .sib-form .entry__choice .radio-button {
    margin-right: 2em;
}

.entry__choice {
    font-family: Univers45Light;
    padding: 0 !important;
}

.sib-form ::placeholder {
	color: #000;
	opacity: 1;
}

.sib-form-block {
	padding: 0;
	word-wrap: break-word;
	outline: none;
}

.sib-form {
	background-attachment: fixed;
	font-size: 16px;
	font-family: Univers45Light;
	padding: 0;
	margin: 0;
}

.sib-form-block button.sib-form-block__button {
    text-align: left;
    background-color: #000;
    border-width: 0px;
    border-radius: 100px;
    background: #000;
    height: 57px;
    color: #FFF;
	font-family: Univers45Light;
    font-size: 27px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -0.81px;
    padding-left: 30px;
    padding-right: 30px;
}

.sib-form .checkbox {
    width: 57px;
    height: 57px;
    border-radius: 30px;
    border: 1px solid #000;
    background-color: transparent;
}

.sib-form .checkbox:focus,
.sib-form .checkbox:active {
	border: 1px solid #000 !important;
	box-shadow: 0 0 0 2px #000;
}

.sib-form .input_replaced:checked+.checkbox_tick_positive {
    background: transparent !important;
    border-color: transparent !important;
    border: 1px solid #000 !important;
}

.sib-form .input_replaced:checked+.checkbox_tick_positive:before {
    background: transparent;
    border-color: #000;
}

.sib-form .checkbox_tick_positive:before {
    border-color: transparent;
    border-style: solid;
    border-width: 0 2px 2px 0;
    bottom: 1px;
    content: "";
    left: 50%;
    margin-left: -25%;
    position: absolute;
    top: 1px;
    -webkit-transform-origin: 80% 45%;
    transform-origin: 80% 45%;
    width: 50%;
}

.sib-form .input_replaced:active+.checkbox, 
.sib-form .input_replaced:active+.radio-button, 
.sib-form .input_replaced:focus+.checkbox, 
.sib-form .input_replaced:focus+.radio-button {
    border: 1px solid #000 !important;
}


/* 8.- FOOTER */

footer {
	padding-top: 30px;
}

footer .footer1, 
footer .footer2 {
    padding: 90px 0;
}

footer .footer2, 
footer .footer3 {
    border-top: 1px solid #FFF;
}

footer .footer3 {
    padding: 90px 0 25px 0;
}

.footer1 a.email {
    color: #000;
    font-family: Univers45Light;
    font-size: 27px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: -0.81px;
    background-color: #FFF;
    padding: 15px 30px 15px 30px;
    border-radius: 30px;
    height: 57px;
    display: block;
    width: fit-content;
    margin-top: 36px;
	border: 1px solid #000;
	transition: all 0.3s ease;
}

.footer1 a.email:hover {
    color: #FFF;
    background-color: #000;
	border: 1px solid #FFF;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer1 h2 {
	color: #FFF;
    font-family: Univers45Light;
	font-size: 65px;
	font-style: normal;
	font-weight: 300;
	line-height: 24px; 
	letter-spacing: -1.95px;
}


.footer1,
.footer1 a {
	color: #FFF;
    font-family: Univers45Light;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px; 
	letter-spacing: -0.6px;
}

.footer1 a:hover {
	text-decoration: underline;
}

.footer1 .subtitulo {
    font-family: Univers55Roman;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.6px;
    margin-bottom: 0;
    display: block;
}

.footer1 .rrss {
	margin-top: 12px;
}

.footer2 .col-dcha .logo {
    padding-left: 5px;
    padding-right: 6px;
    display: inline-block;
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer2 .col-dcha .logo img {
    /* scale: 0.9; */
}

.footer2 .col-dcha .logo:first-child{
    padding-left: 0;
}

.footer2 .col-dcha .logo:last-child{
    padding-right: 0;
}

.footer2 .col-izda .titulo {
    font-family: Univers45Light;
    color: #FFF;
    font-size: 34px;
    font-style: normal;
    font-weight: 300;
    line-height: 64px;
    letter-spacing: -1.7px;
    padding-left: 80px;
}

.footer2 .col-izda {
	display: flex;
    align-items: center;
}

footer .legal {
    padding-top: 80px;
	color:#FFF;
    font-family: Univers45Light;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px; 
	letter-spacing: -0.6px;
    overflow: hidden;
}

footer .legal a {
	color:#FFF;
    font-family: Univers45Light;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px; 
	letter-spacing: -0.6px;
}

footer .legal .col:first-child {
	text-align: left;
}

footer .legal .col:last-child {
	text-align: right;
}



/* 10.- SELECTOR DE IDIOMAS */
/* Contenedor principal del desplegable */
.dropdown-idiomas {
    position: relative; /* Esencial para posicionar el menú */
    display: inline-block;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 10; /* Asegura que esté por encima de otros elementos */
}

/* El elemento que muestra el idioma actual (e.g., 'ES') */
.lang-display {
    padding: 5px 10px;
    color: #FFF;
    font-weight: bold;
    border: 0;
    border-radius: 4px;
    transition: background-color 0.3s;
    line-height: 1;
    font-size: 18px;
}

/* Estilo para el menú desplegado */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin: 5px -14px 0 0;
    padding: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 4px;
    min-width: 60px;
    overflow: hidden;
    margin-top: -5px;
    padding-top: 10px;
	border: 0;
}

/* Mostrar el menú cuando se pasa el ratón por el contenedor principal */
.dropdown-idiomas:hover .dropdown-menu {
    display: block; /* MOSTRAR al hacer hover */
}

.dropdown-menu li {
    height: 50px;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* Estilo de cada opción de idioma */
.dropdown-menu li a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #DDD;
    transition: background-color 0.2s, color 0.2s;
	line-height: 1.7;
}

.dropdown-menu li a {
    color: #FFF;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    border: 1px solid #FFF;
    border-radius: 20px;
    height: 40px;
}

.dropdown-menu li a:hover {
    background-color: #535353; 
    color: #FFF;
}

/* Estilo para la opción de idioma activa (la pone JS) */
.dropdown-menu li.active {
    background-color: transparent; 
    color: #FFF;
    font-weight: bold;
}



.dropdown-menu li.active a {
    pointer-events: none;
    color: #000;
    border: 1px solid #FFF;
    border-radius: 20px;
    height: 40px;
    background-color: #FFF;
}















/* --- Estilos Específicos de Slider y Posicionamiento --- */

/* Contenedor principal del Slider para manejar el overflow horizontal */
#slider {
    overflow: hidden; /* Oculta los slides que no están a la vista */
    /* width: 100vw; */
    position: relative; /* Necesario para posicionar los indicadores */
}

/* Wrapper para todos los slides, que se moverá horizontalmente */
.slides-wrapper {
    display: flex; /* Coloca los slides en una fila */
    width: 400vw; /* 4 slides * 100vw cada uno */
    height: 100%; 
    transition: transform 0.6s ease-in-out; /* Animación de deslizamiento */
}

#slider .slide {
    padding-top: 15vh;
    padding-bottom: 90px;
    height: 100vh;
    width: 100vw;
    flex-shrink: 0;
}

#slider {
    /* Muestra la mano de agarre cuando el ratón está sobre el slider */
    cursor: grab;
}

#slider:active {
    /* Muestra la mano de agarre activa mientras se mantiene presionado el botón del ratón */
    cursor: grabbing;
}


/* ESTILOS DE INDICADORES (DOTS) */
.slider-indicators {
    position: absolute;
    bottom: 30px; /* Posiciona los puntos en la parte inferior */
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.slider-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 12px; /* Tamaño del punto */
    height: 12px; /* Tamaño del punto */
    margin: 0 5px;
    background-color: #000; /* Color inactivo */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
   border: 1px solid #000 !important;
}

.slider-indicators .active {
    background-color: transparent;
    border: 1px solid #000;
}


/* ESTILOS DE CONTROLES (FLECHAS) */
.slider-control-prev,
.slider-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; /* Ancho del botón */
    height: 50px; /* Alto del botón */
    background-color: #000;
    color: #fff; /* Color de la flecha */
    border: none;
    border-radius: 50%;
    z-index: 20; /* Asegura que estén por encima de los slides */
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
}

.slider-control-prev:hover,
.slider-control-next:hover {
    opacity: 1;
}

.slider-control-prev {
    left: 15px; 
}

.slider-control-next {
    right: 15px; 
}

/* Ocultar texto para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Estilo para flechas Deshabilitadas */
.slider-control-prev.disabled,
.slider-control-next.disabled {
    opacity: 0.3;
    pointer-events: none; /* Deshabilita clics */
	z-index: 9;
}
