* {
    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;
}

.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: 1hotel-card fade-inpx;
    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,.88);

	display: grid;
	grid-template-columns: repeat(autofit, minmax(100px, 1fr));
	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%;
    min-height: 500px;
    
    background-image: url(../img/banner.jpg);
    background-position: top;
    background-size: cover;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    
    position: relative;
    z-index: 100;
}
.principal_container::after {
    content:"";
    position:absolute;
    background: rgba(0,0,0,.5);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}

.principal_title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    text-align: right;
    font-size: 40px;
    color: #fff;
    margin: 20px;
    text-shadow: 2px 2px 2px #000;
}

.container_txt_main {
    width: 300px;
    min-height: 400px;
    margin: 20px;
}

.principal_txt {
    font-family: 'Patrick Hand', cursive;
    text-align: justify;
    color: #fff;
    font-size: 18px;
    text-shadow: 1px 1px 1px #000;
    
}


/*--=FIN BANNER====--*/




/* PALETA YAKY TRAVEL */
:root {
  --azul: #003049;
  --turquesa: #00A6A6;
  --arena: #D4A259;
  --gris: #F4F4F4;
  --blanco: #FFFFFF;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--azul), #001a2d);
  color: var(--blanco);
  padding: 4rem 0;
}

.hero-inner {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}

.hero-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-shadow: 1px 1px 1px #000;
    font-size: 2.6rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 1rem 0 2rem;
    max-width: 400px;
}

.btn-primary {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    background: var(--arena);
    color: var(--azul);
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-secondary {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    background: transparent;
    border: 2px solid var(--blanco);
    color: var(--blanco);
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    cursor: pointer;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 12px;
}

.hero-card-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.hero-card p {
    font-family: 'Patrick Hand', cursive;
    font-size: .9rem;
    letter-spacing: 1px;
}

.hero-pill {
    font-family: 'Patrick Hand', cursive;
    font-size: .8rem;
    letter-spacing: 1px;
  display: inline-block;
  background: rgba(0,0,0,0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin: 0.2rem;
}

/* SECCIONES */
.section {
  padding: 3rem 0;
}

.section-inner {
  width: 90%;
  margin: auto;
}

.section-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
  font-size: 1.8rem;
  color: var(--azul);
  margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: 'Patrick Hand', cursive;
  margin-bottom: 2rem;
  color: #555;
}

/* CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--blanco);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-header {
  height: 120px;
  background: var(--turquesa);
  border-radius: 8px;
  margin-bottom: 1rem;
    background-image: url(../img/banner.jpg);
    background-position: bottom;
    background-size: cover;
}
.veron {
    background-image: url(../img/r_veron.jpg);
    background-position: center;
    background-size: cover;
}
.bavaro {
    background-image: url(../img/r_bavaro.jpg);
    background-position: center;
    background-size: cover;
}

.card-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 1.5rem;
}
.card-text {
    font-family: 'Patrick Hand', cursive;
    padding: 5px;
    margin-bottom: 5px;
}


.card-btn {
  background: var(--azul);
  color: var(--blanco);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1.2rem;
    padding: 5px;
}

/* CHECKLIST */
/* ENVOLTORIO GENERAL */
.carousel-wrapper {
  position: relative;
  width: 100%;
}

/* FLECHAS LATERALES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003366;
  color: #fff;
  border: none;
  font-size: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background .25s ease, transform .25s ease;
}

.carousel-btn:hover {
  background: #0099cc;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.left {
  left: -10px;
}

.carousel-btn.right {
  right: -10px;
}

/* CARRUSEL */
.carousel-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  padding-bottom: 10px;
}

.carousel-track {
  display: flex;
  gap: 20px;
}

/* TARJETAS */
.hotel-card {
  min-width: 250px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 2px solid #0099cc40;
  box-shadow: 0 4px 14px rgba(0, 51, 102, 0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}



.hotel-card:hover::before {
  opacity: 1;
  animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HOVER GENERAL */
hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.18);
}

/* IMAGEN + ZOOM + BRILLO */
.image-wrapper {
  overflow: hidden;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}

.hotel-card:hover .image-wrapper img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

/* INFO */
.hotel-info {
  padding: 15px;
  position: relative;
  z-index: 3;
}

.hotel-info h4 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #003366;
}

.price {
    font-family: 'Yanone Kaffeesatz', sans-serif;
  font-weight: 700;
  color: #1EBE5A;
  margin-bottom: 6px;
}

.dates {
    font-family: 'Patrick Hand', cursive;
  font-size: 0.9rem;
  color: #0099cc;
}

/* ANIMACIÓN AL CARGAR */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp .8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SCROLLBAR */
.carousel-container::-webkit-scrollbar {
  height: 6px;
}

.carousel-container::-webkit-scrollbar-thumb {
  background: #0099cc;
  border-radius: 10px;
}


/* 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;
}


.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: all .25s ease;
}

.btn-whatsapp:hover {
  background: #1EBE5A;
}


































