  /**************************************************/
  /****************  1. URL PAGINA   *********************/
  /**************************************************/

/* .page, .page-scale-wrap { overflow: visible!important; } */

.anythingSlider .anythingWindow  {overflow: visible;}
/* .page {opacity: 0;} */
li.page {
	transition: opacity 0.2s ease-out;
  }
  
  li.page[aria-hidden="true"] {
	opacity: 0;
  }
  
  li.page[aria-hidden="false"] {
	opacity: 1;
  }
  

  /**************************************************/
  /****************  2. FONDO   *********************/
  /**************************************************/

body, #container-wrap, .page-scale-wrap {
	background-color: transparent!important;
  }

.bg-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Animaciones para la entrada */
@keyframes slideInNext {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideInBack {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Animaciones para la salida */
@keyframes slideOutNext {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes slideOutBack {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

/* Clases para aplicar las animaciones */
.slide-next {
  animation: slideInNext 0.6s ease 0.2s forwards;
}
.slide-back {
  animation: slideInBack 0.6s ease 0.2s forwards;
}
.slide-out-next {
  animation: slideOutNext 0.6s ease 0.2s forwards;
}
.slide-out-back {
  animation: slideOutBack 0.6s ease 0.2s forwards;
}

  /**************************************************/
  /****************  3. BOTONES   *********************/
  /**************************************************/


/**************** animacion boton circular ****************/
.boton-circular-animacion svg {
	animation: circle-animation 3s infinite forwards;
	transform-origin: 50% 50%;
	animation-delay: 2s;
  }
  
  @keyframes circle-animation {
	0% {
	  transform: scale(1);
	  opacity: 0;
	}
	33% {
	  transform: scale(1);
	  opacity: 1;
	}
	77% {
	  transform: scale(1.5);
	  opacity: 0;
	}
	100% {
	  transform: scale(1.5);
	  opacity: 0;
	}
  }

  .boton-circular-animacion svg circle{
	fill: #ffed00!important;
  }

  @media screen and (max-width: 745px) {
	.boton-circular-animacion svg ellipse{
		fill: #ffed00!important;
	}
  }

  /**************** efecto hover boton ****************/
  .boton-catalogo {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: #009976;
    color: #fff;
    border: none;
    padding-top: 10px;
    padding-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .boton-catalogo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #D1FFD8;
    border-radius: inherit;
    transition: width 0.3s ease;
  }
  
  /* Cambio de color de texto y expansión de la capa al hacer hover */
  .boton-catalogo:hover p.escritorio_-_boton-verde,
  .boton-catalogo:hover p.boton-verde {
    color: #009976;
	z-index: 3;
  }
  
  .boton-catalogo:hover::after {
    width: 100%;
  }

  .emagazines{
    z-index:5;
  }

  @media screen and (max-width: 745px) {
	.boton-catalogo{
		padding-top: 16px;
	}
  }

 /**************** efecto hover catalogos travelplan ****************/
    .enlace-externo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0; 
    bottom: 0;
    background: url("../../recursos/botones/enlace-externo-hover.svg") no-repeat left center;
    background-size: contain;
    transform: scaleX(0);           /* Arranca “aplastado” en el eje X */
    transform-origin: left center;  /* Se expande desde la izquierda */
    transition: transform 0.3s ease;
    z-index: 2;
    opacity: 0.8;
  }
  
  .enlace-externo img {
    position: relative;
    z-index: 1;
  }

  .enlace-externo:hover::before {
    transform: scaleX(1);          
  }

  /**************************************************/
  /*******************  4. MENU *********************/
  /**************************************************/

  @font-face {
    font-family:FF-Playfair-Bolditalic;
    src:url("../fonts/PlayfairDisplay-BoldItalic.otf");
    font-weight:bold;
  }

.dropdown-menu {
	width: 100%;
	z-index: 9999;
	position: relative;
	background-color: #fff;
	-webkit-user-select: none;
	user-select: none;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	font-family: Lato, "Raisonne Pro", sans-serif;
	padding: 0 30px 0 30px;
}

.dropdown-menu-logo {
	flex-grow: 1;
	padding: 10px 0px 0px 0px;
}

.dropdown-menu-logo img {
	height: 35px;
}

.dropdown-menu>ul {
	display: flex;
	flex-grow: 2;
	justify-content: space-between;
	align-items: center;
	margin: 0px;
}

.dropdown-menu-items li a {
  display: inline-block;
}

.seccion-menu a{
	padding: 17px 10px;
	box-sizing: border-box;
	text-decoration: none;
	color: #0d0d0d;
	font-size: 14px;
	text-align: left;
	font-family: 'FF-Poppins-Regular';
}

.iconos-dropdown-menu a {
	padding: 11px 14px;
}

.dropdown-menu label,
.dropdown-menu input {
	display: none;
}

.marcado {
  font-family: 'FF-Playfair-Bolditalic'!important;
  font-size: 16px!important;
  color: #000 !important;                
  text-decoration: underline!important;         
  text-decoration-color: #000;          
  text-decoration-thickness: 2px!important;    
  text-underline-offset: 6px!important;          
}

.iconos-dropdown-menu {
	display: flex;
	justify-content: end;
	/* align-items: center; */
	list-style: none;
}

.iconos-dropdown-menu a img {
	width: 21px;
	height: auto;
	cursor: pointer;
}

.dropdown-menu-movil {
	display: none;
}

.dropdown-menu-items a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffed00;
  pointer-events: none;
  border-radius: inherit;
  transition: width 0.5s ease;
  z-index: -1;
}

.dropdown-menu-items a:hover::after {
	width: 100%;
}

li.seccion-menu a:hover {
	font-family: 'FF-Playfair-Bolditalic'!important;
  font-size: 16px !important;
  padding: 17px 10px;
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 2px;    
  text-underline-offset: 6px; 
}




@media screen and (max-width: 745px) {


	.marcado {color: #000!important; font-size: 34px!important;}

	.icono-buscar, .icono-home {width: 44px; padding: 4px 0px 0px 0px !important; margin-left: 0px!important;}
	.icono-buscar img, .icono-home img{
        width: 28px;
        height: 28px;
    }

	.icono-home:hover, .icono-buscar:hover  {
		content: "";
	}


	.dropdown-menu-logo {
		padding: 0px 45px !important;
	}

	.dropdown-menu-movil {
		width: 100%;
		z-index: 9999;
		position: fixed;
		background-color: #fff;
		-webkit-user-select: none;
		user-select: none;
		box-sizing: border-box;
		/* box-shadow: 0 0 10px 0 #0000009c; */
		position: relative;
		display: flex;
		justify-content: space-evenly;
		font-family: Lato-Regular, "Lato", sans-serif;
		height: 80px;
		align-items: center;
	}

	.dropdown-menu-movil-logo {
		line-height: 0;
		margin: 0 20px;
		box-sizing: border-box;
		float: left;
		margin: 0;
		padding: 0 80px;
	}

  .dropdown-menu-movil a.dropdown-menu-logo {
		text-align: left;
		margin-top: 4px;
		color: #fff;
	}

	.dropdown-menu-movil>ul {
		list-style-type: none;
		margin: 0;
		float: left;
	}

	/* Estilo de submenús */
	.dropdown-menu-movil>ul ul {
		display: none;
		position: relative;
		padding-left: 0;
	}

	.dropdown-menu-movil>ul>li {
		float: left;
		display: inline-block;
	}

	.dropdown-menu-movil a {
		display: block;
		padding: 25px 45px;
		box-sizing: border-box;
		text-decoration: none;
		color: #000000;
		font-size: 35px;
		text-align: center;
    text-align: right;
	}

	.dropdown-menu-movil>ul>li:active>ul {
		display: block;
		color: #d2ffda;
	}

	.dropdown-menu-movil label,
	.dropdown-menu-movil input {
		display: none;
	}

	.dropdown-menu-movil ul {
		display: none;
	}


	.dropdown-menu-movil>ul>li:has(ul)>a {
		position: relative;
	}

	.dropdown-menu-movil>ul>li:has(ul)>a::after {
		right: auto;
		left: 20px;
	}

	.dropdown-menu-movil label {
		display: block;
		float: right;
		text-align: center;
		width: 20px;
		padding: 12px 48px 12px 20px;
		opacity: 0.8;
	}

	.dropdown-menu-movil label svg {
		width: 30px;
		right: 20px !important;
		left: auto;
		height: 45px;
	}

	.dropdown-menu-movil input:checked~ul {
		display: inline-flex;
		top: 100%;
		position: absolute;
		width: 100%;
		height: 1000px;
		overflow-y: scroll;
		overflow-x: hidden;
		background: #ffed00;
		padding-top: 100px;
		justify-content: flex-start;
		flex-direction: column;
		align-items: center;
	}

	.dropdown-menu-movil input[type="checkbox"]:.dropdown-menu>ul ul li a {
		display: block;
	}

	  li.seccion-menu a:hover {
		font-family: 'FF-Poppins-Regular'!important;
	  font-size: 22px !important;
	  padding: 18px 45px!important;
	  text-decoration: none;
	}
	

	
	/*  *********** HAMBURGUESA ******************* */
	
	label span {
		display: block;
		width: 33px;
		height: 2px;
		margin-top: 7px;
		position: relative;
		background: #000;
		border-radius: 3px;
		z-index: 1;
		transform-origin: 4px 0px;
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
			background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
			opacity 0.55s ease;
		top: -3px;
	}

		.dropdown-menu-movil span:first-child {
			transform-origin: 0% 0%;
		}

		#dropdown-menu-movil:checked ~ label .barra-menu-3 {
			opacity: 0;
			transform: rotate(0deg) scale(0.2, 0.2);
		}

		#dropdown-menu-movil:checked ~ label .barra-menu-2 {
			transform: rotate(-45deg) translate(-8px, 4px);
		}

		#dropdown-menu-movil:checked ~ label .barra-menu-1 {
			transform: rotate(45deg) translate(-2px, -1px);
		}

}

/* flechas navegación */
@media screen and (max-width: 745px) {
nav#page-nav{
	display: none!important;
} 
}

@media screen and (min-width: 746px) {
	.grupo-flechas-navegacion{
		display: none!important;
	} 
	}


/* solucion al problema del overflow en movil */
@media screen and (max-width: 768px) {
	html, body {
	  overflow-x: hidden!important;
	  overflow-y: hidden!important;
	}

	.anythingSlider .anythingWindow{
		overflow: hidden;
	}
  }
  


  	/**************************************************/
  /*******************  5. LOADING *********************/
  /**************************************************/
  #preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	flex-direction: column;
  }
  
  .preloader-content {
	text-align: center;
  }
  
  .progress-bar {
	width: 300px;
	height: 8px;
	background: #ddd;
	margin-top: 20px;
	border-radius: 4px;
	overflow: hidden;
  }
  
  .progress {
	width: 0%;
	height: 100%;
	background: #ffed00;
	transition: width 0.2s ease;
  }
  
  #loading-percentage {
	margin-top: 10px;
	font-family: sans-serif;
	font-size: 14px;
	color: #333;
  }
  
  .fade-out {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
  }

  #menu-generado {
	opacity: 0;
	transition: opacity 1s ease-in-out; /* más suave */
  }
  
  body.preload-finalizado #menu-generado {
	opacity: 1;
  }
  
  
  

  	/**************************************************/
  /*******************  6. CENTRAR Y AJUSTAR VIDEO INTRODUCIDO CON IFRAME *********************/
  /**************************************************/
	.mejs-container {
		width: 100% !important;
		height: 100% !important;
	}
	
	.mejs-mediaelement video {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
		width: 100% !important;
		height: auto !important;
	}
	
	div video {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
	}

	.mejs-controls {
		display: none!important;
	}

	

