<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Variables */
:root {
    --website-width: 1200px;
    --font-color: #012c41;
    --link-color: #343d3d;
    --bg-color: #e9e2b6;
    --bg-color-shade: #f2eed3;
    --blue-color: #012c41;
    --red-color: #b62225;
    --orange-color: #fa7f00;
  }
  
  /* General Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: #fff;
    color: var(--font-color);
    width: 100%;
    overflow-x: hidden;
    background-image: url("../images/bg.png");
  }
  
  p {
    padding: 0 0;
  }
  
  a {
    text-decoration: none;
    color: var(--link-color);
  }
  
  a:hover {
    text-decoration: underline;
    color: var(--blue-color);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    width: 100%;
  }
  
  /* Utilities */
  .container {
    max-width: var(--website-width);
    padding: 0 1.5rem;
    margin: auto;
  }
  
  .btn {
    display: inline-block;
    transition: all 0.5s;
    border: none;
    cursor: pointer;
    font-size: 22px;
    background: var(--red-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    margin: 0 auto !important;
  }
  
  .btn:hover {
    background: var(--blue-color);
    text-decoration: none;
  }

  .btn-rojo {
    display: inline-block;
    transition: all 0.5s;
    border: none;
    cursor: pointer;
    font-size: 22px;
    background: var(--red-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 25px;
    text-transform: uppercase;
  } 

  .btn-rojo:hover {
    background: var(--blue-color);
    text-decoration: none;
    color: #fff;
  }

  .btn-rojo:visited {
    color: #fff;
  }
  
  .btn-gray {
    font-size: 16px;
    color: #fff;
    border: 5px solid #fff;
  }
  
  .btn-gray:hover {
    background: #000;
    border: 5px solid #000;
  }

  .btn-dark-background {
    background: var(--red-color);
    color: #fff;
  }

  .btn-dark-background:hover {
    background: #fff;
    text-decoration: none;
    color: var(--blue-color);
  }

  .btn-dark-background:visited {
    background: var(--red-color);
    color: #fff;
  }
  
  .text-center {
    text-align: center;
  }
  
  .is-error{
    font-weight: bold;
    padding: 20px;
    color: #af4442;
    background-color: #f2dede;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .is-error:empty{
    display: none;
  }
  
  .is-success{
    font-weight: bold;
    padding: 20px;
    color: #3c763d;
    background-color: #dff0d8;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .is-success:empty{
    display: none;
  }


  /* Botones compartir */
  .share-container {
    margin: 0 auto;
  }

  .share-container p {
    font-weight: bold;
    font-size: 18px;
    text-align: center !important;
  }

  .share-container .oferta-social {
    width: 190px;
    display: flex;
    margin: 1rem auto 2rem;
  }
  
  .share-container .oferta-social &gt; div {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin: 3px;
  }
  
  .share-container .oferta-social .facebook {
    background: #3b5998;
    color: #fff;
  }
  
  .share-container .oferta-social .facebook a i {
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.2s;
  }
  
  .share-container .oferta-social .facebook a i:hover {
    font-size: 1.9rem;
  }
  
  .share-container .oferta-social .twitter {
    background: #000;
  }
  
  .share-container .oferta-social .twitter a i {
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.2s;
  }
  
  .share-container .oferta-social .twitter a i:hover {
    font-size: 1.9rem;
  }

  .fa-x-twitter::before{
    content:"ð•";
    font-size:1.2em;
  }

  .oferta-social .whatsapp {
    background: #4fce5d;
  }
  
  .oferta-social .whatsapp a i {
    color: #fff;
    font-size: 1.6rem;
    transition: all 0.2s;
  }
  
  .oferta-social .whatsapp a i:hover {
    font-size: 1.9rem;
  }
  
  /* Padding */
  .py-1 { padding: 1rem 0 }
  .py-2 { padding: 2rem 0 }
  .py-3 { padding: 3rem 0 }
  .py-4 { padding: 4rem 0 }
  
  /* Margin */
  .my-1 { margin: 1rem 0 }
  .my-2 { margin: 2rem 0 }
  .my-3 { margin: 3rem 0 }
  .my-4 { margin: 4rem 0 }
  
  /* Header */
  .header {
    background-color: var(--bg-color);
    padding-bottom: 36px;
    border-bottom: 6px solid var(--orange-color);
  }

  .header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .header .logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  
  .header .logo .logo-izquierda img {
    width: 150px;
    height: auto;
    margin-right: 20px;
  }
  
  .header .logo .logo-derecha h1 {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--blue-color);
    font-size: 64px;
    text-transform: uppercase;
    text-align: center;
  }
  
  .header .logo .logo-derecha p {
    font-weight: 700;
    color: var(--red-color);
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-top: -10px;
  }
  
  .header .logo .logo-derecha {
    display: flex;
    flex-direction: column;
  }
  
  .header .derecha {
    display: flex;
    flex-direction: column;
    text-align: right;
  }
  
  .header .derecha .idioma {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .header .derecha .idioma a:hover {
    text-decoration: none;
  }
  
  .header .derecha .idioma img {
    width: 50px;
    height: 25px;
    margin-left: 5px;
  }
  
  .header .derecha .social {
    margin: 15px 0;
  }
  
  .header .derecha .social a i {
    font-size: 40px;
    color: var(--blue-color);
    margin-left: 10px;
    transition: all 0.5s;
  }
  
  .header .derecha .social a i:hover {
    color: var(--red-color);
  }
  
  .header .derecha .social a i.fa-facebook-f {
    font-size: 30px;
  }
  
 
  /* Separator */
  .separator {
    width: 90%;
    height: 6px;
    background-color: var(--orange-color);
    margin: 30px auto 0 auto;
    padding: 0 20px;
    border-radius: 5px;
  }
  
  /* Contenido Home */
  .home-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .home-content .videos {
    width: 65%;
  }

  .home-content .videos h2{
    font-size: 36px;
    text-align: center;
  }
  
  .videos .video-item {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 50px 20px;
    text-align: center;
  }
  
  .videos .video-item .video {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    }
  
  .videos .video-item .video iframe, .videos .video-item .video object, .videos .video-item .video embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    }
  
  .videos .video-item .texto {
    background-color: var(--bg-color-shade);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 0 10px 10px 10px;
  }

  .videos .video-item .texto p{
    text-align: center;
  }
  
  .videos .video-item .texto h1 {
    font-size: 24px;
    text-align: center;
    padding-top: 10px;
  }
  
  .home-content .videos .btn-container {
    text-align: center;
  }

  .home-content .articulos {
    width: 35%;
  }

  .home-content .articulos h2{
    font-size: 36px;
    text-align: center;
  }
  
  .articulos img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  
  .articulos .articulo-item {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 50px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .articulos .articulo-item .text {
    background-color: var(--bg-color-shade);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 0 10px 10px 10px;
  }
  
  .articulos .articulo-item .text h1 {
    font-size: 24px;
    text-align: center;
    padding-top: 10px;
  }

  .articulos .articulo-item .text p{
    text-align: center;
  }
  
  .home-content .articulos .btn-container {
    text-align: center;
  }

  /* Pagina tours - Banner */
  .home-a {
    height: 500px;
  }
  
  .home-a .slider{
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
  }
  
  .home-a .slider .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
  }
  
  .home-a .slider .slide.current{
    opacity: 1;
  }
  
  .home-a .slider .slide .content{
    position: absolute;
    bottom: 70px;
    left: -600px;
    opacity: 0;
    width: 600px;
    background-color: rgba(255,255,255,0.8);
    color: #333;
    padding: 35px;
  }
  
  .home-a .slider .slide .content h1{
    margin-bottom: 10px;
  }
  
  .home-a .slider .slide.current .content{
    opacity: 1;
    transform: translateX(600px);
    transition: all 0.7s ease-in-out 0.3s;
  }
  
  .home-a .buttons button#next{
    position: absolute;
    top: 50%;
    right: 15px;
  }
  
  .home-a .buttons button#prev{
    position: absolute;
    top: 50%;
    left: 15px;
  }
  
  .home-a .buttons button{
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 13px 15px;
    border-radius: 50%;
    outline: none;
  }
  
  .home-a .buttons button:hover{
    background-color: #fff;
    color: #333;
  }
  
  .home-a .container {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .home-a .container .text-container {
    color: #fff;
    margin-left: 50px;
    z-index: 1;
  }
  
  .home-a .text-container h3 {
    font-size: 1.6rem;
    font-weight: 300;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  }
  
  .home-a .text-container h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 1rem 0;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  }

  /* Pagina tours */
  .tours-page .tours {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .tours-page .articulo-item {
    width: 350px;
  }  

  .tours img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  
  .tours .tour-item {
    width: 300px;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tours .tour-item .oferta-social {
    width: 100%;
    display: flex;
  }
  
  .tours .tour-item .oferta-social &gt; div {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tours .tour-item .oferta-social .facebook {
    background: #3b5998;
    color: #fff;
  }
  
  .tours .tour-item .oferta-social .facebook a i {
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.2s;
  }
  
  .tours .tour-item .oferta-social .facebook a i:hover {
    font-size: 1.9rem;
  }
  
  .tours .tour-item .oferta-social .twitter {
    background: #1da1f2;
  }
  
  .tours .tour-item .oferta-social .twitter a i {
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.2s;
  }
  
  .tours .tour-item .oferta-social .twitter a i:hover {
    font-size: 1.9rem;
  }
  
  .tours .tour-item .oferta-social .google {
    background: #d4493c;
  }
  
  .tours .tour-item .oferta-social .google a i {
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.2s;
  }
  
  .tours .tour-item .oferta-social .google a i:hover {
    font-size: 1.9rem;
  }
  
  .tours .tour-item .oferta-social .whatsapp {
    background: #4fce5d;
  }
  
  .tours .tour-item .oferta-social .whatsapp a i {
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.2s;
  }
  
  .tours .tour-item .oferta-social .whatsapp a i:hover {
    font-size: 1.9rem;
  }
  
  .tours .tour-item .text {
    width: 100%;
    background-color: var(--bg-color-shade);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 0 10px 10px 10px;
  }
  
  .tours .tour-item .text h1 {
    font-size: 22px;
    text-align: center;
    padding-top: 10px;
  }

  .tours .tour-item .text p{
    text-align: center;
  }

  .tours .tour-item .text .oferta-desc {
    font-weight: 700;
    padding: 0.5rem;
    font-size: 1rem;
  }
  
  .tours .tour-item .text .oferta-info {
    text-align: left;
    padding: 0 1rem;
    width: 100%;
  }

  .tours .tour-item .text .oferta-info i.fa-clock {
    padding: 0.5rem;
    font-size: 20px;
  }

  .tours .tour-item .text .oferta-info i.fa-male {
    padding: 0.5rem 1rem;
    font-size: 20px;
  }
  
  .tours .tour-item .text .oferta-info-mas {
    margin: 1rem;
    display: flex;
    justify-content: center;
  }

/* Ver Salida */

.ver-salida-a a {
    text-decoration: underline;
}

.ver-salida-a .items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 2rem;
}

.ver-salida-a .items div{
  font-size: 1.4rem;
  color: var(--blue-color);
  display: flex;
  align-items: center;
  margin: 1rem;
}

.ver-salida-a .items div i {
  font-size: 2.5rem;
  margin-right: 0.5rem;
}

.ver-salida-a .items div a {
  color: var(--blue-color);
}

.ver-salida-a p {
  margin: 1rem 0;
}

.items-galeria a img {
  border: solid 1px #999;
  padding: 5px;
  }

.items-galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.items-galeria a.galeria-image {
  flex: 0 1 auto;
  width: 300px;
  margin: 30px 30px;
}
  
  
  /* Contenido */

  .contenido h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .contenido p {
    margin: 1rem 0;
    text-align: left;
  }

  .contenido .btn-volver {
    text-align: center;
  }

  .contenido .btn-volver a {
    text-decoration: none;
  }

  /* Pagina videos */
  .videos-page .videos {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }

  .videos-page .video-item {
    max-width: 50%;
  }

  /* Pagina articulos */
  .articulos-page .articulos {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .articulos-page .articulo-item {
    width: 350px;
  }  
  
  /* Footer */

  .registro-newsletter {
    background-color: var(--blue-color);
    color: #fff;
    text-align: center;
  }

  .registro-newsletter h1 {
    font-size: 36px;
  }

  .registro-newsletter p {
    font-size: 20px;
  }

  .registro-newsletter .newsletter_msg {
    color: var(--orange-color);
  }

  .registro-newsletter .btn-container {
    margin: 50px;
  }

  .footer {
    text-align: center;
    background-color: var(--bg-color);
    border-top: 6px solid var(--orange-color);
  }

/* Fixed */
.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: white;
  padding: 0.5rem;
  border-radius: 3px;
}

.fixed .left {
    text-align: center;
}

.fixed i {
  color: #25d366;
  font-size: 70px;
  margin: 0 1rem;
  background-image: radial-gradient(at center, #fff 60%, transparent 40%);
}
  
  /* Contacto */
  .contacto-a form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contacto-a .form-group{
    margin-bottom: 20px;
  }
  
  .contacto-a .form-group label{
    display: block;
    margin-bottom: 5px;
    text-align: left;
  }
  
  .contacto-a .form-group input, .contacto-a .form-group textarea, .contacto-a .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
  }
  
  .contacto-a .form-group textarea{
    height: 200px;
  }
  
  .contacto-a .form-group input:focus, .contacto-a .form-group textarea:focus{
    outline: none;
    border-color: #343d3d;
  }
  
  .contacto-a .btn-container {
    text-align: center;
  }

  .contacto-a .hide-robot {
    display:none;
  }

/* Media Queries */

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

  /* Header */
  .header {
    padding-bottom: 0;
  }

  .header .container {
    flex-direction: column;
  }

  .header .logo {
    justify-content: center;
  }

  .header .derecha {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header .derecha .idioma {
    margin-top: 0;
  }

  /* Pagina videos */
  .videos-page .videos {
    flex-direction: column;
  }

  .videos-page .video-item {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

}

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

  /* Home content */
  .home-content {
    flex-direction: column;
  }

  .home-content .videos {
    width: 100%;
    margin-bottom: 50px;
  }

  .home-content .videos .video-item {
    padding-left: 0;
    padding-right: 0;
  }

  .home-content .articulos {
    width: 100%;
  }

  .home-content .articulos .articulo-item {
    padding-left: 0;
    padding-right: 0;
  }

}



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

  /* Header */
  .header .logo {
    flex-direction: column;
    padding-bottom: 30px;
  }

  /* Tour banners */
  .home-a{
    height: 500px;
  }

  .home-a .text-container h3 {
    font-size: 1.3rem;
  }
  
  .home-a .text-container h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

}

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

  /* Pagina articulos */
  .articulos-page .articulo-item {
    width: 100%;
  } 

}

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

  /* Header */
  .header {
    padding-bottom: 20px;
  }

  .header .derecha {
    flex-direction: column;
  }

  /* Contenido */
  .contenido h1 {
    font-size: 24px;
  }

  

}

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

  /* Header */
  .header .logo .logo-derecha h1 {
    line-height: 1;
    font-size: 48px;
  }

  .header .logo .logo-derecha p {
    font-size: 16px;
    margin-top: -10px;
  }

  /* Videos */
  .videos .video-item .texto h1 {
    font-size: 20px;
  }

  /* Articulos */
  .articulos .articulo-item .text h1 {
    font-size: 20px;
  }

  /* Tour banners */
  .home-a{
    height: 400px;
  }

  .home-a .text-container h3 {
    font-size: 1.1rem;
  }
  
  .home-a .text-container h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0.5rem 0;
  }

}</pre></body></html>