* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.cabecera {
	background-color: rgb(255,255,255);
	display: grid;
	grid-template-columns: repeat(autofit, minmax(100px, 1fr));
	grid-template-rows: repeat(autofit, minmax(100px, 1fr));
	grid-template-areas: 
		"head-1 head-2";
}

.head-1 {
	grid-area: head-1;
	height: auto;
}

.head-2 {
	grid-area: head-2;
	height: auto;
    margin: 6px;

	display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/*---- ESTILOS ----*/
.cabecera .head-1 .logo {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin-left: 20px;
}

.cabecera .head-1 .logo img {
	width: 300px;
	height: 100%;
	border-radius: 2px;
}

.cabecera .head-2 .emergencias {
	display: flex;
	justify-content: space-between;
}

.cabecera .head-2 .emergencias .fa-headset {
	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 40px;
	margin: 12px 15px 12px 0;
	color: #050829;
	transition: .6s;
}

.cabecera .head-2 .emergencias .asistencias a {
	color: #050829;
	font-size: 14px;
    transition: .8s ease;
    font-family: 'Patrick Hand', cursive;
}

.cabecera .head-2 .emergencias .asistencias  a:hover {
    color: #fb4f14;
    background-color: #fff;
    transition: .8s ease;
    border-radius: 2px;
    text-decoration: underline;
}

.cabecera .head-2 .acceso,
.cabecera .head-2 .bandera,
.cabecera .head-2 .membresia {
	margin-right: 15px;
}

.head-2 .acceso .blog {
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-2 .acceso .blog img {
    width: 38px;
}
.head-2 .acceso .blog a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.head-2 .acceso .blog a:hover {
    text-decoration: underline;
}
    /*----bandera------*/
.cabecera .head-2 .bandera {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera .head-2 .bandera img {
    width: 40px;
    height: auto;
}
.cabecera .head-2 .bandera a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.cabecera .head-2 .bandera a:hover {
    text-decoration: underline;
}

    /*----MEMBRESIA------*/
.cabecera .head-2 .membresia {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera .head-2 .membresia img {
    width: 25px;
}
.cabecera .head-2 .membresia a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.cabecera .head-2 .membresia a:hover {
    text-decoration: underline;
}


.cabecera .head-2 .ico {
    padding: 10px;
    color: #050829;
    transition: .8s ease;
    border-radius: 4px;
}
.cabecera .head-2 .ico:hover {
    color: #fb4f14;
    background-color: #fff;
    transition: .8s ease;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (max-width: 650px){
    .cabecera {
        grid-template-areas: 
        	"head-1 head-1"
        	"head-2 head-2";
    }

    .cabecera .head-1 .logo {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		margin-left: 0;
		margin: 0 5px;
	}

	.cabecera .head-1 .logo img {
		width: 100%;
		height: 100%;
		margin: 2px; 	
	}

	.cabecera .head-2 {
		display: flex;
		justify-content: space-around;
		margin: 5px;
		margin-right: 65px;
	}
      
}

@media screen and (max-width: 410px){
	.cabecera .head-2 {
		flex-wrap: nowrap;
	}
    .head-2 .acceso .blog a,
    .cabecera .head-2 .bandera a,
    .cabecera .head-2 .membresia a {
       font-size: 14px; 
    }
      
}
/*------ FIN HEADER ---- ---- ---- ----*/

/*---- ----- --- NAV ---- ---- ---- ---*/
.menu-boton {
	display: none;
}
.sidenav a {
	display: none;
}

.navegador {
	background-color: rgb(5,26,58);
	display: grid;
	grid-template-columns: auto-fit;
	grid-template-rows: repeat(autofit, minmax(100px, 1fr));
	grid-template-areas:
		"home navegacion";
}

.navegador .home {
	grid-area: home;
	height: 50px;
}

.navegador .navegacion {
	grid-area: navegacion;
	height: 50px;
}

.navegador .home {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;  
    
    margin-left: 40px;
}
.navegador .home a {
	color: #fff;
	padding: 10px;
	font-size: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    transition: .6s ease;
}

.navegador .home a:hover {
    color: #051A3A;
    background-color: #fff;
    transition: .5s ease;
    border-radius: 2px;
    text-decoration: underline;
}

.navegador .navegacion {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.navegador .navegacion a {
	color: #fff;
	padding: 12px 10px;
	font-size: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    transition: .5s ease;
}
.navegador .navegacion a:hover {
	color: #051A3A;
    background-color: #fff;
    transition: .5s ease;
    border-radius: 2px;
    text-decoration: underline;
}

@media screen and (max-width: 650px){
	.navegador {
		display: none;
	}
    .menu-boton {
        display: inline-block;
        position: absolute;
        right: 0;
        padding: 8px;
        margin-right: 2px;
        margin-top: -40px;
        font-size: 20px;
        background-color: rgb(5,26,58,.88);
        color: #fff;
        font-family: 'Yanone Kaffeesatz', sans-serif;
        border-radius: 2px;
    }
.sidenav {
    width: 0;
    position: fixed;
    z-index: 1000;  
    top: 100px;
    right: 0;
    padding: 10px 0;
    background-color: #4091ec;
    overflow-x: hidden;
    transition: 0.7s;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
	}

.sidenav a {
    padding-left: 20px;
    font-size: 22px;
   	padding: 5px;
    color: #fff;
    display: block;
    transition: 0.3s;
	}

.sidenav a:hover {
    color: rgb(5,26,58);
    transition: .6s;
	}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 36px;
	}
}
/*---- ---- ---- ---- FIN DEL NAV ---- ---- ----*/

/*---=========Banner===========---*/
/*---==========================---*/
.principal_container {
    width: 100%;
    height: 700px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background-image: url(../img/semisubmarino.jpg);
    background-size: cover;
    background-position: center;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_title {
    font-family: 'Alumni Sans';
    font-size: 80px;
    text-align: center;
    color: #ffdf00;
    text-shadow: 8px 8px 8px #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    filter: drop-shadow(10px 10px 5px #000);
    backdrop-filter: blur(1px);
}

@media screen and (max-width: 700px){
	.main_title {
		font-size: 50px;
	}
}

@media screen and (max-width: 400px){
	.main_title {
		font-size: 30px;
	}
}

/*---==========================---*/
/*---=======FIN Banner=========---*/


/*--=======================--*/
/*--======Area 01==========--*/
.container_area_1 {
    width: 100%;
    height: auto;
    padding: 20px;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.box-area_1 {
    width: 400px;
    min-height: 500px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.box_area_1_txt {
    width: 400px;
    min-height: 300px;
}

.img_area_1_a {
    width: 250px;
    height: 400px;
    
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    
    object-fit: cover;
    object-position: center;
}

.img_area_1_d {
    width:250px;
    height:400px;
    
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    
    object-fit: cover;
    object-position: center;
}

.img_area_1_d,
.img_area_1_a {
    border-radius: 8px;
    box-shadow: 2px 1px 4px #ccc;
}

    /*--====--*/

.title_area_1 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 30px;
    text-align: center;
    color: #000;
}

.sub_title_area_1 {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.title_2 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 24px;
    text-align: left;
    color: #000;
    font-weight: 200;
    padding: 10px;
}

.txt_area_1 {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
    color: #000;
    text-align: left;
    padding: 10px;
}

    /*--===--*/

@media screen and (max-width: 460px){
    .img_area_1_a {
        width:200px;
        height:350px;
    }
    
    .img_area_1_d {
        width:200px;
        height:350px;
    }
    
    .title_2 {
        padding: 0;
    }

    .txt_area_1 {
        padding: 0;
    }
}

/*--======================--*/
/*--======Fin Area 01=====--*/





/*--======================--*/
/*--==========Area 03=====--*/
.container_area_3 {
    width: 100%;
    height: auto;
    padding: 20px;
    margin-top: -30px;
    margin-bottom: 100px;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.img_container {
    height: 300px;
    height: 350px;
    margin: 10px;
    overflow: hidden;
    
    position: relative;
    
    border-radius: 12px;
    box-shadow: 2px 1px 4px #0e246d;
}

.img_img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


    /*--====--*/

.info_area_3 {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    
    z-index: 1;
}
.info_area_3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(39,211,245,.8);
    z-index: -1;
}

.title_area_3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    text-align: center;
    color: #000;
    font-weight: 400;
    text-decoration: underline;
}

.txt_area_3 {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
    color: #000;
    text-align: left;
    padding: 5px;
    letter-spacing: 1px;
}
/*--======================--*/
/*--======Fin Area 03=====--*/


/*--======================--*/
/*--==========Area 04=====--*/
.Container_area_4 {
    width: 90%;
    min-height: 100px;
    margin: 0 auto;
    background-color: #0e2463;
    position: relative;
    z-index: 100;
}

.title_area_4 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 26px;
    text-align: left;
    color: #fff;
    font-weight: 400;
    padding: 10px;
}

.txt_area_4 {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
    color: #fff;
    text-align: left;
    padding: 10px;
    
}

/*--======================--*/
/*--======Fin Area 04=====--*/


/*--======================--*/
/*--==========Area 05=====--*/
.coontainer_area_5 {
    width: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    top: -80px;
    
    background-image: url(../img/back.jpg);
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(43,43,68,.4);
    
     z-index: 1;
}
.coontainer_area_5::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(43,43,68,.8);
    z-index: -1;
}


.title_area_5 {
    margin-top: 96px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 32px;
    text-align: center;
    color: #fff;
    text-shadow: -3px 4px 2px #000;
    font-weight: 400;
    text-decoration: underline;
    padding: 10px;
}

.container_box_area_5 {
    width: 100%;
    height: auto;
    padding: 20px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.box_area_5 {
    width: 340px;
    min-height: 300px;
    margin: 10px;
    position: relative;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box_img_area_5 {
    position: absolute;
    top: -14px;
    
    background-image: url(../img/4playas/ninos.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    
    width: 250px;
    height: 170px;
}
.doble {
    position: absolute;
    top: -14px;
    width: 150px;
    height: 150px;
    background-image: url(../img/4playas/adultos.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}



.nombre_precio {
    margin-top: 96px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 32px;
    text-align: center;
    color: #fff;
    text-shadow: -3px 4px 2px #000;
    font-weight: 400;
    border-top: 2px solid #fff;
}

.numero_precio {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 80px;
    text-align: left;
    color: yellow;
    text-shadow: -2px 2px 2px #000;
    font-weight: 400;
}

.numero_precio span{
    text-decoration: line-through;
    font-size: 28px;
    color: #fff;
}

    /*--====--*/

.familiar_precio {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 40px;
    text-align: left;
    color: yellow;
    text-shadow: -2px 2px 2px #000;
    font-weight: 400;
}

.familiar_precio .categoria_familiar {
    text-decoration: none;
    font-size: 28px;
    color: #fff;
}


/*--======================--*/
/*--======Fin Area 05=====--*/

.price_container {
    position: absolute;
    top: 5px;
    left: 5px;
}

.txt_price {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 60px;
    padding: 2px 10px;
    text-align: center;
    color: #faff00;
    text-shadow: 2px 4px 2px #000;
    font-weight: 400;
    border-radius: 10px;
    box-shadow: 1px 1px 4px #fb4f14;
    backdrop-filter: blur(8px);
}


/*--======================--*/
/*--======----Area 06=====--*/
.reserva_container {
    width: 100%;
    min-height: 200px;
    position: relative;
    top: -80px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title_reservar {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 90px;
    color: #fb4f14;
    text-align: center;
    padding: 10px;
    text-shadow: -2px 2px 2px #000;
}
.title_reservar span {
    font-size: 120px;
    color: #fa0d1c;
}

.whatapp_reserva,
.mail_reserva {
    width: 150px;
    height: 50px;
    margin: 10px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #0e246d;
    
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatapp_reserva {
    background-color: rgb(37,211,102);
    transition: .6s;
}
.whatapp_reserva:hover {
    background-color: #126963;
    transition: .6s;
}

.mail_reserva {
    background-color: #db4a39;
    transition: .6s;
}
.mail_reserva:hover {
    background-color: #6D251C;
    transition: .6s;
}

.whatapp_reserva a,
.mail_reserva a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 30px;
    color: #fff;
    padding: 10px;
}




/*--======================--*/
/*--======Fin Area 06=====--*/





/* FOOTER YAKY TRAVEL - LUXURY PREMIUM */
.yt-footer {
  background: #000000;
  color: #e6e6e6;
  padding: 60px 20px 30px;
  font-family: "Poppins", system-ui, sans-serif;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

/* Línea dorada superior ultra fina */
.yt-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0.7;
}

.yt-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.yt-footer-logo {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
  color: #ffffff;
    text-align: center;
  font-weight: 600;
}

.yt-footer-text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(230, 230, 230, 0.75);
  line-height: 1.6;
    font-family: 'Patrick Hand', cursive;
}

.yt-footer-column a {
  font-size: 1.2rem;
  color: rgba(230, 230, 230, 0.7);
    font-family: 'Yanone Kaffeesatz', sans-serif;
  text-decoration: underline;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.yt-footer-column a:hover {
  color: #d4af37;
  transform: translateX(4px);
}

.yt-footer-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-align: center;
  color: #d4af37;
  font-weight: 500;
}

.yt-footer-list {
    color: rgba(230, 230, 230, 0.7);
    font-family: 'Patrick Hand', cursive;
  list-style: none;
  padding: 0;
  margin: 0;
}

.yt-footer-list li {
  margin-bottom: 8px;
}

.yt-footer-list a {
  font-size: 0.92rem;
  color: rgba(230, 230, 230, 0.7);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.yt-footer-list a:hover {
  color: #d4af37;
  transform: translateX(4px);
}

.yt-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
}

.yt-footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(230, 230, 230, 0.6);
  letter-spacing: 0.05em;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

/* Responsive */
@media (max-width: 900px) {
  .yt-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .yt-footer-container {
    grid-template-columns: 1fr;
  }
}


/*--===Modal Nosotros===--*/
/* Fondo difuminado */
.yt-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

/* Caja del modal */
.yt-modal-content {
  background: #ffffff;
  margin: 8% auto;
  padding: 35px;
  width: 92%;
  max-width: 520px;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 140, 0.4); /* dorado suave */
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  animation: ytFadeIn 0.35s ease;
  font-family: 'Poppins', sans-serif;
}

/* Título */
.yt-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #d4a048; /* dorado Yaky Travel */
  margin-bottom: 12px;
}

/* Texto */
.yt-text {
    font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
.politicas_txt {
    font-size: 12px;
}

/* Botón cerrar */
.yt-close {
  float: right;
  font-size: 32px;
  cursor: pointer;
  color: #666;
  transition: 0.2s;
}

.yt-close:hover {
  color: #d4a048;
}

/* Animación */
@keyframes ytFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Estilo del enlace del footer */
.footer-link {
  color: #d4a048;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.footer-link:hover {
  color: #b8863b;
}




    /*background-color: #001a2d;*/
    /*background-color: #fb4f44;*/
    /*background-color: #0e246d;*/
    /*background-color: #27D3F5;*/
    /*background-color: #050829;*/
    /*background-color: #2a89a0;*/
    /*background-color: #020716;*/