/*
Theme Name: Ashe Child
Template: ashe
*/

html{
  scroll-behavior: smooth;
}

#page-footer .credit {
    display: none;
}

@media (max-width: 480px) {
    #footer-menu > li {
        margin-right: 4px;
    }
    
    #footer-menu > li:last-child {
        margin-right: 0px;
    }
    
    .footer-menu-container:after {
        content: '';
    }
}


/* HEADER base */
.vx-header{
  position: sticky;
  top: 0;
  z-index: 99999;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.vx-header-inner{
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 5px;
  padding-bottom: 4px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.page-id-1184 .vx-header-inner{
  max-width: 1160px;
}

.vx-logo img{
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Menú desktop */
.vx-header-nav{ min-width: 0; }

/* Asegura que solo el UL principal sea flex */
/* ===== Desktop: que SOLO el UL raíz sea flex ===== */
.vx-header-nav > ul{
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

/* Cada item posicionable */
.vx-header-nav li{
  position: relative;
}

.vx-header-nav a{
  text-decoration: none;
  font-weight: 600;
  color: #111;
  padding: 8px 10px;
  /*border-radius: 10px;*/
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.1;
}

/*.vx-header-nav a:hover{
  background: #f5f5f5;
}*/

/* ===== Submenús (desktop) ===== */
.vx-header-nav .sub-menu{
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;

  background: #fff;
  border: 1px solid #eee;
  /*border-radius: 14px;*/
  box-shadow: 0 14px 30px rgba(0,0,0,.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 9999;
}

.vx-header-nav .sub-menu li:not(:last-child){
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.vx-header-nav .sub-menu li:not(:first-child):not(:last-child){
  padding-top:5px;
  padding-bottom: 5px;
}

.vx-header-nav .sub-menu li:last-child:not(:first-child){
  padding-top:5px;
}

/* Links del submenú */
.vx-header-nav .sub-menu a{
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 14px;
}

/* =========================
   SUBMENÚ NIVEL 2 (desktop)
   el submenú del submenú sale a la DERECHA
   ========================= */

/* El LI del submenú debe ser “ancla” para el nivel 2 */
.vx-header-nav .sub-menu li{
  position: relative;
}

/* Nivel 2 (sub-menu dentro de sub-menu) */
.vx-header-nav .sub-menu .sub-menu{
  left: calc(100% + 8px); /* a la derecha */
  right: auto;
  margin-top: 0;
}

.vx-header-nav .sub-menu li:first-child .sub-menu{
  top: -9px;                 /* alineado con el item padre */
}

.vx-header-nav .sub-menu li:not(:first-child) .sub-menu{
  top: -1px;                 /* alineado con el item padre */
}

/* Si quieres un pelín de “separación” visual, opcional */
.vx-header-nav .sub-menu{
  padding: 8px;
}

/* =========================
   Evitar que el nivel 2 se salga de pantalla:
   si el submenu padre está alineado a la derecha (los últimos items),
   el nivel 2 que salga hacia la IZQUIERDA.
   ========================= */

/* Cuando el submenu de primer nivel está pegado a la derecha... */
.vx-header-nav > ul > li:last-child > .sub-menu .sub-menu,
.vx-header-nav > ul > li:nth-last-child(2) > .sub-menu .sub-menu{
  left: auto;
  right: calc(100% + 8px); /* hacia la izquierda */
}

/* (Opcional) flechita para items con hijos dentro del submenú */
.vx-header-nav .sub-menu li.menu-item-has-children > a::after{
  content: "›";
  float: right;
  opacity: .55;
  transform: rotate(0deg); /* ya apunta “a la derecha” */
}


/* Mostrar al hover / teclado */
.vx-header-nav li.menu-item-has-children:hover > .sub-menu,
.vx-header-nav li.menu-item-has-children:focus-within > .sub-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Indicador flecha */
.vx-header-nav li.menu-item-has-children > a::after{
  content: "›";
  display: inline-block;
  margin-left: 8px;
  transform: rotate(90deg);
  opacity: .55;
  font-size: 16px;
}

/* Focus visible */
.vx-header-nav a:focus{
  outline: 2px solid rgba(242,193,78,.7);
  outline-offset: 2px;
}

.vx-header-nav > ul > li:last-child > .sub-menu,
.vx-header-nav > ul > li:nth-last-child(2) > .sub-menu{
  left: auto;
  right: 0;
}


/* ===== Móvil: submenús accordion ===== */
.vx-mobile .sub-menu{
  display: none;
  margin: 6px 0 0;
  padding-left: 10px;
  border-left: 2px solid #eee;
}

.vx-mobile li.is-open > .sub-menu{
  display: block;
}

.vx-sub-toggle{
  float: right;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vx-sub-toggle i{
  transition: transform .2s ease;
  opacity: .7;
}

.vx-mobile li.is-open > .vx-sub-toggle i{
  transform: rotate(180deg);
}

.vx-sub-toggle{
  margin-left: 8px;
}

.vx-mobile li.menu-item-has-children > a{
  display: inline-block;
  width: calc(100% - 50px);
}



/* Botón burger: texto + icono juntos */
.vx-burger{
  display: none; /* se enciende en móvil */
  height: 52px;
  padding: 0px;
  border: none;
  background: #f8f8f8;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;            /* separación MENÚ - icono */
  white-space: nowrap;
}

.vx-burger-text{
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  color: #111;
}

.vx-burger i{
  font-size: 25px;
  line-height: 1;
}

/* Toggle bars/xmark */
.vx-burger .fa-xmark{ display:none; }
.vx-burger[aria-expanded="true"] .fa-bars{ display:none; }
.vx-burger[aria-expanded="true"] .fa-xmark{ display:inline-block; }

/* Menú móvil animado (por defecto cerrado) */
.vx-mobile{
  display: block;              /* necesario para animar */
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease;
  border-top: 1px solid #eee;
  background: #fff;
}

.vx-mobile.is-open{
  max-height: 70vh;
  opacity: 1;
  transform: translateY(0);
}

.vx-mobile ul{
  list-style: none;
  margin: 0;
  padding: 10px 16px 16px;
}

.vx-mobile li{ margin: 6px 0; }

.vx-mobile a{
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.vx-mobile a:hover{ background: #f5f5f5; }

/* Responsive: logo centrado y burger a la derecha */
@media (max-width: 900px){
  .vx-header-inner{
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* centro real */
    align-items: center;
    position: relative;
  }

  /* Logo SIEMPRE centrado */
  .vx-header-logo{
    grid-column: 2;
    justify-self: center;
  }

  /* Botón SIEMPRE a la derecha */
  .vx-burger{
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
  }

  /* Menú desktop fuera */
  .vx-header-nav{ display:none; }
}


/* ===== Enlace activo (estado actual) ===== */
.vx-header-nav li.current-menu-item > a,
.vx-header-nav li.current-menu-parent > a,
.vx-header-nav li.current-menu-ancestor > a,
.vx-header-nav li.current_page_item > a{
  color: #ca9b52;              /* amarillo */
}

/* ===== Móvil ===== */
.vx-mobile li.current-menu-item > a,
.vx-mobile li.current-menu-parent > a,
.vx-mobile li.current-menu-ancestor > a{
  color: #ca9b52;
}

.vx-header-nav .sub-menu li.current-menu-item > a{
  color: #ca9b52;
  font-weight: 700;
}




.post-content a {
	color: #0693e3;
}

.post-content a:not(.header-logo-a):hover {
	color: #ca9b52;
}



.page-id-1184 .vx-header-inner {
  padding-left: 0px;
  padding-right: 0px;
}

.page-id-1184 .main-content {
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 25px;
}

.page-id-1583 .main-content.boxed-wrapper, .page-id-1843 .main-content.boxed-wrapper, .page-id-2147 .main-content.boxed-wrapper {
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 0px;
	max-width: none;
}

@media screen and (max-width: 480px) {
    .page-id-1583 .main-content, .page-id-1843 .main-content, .page-id-2147 .main-content {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

.page-id-1184 .sidebar-right-wrap, .page-id-1583 .sidebar-right-wrap, .page-id-1843 .sidebar-right-wrap, .page-id-2147 .sidebar-right-wrap {
	display: none;
}

.page-id-1184 .main-container, .page-id-1583 .main-container, .page-id-1843 .main-container, .page-id-2147 .main-container {
    width: 100%;
	padding-right: 0px;
	padding-left: 0px;
}

.page-id-1184 .main-container .post-header, .page-id-1583 .main-container .post-header, .page-id-1843 .main-container .post-header, .page-id-2147 .main-container .post-header {
    display: none;
}

.page-id-1184 .wpcf7, .page-id-1583 .wpcf7 {
    margin-top: 30px;
}

.page-id-1184 .wpcf7 textarea, .page-id-1583 .wpcf7 textarea, .page-id-2147 .wpcf7 textarea {
    height: 120px;
}

.page-id-1843 .wpcf7 {
    margin-top: 15px;
}

.page-id-1843 .wpcf7 p {
    margin-bottom: 18px;
}

.page-id-1843 .wpcf7 textarea {
    height: 100px;
}

/*HERO*/
/*.vx-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px;
}*/

.page-id-1843 .post-media, .page-id-2147 .post-media {
  display: none !important;
}

.vx-hero {
	/*padding: 28px 22px;*/
	border-radius: 18px;
	background: linear-gradient(135deg, #0b1220, #111c34);
	color: #fff
}

.page-id-1184 .vx-hero h1 {
	margin: 0 0 20px;
	font-size: 34px;
	line-height: 1.15;
	color: wheat;
}

.vx-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 14px 0 18px
}

.vx-badge {
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .18);
	padding: 8px 10px;
	border-radius: 999px;
	font-size: 13px
}

.vx-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px
}

.vx-btn {
	display: inline-block;
	padding: 12px 16px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700
}

.vx-btn.primary {
	background: #f2c14e;
	color: #111
}

.vx-btn.ghost {
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff
}

.vx-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 18px;
	margin-top: 18px
}

.vx-card {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	padding: 18px;
}

.vx-card.divJustificacion p {
	text-align: justify;
}

.vx-card h2,
.vx-card h3 {
	margin: 0 0 10px
}

.vx-kv {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 10px
}

.vx-kv div {
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 12px
}

.vx-kv b.titulo {
	display: block;
	font-size: 12px;
	opacity: .7;
	margin-bottom: 4px
}

/* vx-kv en 2 columnas (si en tu CSS original estaba a 2, esto lo refuerza) */
.vx-kv-2{
  grid-template-columns: 1fr 1fr;
}

/* Sección 2 columnas con imagen + texto */
.vx-features{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.vx-feature{
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 14px;
}

.vx-feature-img img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #eee;
  margin-bottom: 10px;
}

.vx-feature h3{
  margin: 6px 0 8px;
	font-size: 28px;
}

.vx-feature p{
  margin: 0;
}

/* Responsive */
@media (max-width: 900px){
  .vx-features{
    grid-template-columns: 1fr;
  }
  .vx-feature-img img{
    height: 240px;
  }
}

.vx-note {
	font-size: 13px;
	opacity: .85;
	margin-top: 8px
}

.vx-section {
	margin-top: 18px
}

.vx-list {
	margin: 0;
	padding-left: 18px
}

.vx-list li {
	margin: 6px 0
}

.vx-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
		margin-top: 20px;
}

.vx-price {
	font-size: 28px;
	font-weight: 900;
	margin: 6px 0
}

.vx-mini {
	font-size: 13px;
	color: #555
}

.vx-sticky {
	position: sticky;
	top: 14px
}

@media(max-width:900px) {
	.vx-grid {
		grid-template-columns: 1fr
	}
}

/* HERO con imagen a la izquierda */
.vx-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: center;
}

.vx-hero-image {
  height: 460px;
}

.vx-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.vx-hero-content {
  padding-top: 28px;
	padding-bottom: 28px;
	padding-right: 22px;
}

.vx-hero-content h1 {
  margin-top: 0;
}

.vx-hero-subtitle {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 14px;
}

/* Precio destacado */
.vx-hero-price {
  margin: 18px 0;
}

.vx-price-amount {
  font-size: 32px;
  font-weight: 900;
  display: block;
}

.vx-price-note {
  font-size: 14px;
  opacity: 0.8;
}


/* Acordeón más elegante */
.vx-accordion p {
	margin: 10px 0 0
}

.vx-accordion details{
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 16px 16px;
  background: #fff;
  margin: 12px 0;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.vx-accordion details[open]{
  border-color: #d9d9d9;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.vx-accordion summary{
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vx-accordion summary::-webkit-details-marker{ display: none; }

/* “Flecha” sin emojis */
.vx-accordion summary::after{
  content: "›";
  margin-left: auto;
  font-size: 26px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .2s ease;
  opacity: .65;
}

.vx-accordion details[open] summary::after{
  transform: rotate(90deg);
}

/* Contenido interno con imagen */
.vx-day{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e6e6e6;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: start;
}

.vx-day-text {
  text-align: justify;
}

.vx-day p{ margin: 0 0 10px; }

.vx-day p.paseoEnGlobo {
	font-style: italic;
}

.vx-day ul{ margin: 0; padding-left: 18px; }
.vx-day li{ margin: 6px 0; }

.vx-day-img img{
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #eee;
}

.vx-day-tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 12px;
  opacity: .9;
}

@media (max-width: 900px){
  .vx-day{ grid-template-columns: 1fr; }
  .vx-day-img img{ max-height: 260px; }
}


/* Responsive */
@media (max-width: 1250px) {
    .page-id-1184 .vx-header-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    
	.page-id-1184 .main-content {
        padding-right: 40px;
        padding-left: 40px;
    }
	
  .vx-wrap {
		max-width: 1160px;
		margin: 0 auto;
	}
}

@media (max-width: 1250px) and (min-width: 901px) {
	.vx-hero-image {
		height: 570px;
  }
}

@media (max-width: 900px) {
    .vx-hero-inner {
        grid-template-columns: 1fr;
    }
    
    .vx-hero-image {
        order: -1;
        height: 400px;
    }
    
    .vx-hero-image img {
        border-bottom-left-radius: 0;
        border-top-right-radius: 16px;
    }
	
	.vx-hero-content {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 22px;
	}
}

/*24/02/2026: He cambiado esto, descomentar si he tocado algo que no debía*/
@media (max-width: 480px) {
    /*.page-id-1184 .vx-header-inner, .vx-header-inner {*/
	.page-id-1184 .vx-header-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 900px) {
	.page-id-1583 .vx-header-inner, .page-id-1843 .vx-header-inner, .page-id-2147 .vx-header-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 440px) {
    .vx-hero-image {
		height: 360px;
    }
	
    .vx-wrap {
    	padding: 0px;
    }
}


/*HORARIO DE LOS VUELOS*/
.divVuelosPrevistosWrapper {
    margin-top: 25px;
    display: none;
}

.divVuelosPrevistosWrapper .divTituloVuelosPrevistos {
    font-weight: bold;
}

.divVuelosPrevistosWrapper .divVuelosPrevistos {
    margin-top: 20px;
}

.divVuelosPrevistos .divImagenAerolinea {
    width: 80px;
    display: inline-block;
    vertical-align: middle;
}

.divVuelosPrevistos .divImagenAerolinea img {
    width: 100%;
}

.divVuelosPrevistos .divInfoVuelosPrevistos {
    margin-left: 20px;
    display: inline-block;
    width: calc(100% - 104px);
}

.divVuelosPrevistos .divInfoVuelosPrevistos .divFechaVuelos {
    display: inline-block;
    vertical-align: middle;
}

.divVuelosPrevistos .divInfoVuelosPrevistos .divFechaVuelos div:first-child {
    line-height: 16px;
    font-weight: bold;
}

.divVuelosPrevistos .divInfoVuelosPrevistos .divFechaVuelos div:last-child {
    font-style: italic;
}

.divVuelosPrevistos .divInfoVuelosPrevistos .divHorasVuelos {
    display: inline-block;
    margin-left: 20px;
}

.divVuelosPrevistos .divInfoVuelosPrevistos .divHorasVuelos > div {
    display: inline-block;
    vertical-align: middle;
}

.divInfoVuelosPrevistos .divHorasVuelos .divSalidaVuelo {
    text-align: right;
}

.divInfoVuelosPrevistos .divHorasVuelos .divSalidaVuelo div:first-child {
    font-weight: bold;
}

.divInfoVuelosPrevistos .divHorasVuelos .divLineaVuelos {
    height: 2px;
    width: 110px;
    background-color: #999;
    margin-left: 10px;
    border-radius: 30px;
}

.divInfoVuelosPrevistos .divHorasVuelos .divLogoAvion {
    height: 25px;
    margin-right: 10px;
}

.divInfoVuelosPrevistos .divHorasVuelos .divLogoAvion img {
    height: 100%;
}

.divInfoVuelosPrevistos .divHorasVuelos .divLlegadaVuelo div:first-child {
    font-weight: bold;
}

@media (max-width: 715px) {
    .divVuelosPrevistosWrapper {
        display: none;
    }
}