* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Google Sans Flex", sans-serif;
    color: #000;
    font-weight: 350;
    overflow-x: hidden;
}
a, a:active, a:hover, a:focus {
    text-decoration: none;
}

section {
    overflow-x: hidden;
    padding: 40px 0;
}

h1, h2 {
    color: #47a5ae;
}

strong, b {
    font-weight: bold!important;
}

hr {
    width: 85%;
    margin: 0 auto;
}

/* HEADER */

.main-header {
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: 0.3s ease all;
    background: transparent;
}

.main-header.scrolled {
    background: #47a5ae;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
}

.main-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.main-nav a:hover::before {
    width: 100%;
}

.btn-reservar {
    background: #47a5ae;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 450;
    color: white;
}

.main-header.scrolled .btn-reservar {
    background: white;
    color: #47a5ae;
}

.btn-reservar:hover,
.btn-reservar:active,
.btn-reservar:focus {
    background: black;
    transition: all 0.3s ease;
    color: white;
}

/* HAMBURGER */

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

.hamburger span {
    width: 28px;
    height: 2px;
    background: white;
    transition: 0.3s ease;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: #47a5ae;
        height: 0;
        overflow: hidden;
        transition: 0.3s ease;
    }

    .main-nav.active {
        height: calc(100vh - 90px);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 30px 0;
        gap: 22px;
    }

    .main-nav a {
        font-size: 17px;
    }
}


/* SLIDER */

.slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition:
        opacity 1.6s ease,
        transform 2.4s ease;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 1.4s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide.active::after {
    opacity: 1;
}

.slide.out {
    opacity: 0;
    transform: scale(1.02);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 26%;
    left: 8%;
    color: white;
    max-width: 650px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s ease 0.3s;
    z-index: 1;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 67px;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 30px;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.4;
}

/* FLECHAS */

.slider-arrows {
    position: absolute;
    bottom: 45px;
    left: 8%;
    display: flex;
    gap: 22px;
    z-index: 10;
}

.slider-arrows button {
    background: transparent;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.slider-arrows button:hover {
    opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .slide-content h1 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .slide-content {
        max-width: 300px;
    }
}

/* EFECTOS */

.reveal {
  opacity: 0;
  transition: all 1s ease;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
}

/* Fade sutil */
.reveal.fade {
  transform: translateY(20px);
}

.reveal.fade.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide desde abajo muy suave */
.reveal.slide-up {
  transform: translateY(60px);
}

.reveal.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide desde izquierda */
.reveal.slide-left {
  transform: translateX(-40px);
}

.reveal.slide-left.active {
  transform: translateX(0);
}

/* Slide desde derecha */
.reveal.slide-right {
  transform: translateX(40px);
}

.reveal.slide-right.active {
  transform: translateX(0);
}

/* Slide desde abajo */
.reveal.slide-up {
  transform: translateY(40px);
}

.reveal.slide-up.active {
  transform: translateY(0);
}

/* Zoom sutil */
.reveal.zoom {
  transform: scale(0.97);
}

.reveal.zoom.active {
  transform: scale(1);
}

/* Variaciones de velocidad */
.reveal.fast {
  transition-duration: 0.6s;
}

.reveal.slow {
  transition-duration: 1.6s;
}

/* Aparición elegante tipo cortina */
.reveal.blur {
  filter: blur(10px);
}

.reveal.blur.active {
  opacity: 1;
  filter: blur(0);
}


@media (max-width: 992px) {

    .reveal.slide-left,
    .reveal.slide-right {
        transform: none !important;
    }

    .row.g-5 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

}

/* SCROLL INDICATOR */

.scroll-indicator {
    position: fixed;
    right: 25px;
    bottom: 50%;
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
    transform-origin: right center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 200;
}

.scroll-indicator .text {
    color: white;
    margin-right: 12px;
    font-size: 14px;
    letter-spacing: 1px;
}

.scroll-indicator .line {
    width: 70px;
    height: 1px;
    background: white;
}

.scroll-indicator.scrolled .text {
    color: black;
}

.scroll-indicator.scrolled .line {
    background: black;
}

/* ============================
   INSTITUCIONAL
============================ */


.institucional h2 {
    position: relative;
    margin-bottom: 25px;
    font-weight: 420;
    font-size: 43px;
    letter-spacing: 1px;
    color: #4aa5ad;
}

.institucional h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #47a5ae;
    margin-top: 12px;
}

.institucional p {
    font-size: 24px;
    line-height: 1.8;
    max-width: 90%;
}

.institucional img {
    width: 100%;
    border-radius: 6px;
    display: block;
}



/* ============================
   SALON / SERVICIOS
============================ */

.section03 {
    padding: 100px 0;
    background: #ffffff;    
}

/* ESTRUCTURA PRINCIPAL */

.section03 .row {
    align-items: stretch;
}

/* COLUMNAS IGUAL ALTURA REAL */

.columna-servicio {
    display: flex;
    flex-direction: column;
}

.contenido-servicio {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMÁGENES IGUALES */

.bloque-imagen {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    flex-grow: 1;
    height: 420px;
}

.bloque-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}


/* ============================
   VIDEO
============================ */

.video-box {
    cursor: pointer;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.20);
    transition: background 0.3s ease;
    border-radius: 6px;
}

.video-box:hover .video-overlay {
    background: rgba(0,0,0,0.40);
}

/* ICONO FIJO Y CENTRADO */

.video-icon {
    width: 120px !important;
    height: auto !important;
    opacity: 0.95;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.video-box:hover .video-icon {
    transform: scale(1.08);
}


/* ============================
   TEXTOS
============================ */

.bloque-texto {
    margin-top: 10px;
}

.bloque-texto h3 {
    font-size: 24px;
    color: #4aa5ad;
    margin-bottom: 18px;
}

/* SERVICIOS EN DOS COLUMNAS */

.internas.institucional p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;    
}

.bloque-texto p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.2;
}


/* ============================
   BOTON LINEA
============================ */

.btn-linea {
    font-size: 13px;
    text-decoration: none;
    color: #4aa5ad;
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-linea:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #4aa5ad;
    transition: all 0.3s ease;
}

.btn-linea:hover:before {
    width: 30px;
}


/* ============================
   POPUP VIDEO
============================ */

.video-popup {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.85);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.video-popup-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.video-popup iframe {
    width: 100%;
    height: 500px;
}

.close-popup {
    position: absolute;
    top: -40px;
    right: 0;

    color: #fff;
    font-size: 30px;
    cursor: pointer;
}


/* ============================
   RESPONSIVE
============================ */

@media (max-width: 1200px) {

    .institucional p {
        font-size: 20px;
    }

    .bloque-imagen {
        height: 340px;
    }
}

@media (max-width: 992px) {

    .institucional {
        padding: 70px 0;
    }

    .section03 {
        padding: 60px 0;
    }

    .bloque-texto p:first-of-type {
        column-count: 1;
    }
}

@media (max-width: 768px) {

    .institucional h2 {
        font-size: 32px;
    }

    .institucional p {
        font-size: 18px;
        max-width: 100%;
    }

    .bloque-imagen {
        height: 260px;
    }

    .video-popup iframe {
        height: 260px;
    }

    .bloque-texto h3 {
        font-size: 20px;
    }

    .video-icon {
        width: 80px !important;
    }

    .section03 {
        padding: 40px 0;
    }
}

/* ============================
   HABITACIONES
============================ */

.zoom {
  display: block; 
  overflow: hidden;
}
.zoom img { 
  transform: scale(1); 
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s; 
}
.zoom:hover img { 
  transform: scale(1.1); 
  opacity:0.9;
}

/* SECCION HABITACIONES */

.habitaciones {
    padding: 80px 0;
    background: #ffffff;
}

/* TITULO CENTRADO DEL SECTOR */

.habitaciones h3 {
    text-align: center;
    font-size: 38px;
    font-weight: 420;
    letter-spacing: 1px;
    margin-bottom: 50px;
    position: relative;
    color: #4aa5ad;
}

.habitaciones h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #47a5ae;
    margin: 12px auto 0 auto;
}

/* ESTRUCTURA DE CADA CAJA */

.habitaciones .col-lg-4 {
    text-align: center;
}

/* IMAGENES */

.habitaciones img {
    width: 100%;
    display: block;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

/* EFECTO ZOOM SUAVE */

.habitaciones .zoom {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.habitaciones .zoom:hover img {
    transform: scale(1.05);
}

/* BOTON DEBAJO DE CADA IMAGEN */

.habitaciones .btn-linea {
    margin-top: 5px;
    display: inline-block;
}

/* AJUSTES DE ESPACIADO ENTRE CAJAS */

.habitaciones .row {
    row-gap: 35px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .habitaciones {
        padding: 50px 0;
    }

    .habitaciones h3 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .habitaciones .zoom {
        margin-bottom: 10px;
    }
}


/* ==========================
   EXPERIENCIAS - SLIDER
========================== */

.experiencias {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
}

.experiencias-texto h2 {
    position: relative;
    margin-bottom: 20px;
    font-weight: 420;
    font-size: 43px;
    letter-spacing: 1px;
    color: #4aa5ad;
    text-transform: uppercase;
}

.experiencias-texto h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #47a5ae;
    margin-top: 12px;
}

.experiencias-texto p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.experiencias-slider {
    position: relative;
}

/* SLIDES */

.exp-slide {
    height: 520px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

/* Background separado para zoom */
.exp-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
    border-radius: 6px;
}

/* Overlay */
.exp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* Contenido encima */
.exp-content {
    position: absolute;
    left: 35px;
    bottom: 35px;
    color: white;
    z-index: 2;
}

.exp-content .categoria {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.exp-content h3 {
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 400;
}

/* BOTÓN BLANCO */
.btn-flecha.blanco {
    color: black;
    background: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 7px 28px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* separa el texto de la flecha */
}

.btn-flecha.blanco i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-flecha.blanco:hover i {
    transform: translateX(5px); /* mueve la flecha hacia la derecha */
}

/* FLECHAS */
.exp-arrows {
  position: absolute;
  top: -60px;
  right: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 999;
}

.exp-arrows button {
    background: transparent;
    border: none;
    color: #47a5ae;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exp-arrows button:hover {
    color: #000;
}

/* SWIPER AJUSTES */
.experienciasSwiper {
    padding-left: 10px;    
}

/* HOVER ZOOM SOLO EN EL BACKGROUND */
.swiper-slide:hover .exp-slide::before {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .exp-slide {
        height: 420px;
    }
}

@media (max-width: 992px) {

    .experiencias {
        padding: 60px 0;
    }

    .experiencias-texto {
        margin-bottom: 30px;
    }

    .exp-arrows {
        position: relative;
        flex-direction: row;
        left: 0;
        top: 10px;
        margin-top: 15px;
    }

    .exp-slide {
        height: 360px;
    }
}

@media (max-width: 768px) {

    .experiencias-texto h2 {
        font-size: 32px;
    }

    .experiencias-texto p {
        font-size: 18px;
    }

    .exp-content h3 {
        font-size: 22px;
    }

    .exp-slide {
        height: 300px;
    }
}


/* PROMOCIONES */

.promociones-titulo {
    position: relative;
    margin-bottom: 20px;
    font-weight: 420;
    font-size: 43px;
    letter-spacing: 1px;
    color: #4aa5ad;
    text-transform: uppercase;
}

.promociones-titulo::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #47a5ae;
    margin-top: 12px;
}

.promo-card {
    height: 520px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

/* Background separado para zoom */
.promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
    border-radius: 6px;
}

/* Overlay */
.promo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    border-radius: 6px;
}


/* Contenido encima */
.promo-content {
    position: absolute;
    left: 35px;
    bottom: 35px;
    color: white;
    z-index: 2;
}

.promo-content .categoria {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.promo-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 400;
}

/* BOTÓN BLANCO */
.promo-content .btn-flecha.blanco {
    color: black;
    background: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 7px 28px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promo-content .btn-flecha.blanco i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.promo-content .btn-flecha.blanco:hover i {
    transform: translateX(5px);
}

/* HOVER ZOOM SOLO BACKGROUND */
.promo-card:hover::before {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .promo-card {
        height: 420px;
    }
}

@media (max-width: 992px) {
    .promo-card {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .promo-card {
        height: 300px;
    }
}


/* BOTÓN VERDE */
.btn-flecha.verde {
    color: #47a5ae;
    background: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 7px 28px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* separa el texto de la flecha */
}

.btn-flecha.verde i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-flecha.verde:hover i {
    transform: translateX(5px); /* mueve la flecha hacia la derecha */
}


/**********************
Ws botón redondo con tooltip ws-tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
  position: fixed;
  bottom: 13px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%!important;
  cursor: pointer;
  display: block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
          box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
  background: #1ca550;
  padding: 8px 4px;
  opacity: 1;
}

#chat-ws-redondo.ws.tooltip img {
  padding-left: 0px;
  padding-top: 0px;
  width: 100%;
}

#chat-ws-redondo.ws.tooltip i {
  font-size: 44px;
  color: white;
}

.ws.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #1ca550;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.ws.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #1ca550 transparent transparent transparent;
}

.ws.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/**********************
FOOTER
***********************/

/* BOTÓN VERDE */
.btn-flecha.transparente {
    color: white;
    background: transparent;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* separa el texto de la flecha */
}

.btn-flecha.transparente i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-flecha.transparente:hover i {
    transform: translateX(5px); /* mueve la flecha hacia la derecha */
}

.footer {
  background: #47a5ad;
  color: #fff;
  font-size: 14px;
  padding-top: 40px;
  padding-bottom: 20px;
  font-family: Arial, sans-serif;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-top .footer-col {
  margin-bottom: 20px;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #47a5ad;
    border-radius: 50px;
    font-size: 14px;
}
.footer-divider {
  border-top: 1px solid #fff;
  margin: 20px 0;
}
.footer-bottom {
  font-size: 14px;
  min-height: 100px;
}
.footer-links a {
  margin-right: 15px;
}
.footer-links p {
  margin: 5px 0;
}
.designed-by {
  font-size: 10px;
  display: block;
}
.footer-lang .dropdown {
  position: relative;
}
.footer-lang .dropbtn {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}
.footer-lang .dropdown-content {
  display: none;
  position: absolute;
  background-color: #47a5ad;
  min-width: 120px;
  top: 100%;
  left: 0;
  z-index: 10;
  border: 1px solid #fff;
}
.footer-lang .dropdown-content a {
  color: #fff;
  padding: 3px 12px;
  display: block;
}
.footer-lang .dropdown:hover .dropdown-content {
  display: block;
}
.footer-col h5 {
    font-size: 14px;
}

.footer a.social {
    color: #47a5ad;
}

.footer a, .footer a:active, .footer a:hover, .footer a:focus {
    text-decoration: none;
}
.footer p {
    margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
  .footer-top .row {
    flex-direction: column;
  }
  .footer-bottom .row {
    flex-direction: column;
    text-align: center;
  }
  .footer-lang {
    margin-top: 15px;
  }
  .footer-bottom {
    font-size: 14px;
    min-height: 200px;
}
.footer-lang .dropdown-content {
    width: 100%;
}
}

.internas {
    padding-top: 140px;
}

/* Contacto */

a, a:hover, a:focus, a:active, .form-control:focus, .form-control:active, .form-control:hover, [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled), .btn-success.focus, .btn-success:focus, .form-select,
button:hover, button:active, button:focus, .btn-success, .btn, [type=button], [type=reset], [type=submit], button,
.btn:hover, .btn:active, .btn:focus {
    outline: 0!important;
    box-shadow: none!important;
    text-decoration:none!important;
}

textarea.form-control {    
    min-height: 140px;
    margin-bottom: 20px;
}

.no-margin {
  margin:0px!important;
}
.help-block.with-errors {
  color: #4aa5ad;
  margin-top: 5px;
  }
  
  .alert-success {
  color: #fff;
  background-color: transparent;
  border-color: #f1f0f5;
  }
.alert-dismissable .close, .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0px;
    color: white;
    font-weight: 300;
    background: black;
    border: 0;
}
  .alert {
    position: relative;
    padding: 2rem;
    margin-bottom: 1rem;
    border: 0px solid transparent;
    border-radius: 0px;
}
  
  .text-muted {
  color: #4aa5ad;
  }
  .history-text p.text-muted {
  color: #4aa5ad;
  }
  .messages {background: black; color: white;}
  
  .btn.disabled, .btn[disabled],  .btn-send, .btn-success,
  fieldset[disabled] .btn  {
  background: #4aa5ad;
  color: white;
  text-transform: uppercase;
  width: 165px;
  border: none;
  height: 46px;
  cursor: pointer;
  font-size: calc(12px + 0.4vw);
  opacity: 1;
  line-height: 1;
  border-radius: 50px;
  }
  .btn.disabled:hover,  .btn.disabled:active, .btn.disabled:focus, .btn-success:hover, .btn-success:active, .btn-success:focus,
  .btn[disabled]:hover, .btn[disabled]:active, .btn[disabled]:focus,
  fieldset[disabled] .btn:hover, fieldset[disabled] .btn:active, fieldset[disabled] .btn:focus,
    .btn-send:hover, .btn-send:active, .btn-send:focus
  {
    background: black;
    color: white;
    opacity: 1;
    border-radius: 50px;
    }
  
.alert-danger {
    color: black;
    background-color: #f1f0f5;
    border-color: #f1f0f5;
}
.form-group {
  margin-top:10px;
  margin-bottom: 10px;  
}
.form-group input {
      min-height: 45px;
    border-color: #e8e8e8;
}
  .d-none {
    display: none!important;
}
.nice-select.wide {
    width: 100%;
    border-radius: 0;
}
.input-group-addon {
  position: absolute;
    right: 10px;
    z-index: 1;
    top: 8px;
}

  /* Termina Contacto */

  
/*** T H E - M A G I C - O F - O B J E C T - F I T ***/
/*****************************************************/
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 0px;
  height: 0;
}

.videoWrapper .texto {
  position: absolute;
  bottom: 15%;
  z-index: 1;
  color: white;
  left: 5%;
  padding: 10px;
}

.videoWrapper .texto h1 {
  font-family: "Adobe Garamond Pro";
  font-weight: normal;
  font-style: italic;
  color: #fecb32;
  font-size: calc(112px + 0.4vw);
  line-height: 1;
  margin-bottom: -20px;
}

.videoWrapper .texto h2 {
  font-size: calc(87px + 0.4vw);
  line-height: 1;
  font-weight: bold;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    background: white;
}

/* Galerías */

.bloque-imagen-galeria {
    position: relative;
    margin-bottom: 25px;
}

.bloque-imagen-galeria .swiper {
    width: 100%;
    height: auto;
}

.bloque-imagen-galeria .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bloque-imagen-galeria img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.habitacionSwiper {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
}

.habitacionSwiper .swiper-slide {
    height: 100%;
}

.habitacionSwiper .swiper-button-next,
.habitacionSwiper .swiper-button-prev {
    color: white;
}

.habitacionSwiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.habitacionSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* LIGHTBOX */

.lightbox-gallery {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-gallery.active {
    display: flex;
}

.lightboxSwiper {
    width: 90%;
    height: 80vh;
}

.lightboxSwiper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightboxSwiper .swiper-button-next,
.lightboxSwiper .swiper-button-prev {
    color: white;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}