#super-container {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hidden{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
  background-image: linear-gradient(90deg, #4894db, #fefefe 25%,#fefefe 75%, #cd5b5b);
  background-clip: text;
  color: transparent;
  min-width: fit-content;
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
  animation: rainbow-text-animation 3.5s ease-in-out infinite;
}
@keyframes rainbow-text-animation {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 75% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/* h2,.h2{
  background-image: linear-gradient(270deg, #cd5b5b 0%, #fefefe 25%, #fefefe 90%, #4894db);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h3,.h3{
  background-image: linear-gradient(270deg, #cd5b5b 0%, #fefefe 25%, #fefefe 90%, #4894db);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h4,.h4{
  background-image: linear-gradient(270deg, #cd5b5b 0%, #fefefe 25%, #fefefe 90%, #4894db);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h5,.h5{
  background-image: linear-gradient(270deg, #cd5b5b 0%, #fefefe 25%, #fefefe 90%, #4894db);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h6,.h6{
  background-image: linear-gradient(270deg, #cd5b5b 0%, #fefefe 25%, #fefefe 90%, #4894db);
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */
  
h1.hidden, .hidden.h1 {height: 6.3rem;}
h2.hidden, .hidden.h2 {height: 5.25rem;}
h3.hidden, .hidden.h3 {height: 4.065rem;}
h4.hidden, .hidden.h4 {height: 3.29rem;}
h5.hidden, .hidden.h5 {height: 2.61rem;}
h6.hidden, .hidden.h6 {height: 2.07rem;}
.description{height: 2.8rem;}

input[type="radio"] {
  appearance: none; /* Desactiva el estilo predeterminado */
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%; /* Da forma circular */
  border: 1px solid var(--fz-default);
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
}

.room-container{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Estilos CSS */
.banner-hero {
  border-radius: var(--fz-border-radius-components);
  height: 500px; /* Alto del div */
  overflow: hidden; /* Para recortar la imagen si es más grande que el div */
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-hero img {
  transition: filter ease-in-out .3s;
  height: auto;
  display: block; /* Asegura que la imagen no tenga margen inferior */
}
.orbit-image-hero{
  height: 500px; /* Alto del div */
  overflow: hidden; /* Para recortar la imagen si es más grande que el div */
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-image-hero img{
  height: auto;
  display: block;
}
/* .banner-hero img:hover{
  filter: blur(3px);
} */

/* Orbit home */
.orbit{
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.orbit-caption {
  padding: 1.7rem 1.7rem;
  border-radius: 0 0 var(--fz-border-radius-components) var(--fz-border-radius-components);
  background-color: rgba(10, 10, 10, 0.2);}
  
/* style's nosotros */
.callout.room-nosotros{
  background-color: #555;
  padding-top: 18rem;
}
.bg-design{
  /* background-image: url('./../img/bg-nosotros.jpg'); */
  background-position: center;
  background-size: cover;
}
/* style's Servicios */
.big-h1{
  font-size: 7rem;
  text-transform: uppercase;
  /* line-height: 7rem; */
}
@media screen and (max-width: 39.9375em) {
  .big-h1{
    font-size: 3rem;
    line-height: 1.2;
  }
}
/* Estilo para botones, vista detalle de las historias */
.history-button {
  background-color: #101010;
  padding: 1rem 1rem 0.6rem 1rem;
  border-radius: 999px;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: 1px solid white;
  cursor: pointer;
  transition: all 0.2s ease-out;
  width: fit-content;
  display: inline-block;
  position: relative;
}

.history-button:hover {
  /* box-shadow: 3px 3px 15px rgba(0, 0, 0, .5); */
  box-shadow:  rgba(255, 255, 255, 0.2) 0 0 20px 0;
}

.history-button svg {
  cursor: pointer;
}
/* Estilo para el círculo interno cuando el radio está seleccionado */
input[type="radio"]:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--fz-default);
}

.button.room, .button.room.disabled, .button.room[disabled], .button.room.disabled:hover, .button.room[disabled]:hover, .button.room.disabled:focus, .button.room[disabled]:focus {
  transition: all 0.2s ease-out;
  background-color: transparent;
  border: 1px solid var(--fz-font-body);
  color: var(--fz-font-body);
  box-shadow: none; }
.button.room:hover, .button.room:focus {
  background-color: white;
  border-color: white;
  color: var(--fz-bg);
  box-shadow:  rgba(255, 255, 255, 0.2) 0 0 20px 0;
}

.effect {
  overflow: hidden;
  position: relative;
  display: inline-block;
  cursor: pointer;
  background-position: center;
  background-color: transparent;
  background-size: cover;
  border-radius: var(--fz-border-radius-components);
}

.effect__img {
  opacity: 0;
  max-height: 100%;
  max-width: 100%;
  display: block;
}

.effect:after,
.effect:before {
  content: "";
  z-index:1;
  display: block;
  top: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: all 0.2s ease-out;
}

.effect:hover .effect__caption {
  opacity: 0;
}

.effect--3d:hover {
  filter: brightness(90%);
}

.effect--3d:hover:before {
  left: -.5vh;
  filter: brightness(115%) hue-rotate(10deg);
}

.effect--3d:hover:after {
  left: .5vh;
  filter: brightness(115%) hue-rotate(270deg);
}


[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.149);
  border-radius: 0;
  background-color: var(--fz-bg-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 300;
  color: var(--fz-success);
}
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    color: var(--fz-font-body);
    border: none;
    border-bottom: 1px solid var(--fz-success);
    background-color: var(--fz-bg);
    -webkit-box-shadow: none;
            box-shadow: none;
}

[type='color']{
  width: 100%;
}

::-webkit-input-placeholder {
    color: var(--fz-font-body);
    opacity: 0.5; }
::-moz-placeholder {
    color: var(--fz-font-body);
    opacity: 0.5; }
:-ms-input-placeholder {
    color: var(--fz-font-body);
    opacity: 0.5; }
::-ms-input-placeholder {
    color: var(--fz-font-body);
    opacity: 0.5; }
::placeholder {
    color: var(--fz-font-body);
    opacity: 0.5; }

/*------------------------------------------------------*/
/*------------------------------------------------------*/
/*------------------------------------------------------*/
    
.breadcrumbs a {
  color: white;
}
#form-container {
  margin: auto;
}



.colorDiv {
  width: 50%;
  height: 50px;
  margin-top: 10px;
  display: inline-block;
}

/*------------------------------------------------------*/
/*------------------------------------------------------*/
/*------------------------------------------------------*/
.video-container {
  height: auto;
  width: 100%;
  position: relative;
}

.video-container video {
  border-radius: var(--fz-border-radius-components);
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

.no-js .top-bar {
  display: none;
}

@media screen and (min-width: 40em) {
  .no-js .top-bar {
    display: block;
  }

  .no-js .title-bar {
    display: none;
  }
}

.especial-icon{
  background-color: #101010;
  padding: 1.2rem;
  position: absolute;
  z-index: 1;
  right: 0;
  border-radius: var(--fz-border-radius-components);
}
.especial-icon::after{
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  right: 0;
  bottom: -50px;
  /* background: red; */
  border-top-right-radius: 1rem;
  box-shadow: 25px -25px 0 0 #101010;
}
.especial-icon::before{
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  left: -50px;
  top: 0;
  /* background: red; */
  border-top-right-radius: 1rem;
  box-shadow: 25px -25px 0 0 #101010;
}

.especial-box{
  background-color: green;
  position: absolute;
  bottom: 0;
  padding: 1rem;
  right: 0;
  border-radius: 1rem;
  box-shadow: #101010 0px 0px 0px 20px;
}
.especial-box::before{
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  left: -60px;
  bottom: 0px;
  /* background: red; */
  border-bottom-right-radius: 1rem;
  box-shadow: 10px 10px 0 0 #101010;
}
.especial-box::after{
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  right: 0;
  top: -60px;
  /* background: red; */
  border-bottom-right-radius: 1rem;
  box-shadow: 10px 10px 0 0 #101010;
}
.inverted-radius {
  --r: 25px; /* the radius */
  --s: 40px; /* the size of the corner*/
  
  /* width: 250px; */
  /* aspect-ratio: 1; */
  background: #05a3b5;
  border-radius: var(--r);
  --_m:/calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%) no-repeat;
  mask:
    right bottom calc(var(--s) + var(--r)) var(--_m),
    right calc(var(--s) + var(--r)) bottom var(--_m),
    radial-gradient(var(--s) at 100% 100%,#0000 99%,#000 101%) 
     calc(-1*var(--r)) calc(-1*var(--r)) no-repeat,
    conic-gradient(from 90deg at calc(100% - var(--s) - 2*var(--r)) calc(100% - var(--s) - 2*var(--r)),
     #0000 25%,#000 0);
}