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

/* Botón flotante */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: pulse 1.8s infinite ease-in-out;
}

/* Animación suave */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Hover */
.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Imagen del logo */
.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caja de bienvenida */
.welcome-box {
    position: fixed;
    bottom: 92px;
    right: 20px;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    max-width: 270px;
    font-size: 15px;
    z-index: 9999;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: bubbleIn 0.6s ease;
}

/* Icono dentro del mensaje */
.welcome-icon {
    font-size: 24px;
}

.msn_bienvenida {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
}

/* Animación tipo burbuja */
@keyframes bubbleIn {
    0% { transform: scale(0.4); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}

/* Botón cerrar */
.close-welcome {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    border: none;
}


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


/* HEADER */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.logo {
    width: auto;
    height: auto;
}

.logo-yt {
    width: 180px;
    height: auto;
    border-radius: 10px;
}

/* NAV */
.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: .8s;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
}
.nav a:hover {
    text-decoration: underline;
    transition: .8s;
}

.btn-reservar {
  padding: 8px 16px;
  background: #fb4f14;
  border-radius: 10px;
}

/* HAMBURGER */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}


/* RESPONSIVE */
@media (max-width: 750px) {

  /* HAMBURGER visible */
  .hamburger {
      display: flex;
  }

  /* NAV hidden by default */
  .nav {
      position: absolute;
      top: 70px;
      right: 0;
      background: rgba(0,0,0,0.85);
      width: 200px;
      padding: 20px;
      border-radius: 10px;
      display: none;
  }

  .nav ul {
      flex-direction: column;
      gap: 20px;
  }

  /* Show menu when checkbox is active */
  #menu-toggle:checked ~ .nav {
      display: block;
  }

  /* HERO text smaller */
  .hero h2 {
      font-size: 36px;
  }

  .metrics {
      flex-direction: column;
      gap: 20px;
  }
}

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

.excursiones-title {
    width: 100%;
    height: 400px;
    text-align: center;
    
    background-image: url(../img/ss/isla-catalina.jpg);
    background-size: cover;
    background-position: center; 
    
    z-index: 100;
    position: relative;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.excursiones-title::after {
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgba(0,51,167,.7), rgba(0,188,212,.7));
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.excursiones-title h1 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 55px;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
    margin-bottom: 15px;
}

.excursiones-title p {
    font-size: 20px;
    color: #fff;
    font-family: 'Patrick Hand', cursive;
    text-shadow: 0 1px 1px #000;
}



/*--=======================--*/
/*--======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;
}
.box_area_1_txt {
    width: 400px;
    min-height: 300px;
}

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

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

.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;
    
    gap: 40px;
    padding: 60px 40px;
}
    /*--====--*/

.img_container {
    height: 300px;
    height: 350px;
    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;
    padding-top: 10px;
    font-weight: 400;
    text-decoration: underline;
}

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





/*--===============================--*/
/*--=======RECOMENDACIONES=========--*/
.tour-details {
  padding: 20px;
    margin-bottom: 20px;
  text-align: center;
}

.section-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 32px;
  margin-bottom: 25px;
  color: #003b46;
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.detail-card {
  background: #fff;
  width: 350px;
    height: auto;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.detail-card h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #0097a7;
}

.detail-card p {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    color: #444;
    text-align: left;
}

.detail-card ul {
  list-style: none;
  padding: 0;
}

.detail-card ul li {
    font-family: 'Patrick Hand', cursive;
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .detail-card {
    width: 90%;
  }
}


/*--===============================--*/
/*--===FIN RECOMENDACIONES=========--*/




/*--======================--*/
/*--==========Area 05=====--*/
.coontainer_area_5 {
    width: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    
    background-image: url(../img/ss/party-boat.jpeg);
    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/ss/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=====--*/


/*--======================--*/
/*--======----Area 06=====--*/
.reserva_container {
    width: 100%;
    min-height: 200px;
    margin: 80px 0;
    position: relative;
    
    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;
    max-height: 500px;
    overflow: auto;
  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;
}










