/* MAPA */

:root {
  --color-educacion: #F48C0D;
  --color-tiendas: #B6FF2E;
  --color-gastronomia: #B42DB4;
  --color-espacios: #6262F1;
  --color-salud: #515461;
  --color-cultura: #FF46AB;
  --color-todo: #515461;
}

.filters .todo,
.filters .verdes,
.filters .tiendas,
.filters .gastronomia,
.filters .cultura,
.filters .salud,
.filters .educacion {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.filters .todo:before {
  content: "";
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
  background-color: var(--color-todo);
}

.filters .verdes:before {
  content: "";
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
  background-color: var(--color-espacios);
}

.filters .tiendas:before {
  content: "";
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
  background-color: var(--color-tiendas);
}

.filters .gastronomia:before {
  content: "";
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
  background-color: var(--color-gastronomia);
}

.filters .cultura:before {
  content: "";
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
  background-color: var(--color-cultura);
}

.filters .salud:before {
  content: "";
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
  background-color: var(--color-salud);
}

.filters .educacion:before {
  content: "";
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
  background-color: var(--color-educacion);
}

.filter-button {
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.sidebar {
  position: absolute;
  width: 15%;
  height: 85%;
  overflow: hidden;
  border-right: 0px;
}

#map {
  position: absolute;
  left: 17%;
  width: 80%;
  top: 0;
  height: 85%;
}

.heading {
  background: #fff;
  border-bottom: 1px solid #eee;
  min-height: 60px;
  line-height: 60px;
  padding: 0 10px;
  background-color: #00853e;
  color: #fff;
}

.listings {
  height: 100%;
  overflow: auto;
  padding-bottom: 60px;
  cursor: pointer;
}

.listings .item {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  width: 80%;
  margin: 10px 0px;
  border-radius: 0.5rem;
}

.listings .item:hover,
.listings .item.active {
  background: rgba(139, 139, 139, 0.40);
}

.listings .item:last-child {
  border-bottom: none;
}

.listings .item .title {
  display: block;
  color: #000000;
  font-size: 1rem;
  line-height: 1.1;
}

.listings .item .details {
  font-size: 0.8rem;
  color: #666;
}

.listings .item .title small {
  font-weight: 400;
}

/* Scrollbar */

/* Estilo por defecto: scrollbar invisible */

html {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

html::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* Estilo visible solo mientras se scrollea */

html.scroll-active {
  scrollbar-color: #B6FF2D #000;
}

html.scroll-active::-webkit-scrollbar-thumb {
  background-color: #B6FF2D;
}

/* Marker tweaks */

.mapboxgl-popup {
  padding-bottom: 25px;
  z-index: 50;
}

.mapboxgl-popup-close-button {
  display: none;
}

.mapboxgl-popup-content {
  background: #fff !important;
  width: 520px;
  padding: 10px !important;
  height: auto;
  display: flex;
  overflow: hidden;
}

.mapboxgl-popup-content .popup-content {
  font-size: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  position: relative;
}

.mapboxgl-popup-content .popup-content .popup-title {
  font-size: 1rem !important;
  padding: 0.5rem;
  background-color: #B6FF2E;
  color: #000 !important;
  display: inline-block;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.mapboxgl-popup-content .popup-content .popup-text .popup-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}

.mapboxgl-popup-content .popup-content .popup-text .popup-body p,
.mapboxgl-popup-content .popup-content .popup-text .popup-body a {
  color: #FF46AB;
  font-size: 0.75rem;
  word-wrap: break-word;
  font-weight: 500;
  font-family: aktiv-grotesk;
}

.mapboxgl-popup-content .popup-content .popup-img {
  padding: 0;
  display: flex;
  flex: 1;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.mapboxgl-popup-content .popup-content .popup-img img {
  max-height: 165px;
  height: auto;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.mapboxgl-popup-content .popup-content .popup-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: auto;
  width: auto;
  position: relative;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #FF46AB;
  padding: 0.5rem;
  box-sizing: border-box;
}

.mapboxgl-popup-content a:hover {
  text-decoration: underline;
}

.mapboxgl-popup-content a:active,
a:focus {
  outline: 0;
  border: none;
  -moz-outline-style: none;
}

.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  border-bottom: 2px solid #fff !important;
  height: 10px !important;
  width: 10px !important;
  z-index: 9999 !important;
  background-color: #fff !important;
  rotate: 45deg;
  border-right: 1px solid #fff !important;
  top: -5px;
  position: relative;
  border-top: 0 !important;
  border-left: 0 !important;
}

.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  border-top: 1px solid #fff !important;
  height: 10px !important;
  width: 10px !important;
  z-index: 9999 !important;
  background-color: #fff !important;
  rotate: 45deg;
  border-left: 1px solid #fff !important;
  bottom: -5px;
  position: relative;
  border-bottom: 0 !important;
  border-right: 0 !important;
}

.mapboxgl-popup-content div {
  padding: 8px;
}

.mapboxgl-popup-anchor-top>.mapboxgl-popup-content {
  margin-top: 0px;
}

.mapboxgl-popup-anchor-top>.mapboxgl-popup-tip {
  border-bottom-color: #F1F0ED !important;
}

.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl,
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl {
  display: none !important;
}

.mapboxgl-popup-anchor-top,
.mapboxgl-popup-anchor-top-left,
.mapboxgl-popup-anchor-top-right {
  flex-direction: column;
  margin-top: 0px;
  /*-15*/
}

.marker {
  border: none;
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: #000;
  border-radius: 50px;
}

.listings p::before {
  content: '';
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: top;
  flex-shrink: 0;
  /* Evita que se deforme */
}

.listings .item {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  width: 80%;
  margin: 10px 0px;
  border-radius: 0.5rem;
}

.listings .item .title {
  display: flex;
  align-items: flex-start;
  color: #000000;
  font-size: 1rem;
  line-height: 1.1;
  margin: 0;
}

.listings .item .details {
  font-size: 0.8rem;
  color: #666;
  margin-left: 22px;
  /* Alinea con el texto del título después del círculo */
  margin-top: 2px;
}

.listings .color-1 p::before,
.marker.color-1 {
  background-color: var(--color-educacion);
}

.listings .color-2 p::before,
.marker.color-2 {
  background-color: var(--color-tiendas);
}

.listings .color-3 p::before,
.marker.color-3 {
  background-color: var(--color-gastronomia);
}

.listings .color-4 p::before,
.marker.color-4 {
  background-color: var(--color-espacios);
}

.listings .color-5 p::before,
.marker.color-5 {
  background-color: var(--color-salud);
}

.listings .color-6 p::before,
.marker.color-6 {
  background-color: var(--color-cultura)
}

/* MOBILE FILTER DROPDOWN */

.mobile-filter-dropdown {
  top: 1rem;
  z-index: 50;
  background-color: #FF46AB;
}

.dropdown-toggle {
  background-color: #FF46AB;
  /* ca_magenta */
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
  margin-bottom: 1px;
}

.dropdown-toggle:hover {
  background-color: #FF46AB;
}

.dropdown-toggle span {
  line-height: 1;
  padding: 0.3rem;
}

.dropdown-menu {
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-height: 350px;
  overflow-y: auto;
}

.filter-button-mobile {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
  background: none;
  line-height: 1;
}

.filter-button-mobile:hover {
  background-color: #f9fafb;
  color: #FF46AB;
}

@media (max-width: 767px) {
  /* MAPA */

  .sidebar {
    position: absolute;
    width: 100%;
    height: 92px;
    bottom: 0px;
    overflow: hidden;
    border-right: 0px;
  }

  #map {
    position: absolute;
    height: 500px;
    left: 0;
    width: 100%;
  }

  #map .mapboxgl-canvas {
    height: 100%;
    width: 100%;
  }

  .heading {
    background: #fff;
    border-bottom: 1px solid #eee;
    min-height: 60px;
    line-height: 60px;
    padding: 0 10px;
    background-color: #00853e;
    color: #fff;
  }

  .listings {
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }

  .listings .item {
    display: inline-block;
    border-bottom: none;
    padding: 10px 16px;
    text-decoration: none;
    width: auto;
  }

  .listings .item:last-child {
    border-bottom: none;
  }

  .listings .item .title {
    display: block;
    color: black;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0px !important;
  }

  .listings .item .details {
    font-size: 0.9rem;
    color: black;
    margin-left: 0;
    /* Alinea con el texto del título después del círculo */
    margin-top: 0px;
  }

  .listings .item>div {
    color: black;
    font-size: 14px;
    padding-left: 25px;
  }

  .listings p::before {
    width: 15px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    background-color: #EA8462;
    content: '';
    display: inline-block;
    height: 15px;
    margin-right: 10px;
  }

  .listings .item .title small {
    font-weight: 400;
  }

  .listings .item.active .title,
  .listings .item .title:hover {
    color: #000;
  }

  /*
  ::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    border-left: 0;
    background: rgba(0, 0, 0, 0.1);
  }

  ::-webkit-scrollbar-track {
    background: none;
  }

  ::-webkit-scrollbar-thumb {
    background: #00853e;
    border-radius: 0;
  }
  */

  /* Marker tweaks */

  .mapboxgl-popup a {
    outline: 0;
  }

  .mapboxgl-popup {
    padding-bottom: 25px;
  }

  .mapboxgl-popup-close-button {
    display: none;
  }

  .mapboxgl-popup-content {
    background: #fff !important;
    padding: 0px !important;
    width: 220px;
    height: auto !important;
    min-height: 200px;
    display: flex;
    overflow: hidden;
  }

  .mapboxgl-popup-content .popup-content {
    font-size: 1rem;
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
  }

  .mapboxgl-popup-content .popup-content .popup-title {
    font-size: 1rem;
    padding: 0.3rem;
    background-color: #B6FF2E;
    color: #000;
    display: inline-block;
    margin-bottom: 10px;
  }

  .mapboxgl-popup-content .popup-content .popup-text p {
    color: #FF46AB;
    font-size: 0.75rem;
  }

  .mapboxgl-popup-content .popup-content img {
    height: auto;
    max-height: 200px;
    width: auto;
    max-width: 100%;
    position: relative;
    left: 0;
  }

  .mapboxgl-popup-content .popup-content .popup-text {
    height: auto;
    width: auto;
    position: relative;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #FF46AB;
    left: 0;
    margin-top: 0px;
    padding: 10px;
  }

  .mapboxgl-popup-content a:hover {
    text-decoration: underline;
  }

  .mapboxgl-popup-content a:active,
  a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
  }

  .mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
    border-bottom: 2px solid #fff !important;
    height: 10px !important;
    width: 10px !important;
    z-index: 9999 !important;
    background-color: #fff !important;
    rotate: 45deg;
    border-right: 1px solid #fff !important;
    top: -5px;
    position: relative;
    border-top: 0 !important;
    border-left: 0 !important;
  }

  .mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
    border-top: 1px solid #fff !important;
    height: 10px !important;
    width: 10px !important;
    z-index: 9999 !important;
    background-color: #fff !important;
    rotate: 45deg;
    border-left: 1px solid #fff !important;
    bottom: -5px;
    position: relative;
    border-bottom: 0 !important;
    border-right: 0 !important;
  }

  .mapboxgl-popup-content div {
    padding: 10px;
  }

  .mapboxgl-popup-anchor-top>.mapboxgl-popup-content {
    margin-top: 0px;
  }

  .mapboxgl-popup-anchor-top>.mapboxgl-popup-tip {
    border-bottom-color: #F1F0ED !important;
  }

  .mapboxgl-ctrl-bottom-left .mapboxgl-ctrl,
  .mapboxgl-ctrl-bottom-right .mapboxgl-ctrl {
    display: none !important;
  }

  .mapboxgl-popup-anchor-top,
  .mapboxgl-popup-anchor-top-left,
  .mapboxgl-popup-anchor-top-right {
    flex-direction: column;
    margin-top: -15px;
  }

  .filter-button {
    cursor: pointer;
  }

  .marker {
    border: none;
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: #000;
    border-radius: 50px;
  }
}

#fachada p,
#floor p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.svg-container {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.floor-navigator {
  height: 80%;
  width: auto;
}

.filter-column {
  width: auto;
}

.filter-column p {
  font-size: 1rem;
  line-height: 1.1;
  color: white;
  font-weight: 500;
  letter-spacing: 0;
}

.filter-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 0.5rem 0;
}

.filter-column li {
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1rem 0.5rem;
  margin-bottom: -1px;
  color: #fff;
}

.filter-column li:hover,
.filter-column li.floor-hover {
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-column li.selected {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* Estilos específicos para filtros activos */

.filter-column li.active {
  background-color: #B6FF2E;
  color: #CA1B5C;
  font-weight: 600;
}

.filtros {
  width: auto;
}

.filtros p {
  font-size: 1rem;
  line-height: 1.1;
  color: balck;
  font-weight: 500;
  letter-spacing: 0;
}

.filtros ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 0.5rem 0;
}

.filtros li {
  border: 1px solid black;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1rem 0.5rem;
  margin-bottom: -1px;
  color: black;
}

.filtros li:hover {
  background-color: #B6FF2E;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filtros li.selected {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* Estilos específicos para filtros activos */

.filtros li.active {
  background-color: #B6FF2E;
  color: black;
  font-weight: 600;
}

#fachada {
  .cls-1 {
    opacity: 0;
    transition: opacity 0.3s ease;
    fill: #B6FF2E;
    cursor: pointer;
  }
  .cls-1:hover,
  .cls-1.floor-hover {
    opacity: .8;
    transition: opacity 0.3s ease;
    fill: #B6FF2E;
  }
  .cls-1.selected {
    opacity: .5;
    fill: #B6FF2E;
  }
  .cls-1.filtered {
    opacity: .6;
    fill: #B6FF2E;
    animation: pulse 2s infinite;
  }
  .cls-1.filtered-out {
    opacity: 0.1;
    fill: #666;
  }
}

#floorplan {
  .cls-1,
  .cls-2 {
    fill: #12100b;
  }
  .cls-1:hover {
    fill: #B6FF2E;
    opacity: .8;
  }
  .cls-2:hover {
    fill: #B6FF2E;
    opacity: .8;
  }
  .cls-1.filtered {
    opacity: 0.8;
    fill: #A2C75E;
  }
  [id^='_'].filtered {
    opacity: 0.8;
    fill: #A2C75E !important;
  }
  [id^='_'].filtered:hover {
    fill: #B6FF2E !important;
  }
}

#tooltip {
  font-family: "aktiv-grotesk";
}

/* Ocultar tooltip en dispositivos touch y sin hover (mobile y tablet) */

@media (hover: none) and (pointer: coarse) {
  #tooltip {
    display: none !important;
  }
}

.helper-buttons {
  display: flex;
}

.helper-buttons button {
  color: #000;
  border: solid 1px #000;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  margin-left: -1px;
}

.helper-buttons button:hover {
  background-color: #B6FF2E;
}

@media (max-width: 767px) {
  #fachada p,
  #floor p {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0;
  }

  #units {
    .titulo h4 {
      font-size: 2rem;
      letter-spacing: -0.06rem;
    }
    .helper-buttons {
      display: flex;
    }
    .helper-buttons button {
      color: #000;
      font-weight: 600;
      font-size: 1rem;
      padding: 1px 8px;
    }
    .helper-buttons button:hover {
      background-color: #B6FF2E;
    }
    #units .superficie-mobile {
      font-size: 1rem;
      font-weight: 600;
    }
  }

  #floor .dropdown-container button span {
    font-size: 1rem;
    font-weight: 600;
    padding: 4px 8px;
  }

  #floor .orientacion-button-mobile,
  #floor .ambientes-button-mobile,
  #floor .floor-button-mobile {
    font-size: 1rem;
    font-weight: 600;
    padding: 4px 8px;
  }
}

/* MOBILE DROPDOWNS */

@keyframes pulse {
  0% {
    opacity: .6;
  }

  50% {
    opacity: .8;
  }

  100% {
    opacity: .6;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: aktiv-grotesk, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

p {
  font-family: "aktiv-grotesk";
  /* @apply font-sans;Aplica la fuente definida en Tailwind */
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing:
}

h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
  font-family: Px-Grotesk-Bold, sans-serif;
  margin-bottom: -1px;
  /* Aplica la fuente personalizada */
}

h1 {
  font-size: 8.5rem;
  line-height: 8.075rem;
  letter-spacing: -0.135rem;
}

h2 {
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.135rem;
}

h3 {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.135rem;
}

h4 {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05rem;
}

h5 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-10 {
  bottom: 2.5rem;
}

.bottom-16 {
  bottom: 4rem;
}

.bottom-2 {
  bottom: 0.5rem;
}

.bottom-24 {
  bottom: 6rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.bottom-\[10\%\] {
  bottom: 10%;
}

.bottom-\[15\%\] {
  bottom: 15%;
}

.bottom-\[20\%\] {
  bottom: 20%;
}

.bottom-\[22\%\] {
  bottom: 22%;
}

.bottom-\[25\%\] {
  bottom: 25%;
}

.bottom-\[30\%\] {
  bottom: 30%;
}

.bottom-\[33\%\] {
  bottom: 33%;
}

.bottom-\[34\%\] {
  bottom: 34%;
}

.bottom-\[35\%\] {
  bottom: 35%;
}

.bottom-\[5\%\] {
  bottom: 5%;
}

.bottom-\[8\%\] {
  bottom: 8%;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.left-4 {
  left: 1rem;
}

.left-\[10\%\] {
  left: 10%;
}

.left-\[14\%\] {
  left: 14%;
}

.left-\[15\%\] {
  left: 15%;
}

.left-\[20\%\] {
  left: 20%;
}

.left-\[24\%\] {
  left: 24%;
}

.left-\[25\%\] {
  left: 25%;
}

.left-\[250px\] {
  left: 250px;
}

.left-\[30\%\] {
  left: 30%;
}

.left-\[40\%\] {
  left: 40%;
}

.left-\[42\%\] {
  left: 42%;
}

.left-\[45\%\] {
  left: 45%;
}

.left-\[50\%\] {
  left: 50%;
}

.left-\[55\%\] {
  left: 55%;
}

.left-\[68\%\] {
  left: 68%;
}

.left-\[8\%\] {
  left: 8%;
}

.right-0 {
  right: 0px;
}

.right-4 {
  right: 1rem;
}

.right-8 {
  right: 2rem;
}

.right-\[10\%\] {
  right: 10%;
}

.right-\[12\%\] {
  right: 12%;
}

.right-\[15\%\] {
  right: 15%;
}

.right-\[20\%\] {
  right: 20%;
}

.right-\[25\%\] {
  right: 25%;
}

.right-\[28\%\] {
  right: 28%;
}

.right-\[3\%\] {
  right: 3%;
}

.right-\[30\%\] {
  right: 30%;
}

.right-\[36\%\] {
  right: 36%;
}

.right-\[40\%\] {
  right: 40%;
}

.right-\[45\%\] {
  right: 45%;
}

.right-\[5\%\] {
  right: 5%;
}

.right-\[7\%\] {
  right: 7%;
}

.right-\[8\%\] {
  right: 8%;
}

.right-\[9\%\] {
  right: 9%;
}

.top-0 {
  top: 0px;
}

.top-16 {
  top: 4rem;
}

.top-2 {
  top: 0.5rem;
}

.top-4 {
  top: 1rem;
}

.top-\[10\%\] {
  top: 10%;
}

.top-\[13\%\] {
  top: 13%;
}

.top-\[14\%\] {
  top: 14%;
}

.top-\[15\%\] {
  top: 15%;
}

.top-\[17\%\] {
  top: 17%;
}

.top-\[18\%\] {
  top: 18%;
}

.top-\[20\%\] {
  top: 20%;
}

.top-\[200px\] {
  top: 200px;
}

.top-\[24\%\] {
  top: 24%;
}

.top-\[26\%\] {
  top: 26%;
}

.top-\[30\%\] {
  top: 30%;
}

.top-\[32\%\] {
  top: 32%;
}

.top-\[33\%\] {
  top: 33%;
}

.top-\[34\%\] {
  top: 34%;
}

.top-\[37\%\] {
  top: 37%;
}

.top-\[38\%\] {
  top: 38%;
}

.top-\[39\%\] {
  top: 39%;
}

.top-\[40\%\] {
  top: 40%;
}

.top-\[42\%\] {
  top: 42%;
}

.top-\[45\%\] {
  top: 45%;
}

.top-\[47\%\] {
  top: 47%;
}

.top-\[5\%\] {
  top: 5%;
}

.top-\[50\%\] {
  top: 50%;
}

.top-\[52\%\] {
  top: 52%;
}

.top-\[54\%\] {
  top: 54%;
}

.top-\[60\%\] {
  top: 60%;
}

.top-full {
  top: 100%;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.col-span-full {
  grid-column: 1 / -1;
}

.col-start-1 {
  grid-column-start: 1;
}

.float-end {
  float: inline-end;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-ml-4 {
  margin-left: -1rem;
}

.-mr-8 {
  margin-right: -2rem;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.-mt-12 {
  margin-top: -3rem;
}

.-mt-2 {
  margin-top: -0.5rem;
}

.-mt-\[1px\] {
  margin-top: -1px;
}

.-mt-\[2px\] {
  margin-top: -2px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-12 {
  margin-left: 3rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-20 {
  margin-left: 5rem;
}

.ml-24 {
  margin-left: 6rem;
}

.ml-32 {
  margin-left: 8rem;
}

.ml-36 {
  margin-left: 9rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-56 {
  margin-left: 14rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-\[20\%\] {
  margin-left: 20%;
}

.ml-\[30\%\] {
  margin-left: 30%;
}

.ml-\[5\%\] {
  margin-left: 5%;
}

.ml-\[50\%\] {
  margin-left: 50%;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-64 {
  margin-right: 16rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-\[15\%\] {
  margin-right: 15%;
}

.mr-\[5\%\] {
  margin-right: 5%;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.box-border {
  box-sizing: border-box;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-table {
  display: inline-table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-2 {
  height: 0.5rem;
}

.h-24 {
  height: 6rem;
}

.h-3 {
  height: 0.75rem;
}

.h-32 {
  height: 8rem;
}

.h-4 {
  height: 1rem;
}

.h-8 {
  height: 2rem;
}

.h-\[250px\] {
  height: 250px;
}

.h-\[450px\] {
  height: 450px;
}

.h-\[50vh\] {
  height: 50vh;
}

.h-\[55vh\] {
  height: 55vh;
}

.h-\[600px\] {
  height: 600px;
}

.h-\[60vh\] {
  height: 60vh;
}

.h-\[80\%\] {
  height: 80%;
}

.h-\[85vh\] {
  height: 85vh;
}

.h-auto {
  height: auto;
}

.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.max-h-\[100\%\] {
  max-height: 100%;
}

.max-h-full {
  max-height: 100%;
}

.min-h-0 {
  min-height: 0px;
}

.min-h-\[calc\(100vh\+150px\)\] {
  min-height: calc(100vh + 150px);
}

.w-1\/2 {
  width: 50%;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-2 {
  width: 0.5rem;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-24 {
  width: 6rem;
}

.w-3 {
  width: 0.75rem;
}

.w-3\/4 {
  width: 75%;
}

.w-32 {
  width: 8rem;
}

.w-4 {
  width: 1rem;
}

.w-4\/5 {
  width: 80%;
}

.w-48 {
  width: 12rem;
}

.w-56 {
  width: 14rem;
}

.w-7\/12 {
  width: 58.333333%;
}

.w-8 {
  width: 2rem;
}

.w-\[100\%\] {
  width: 100%;
}

.w-\[100px\] {
  width: 100px;
}

.w-\[100vw\] {
  width: 100vw;
}

.w-\[120px\] {
  width: 120px;
}

.w-\[70\%\] {
  width: 70%;
}

.w-\[90\%\] {
  width: 90%;
}

.w-auto {
  width: auto;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.max-w-\[100\%\] {
  max-width: 100%;
}

.max-w-full {
  max-width: 100%;
}

.max-w-sm {
  max-width: 24rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-grow {
  flex-grow: 1;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-full {
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-2 {
  --tw-translate-y: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.cursor-pointer {
  cursor: pointer;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-subgrid {
  grid-template-columns: subgrid;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-0 {
  gap: 0px;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.justify-self-start {
  justify-self: start;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-b-0 {
  border-bottom-width: 0px;
}

.border-r-0 {
  border-right-width: 0px;
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-ca_gris {
  --tw-border-opacity: 1;
  border-color: rgb(81 84 97 / var(--tw-border-opacity, 1));
}

.border-ca_magenta {
  --tw-border-opacity: 1;
  border-color: rgb(255 70 171 / var(--tw-border-opacity, 1));
}

.border-ca_verde {
  --tw-border-opacity: 1;
  border-color: rgb(182 255 46 / var(--tw-border-opacity, 1));
}

.border-green-300 {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}

.bg-ca_gris {
  --tw-bg-opacity: 1;
  background-color: rgb(81 84 97 / var(--tw-bg-opacity, 1));
}

.bg-ca_magenta {
  --tw-bg-opacity: 1;
  background-color: rgb(255 70 171 / var(--tw-bg-opacity, 1));
}

.bg-ca_verde {
  --tw-bg-opacity: 1;
  background-color: rgb(182 255 46 / var(--tw-bg-opacity, 1));
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}

.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/30 {
  background-color: rgb(255 255 255 / 0.3);
}

.bg-opacity-20 {
  --tw-bg-opacity: 0.2;
}

.bg-opacity-70 {
  --tw-bg-opacity: 0.7;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-\[14vh\] {
  padding-top: 14vh;
}

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

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

.text-right {
  text-align: right;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-\[600\] {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-ca_gris {
  --tw-text-opacity: 1;
  color: rgb(81 84 97 / var(--tw-text-opacity, 1));
}

.text-ca_magenta {
  --tw-text-opacity: 1;
  color: rgb(255 70 171 / var(--tw-text-opacity, 1));
}

.text-ca_verde {
  --tw-text-opacity: 1;
  color: rgb(182 255 46 / var(--tw-text-opacity, 1));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-75 {
  opacity: 0.75;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/*@import url("https://use.typekit.net/mgs8sqi.css");*/

@font-face {
  font-family: 'Px-Grotesk-Bold';

  src: url('/assets/fonts/Px-Grotesk-Bold.woff2') format('woff2'),
    url('/assets/fonts/Px-Grotesk-Bold.woff') format('woff');

  font-weight: bold;

  font-style: normal;
}

/* Aplica la fuente por defecto a las etiquetas <p> */

html,
body {
  border: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.superficie span {
  font-size:1.2rem;
}

/*navbar*/

.float-navbar,
.scroll-badge,
.float-mobile {
  background: rgba(139, 139, 139, 0.50);
  border-radius: 0.5rem;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 1rem 1.1875rem;
}

.float-navbar .logo {
  color: #FFF;
  font-family: 'Px-Grotesk-Bold';
  font-size: 1.29425rem;
  font-style: normal;
  font-weight: 700;
  line-height: 83%;
  /* 1.07419rem */
  letter-spacing: -0.05175rem;
  opacity: 1;
}

.float-navbar p,
.float-navbar a,
.scroll-badge {
  color: #fff;
  opacity: 1;
  font-style: normal;
}

.float-navbar .active {
  background-color: #B6FF2E;
  color: #000;
}

.float-navbar .active:hover {
  background-color: #B6FF2E;
}

/* HOME PAGE HERO SECTION */

.hero-text span:first-child {
  padding-top: 10px;
}

.hero-text h1 {
  margin-bottom: 0px;
  margin-top: -10px;
}

.union img {
  width: auto;
  height: 50vh;
}

footer .copy p,
footer .address p {
  font-size: 1rem;
}

#hotel .textos-hotel h2 {
  color: #B6FF2E;
}

.text-top-right p,
#hotel .text-bottom-left p, #maintenance .text-bottom-left p {
  text-transform: uppercase;
  font-size: clamp(0.6rem, 0.8vw, 0.75rem);
  line-height: 1.1;
  z-index: 10;
}

#hotel .col-izq {
  background-image: url(/assets/images/lineas.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  position: relative;
}

#maintenance .col-izq {
  background-image: url(/assets/images/lineas.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 90% 80%;
  position: relative;
}

#departaments .col-2-bg {
  background-image: url(/assets/images/fachada.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

#departaments .left-col-row {
  background-image: url(/assets/images/rectangle-small.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}

/* #departaments .left-col-row .left-titles {
  margin-left: -36px;
  margin-bottom: -20px;
} */

#departaments .left-col-row p {
  padding: 20px 20px;
  width: 75%;
}

#departaments .col-2-bg .bottom-text {
  padding: 20px 20px;
}

#departaments .text-top-right {
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.1;
  color: white;
}

#amenities .subtitle {
  font-size: 1.5rem;
  font-weight: 600;
}

#amenities p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
}

/* AMENITIES SLIDER */

#amenities .slides-container {
  position: relative;
}

#amenities .slide {
  transition: transform 0.5s ease-in-out;
}

#amenities .slide.active {
  z-index: 10;
}

#amenities .dot.active {
  background-color: #B6FF2E !important;
  opacity: 1 !important;
}

/* Cursor personalizado para el slider */

#amenities {
  cursor: none;
  /* Ocultar cursor por defecto */
}

#amenities .custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #B6FF2E;
  color: black;
  padding: 20px 20px;
  height: 4rem;
  width: 4rem;
  font-weight: 600;
  font-size: 0.875rem;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  opacity: 0;
  white-space: nowrap;
}

#amenities .custom-cursor.visible {
  opacity: 1;
}

#amenities .custom-cursor.grabbing {
  background-color: #a8d08d;
}

#amenities .custom-cursor {
  background-image: url(/assets/images/chevron/chevron-black.svg);
  background-repeat: no-repeat;
  background-size: auto 2.5rem;
  background-position: 1.6rem center;
}

#amenities .custom-cursor.prev-slide {
  transform: rotate(180deg);
}

#amenities .custom-cursor.next-slide {
  transform: rotate(0deg);
}

/* En casos de pantallas táctiles y sin hover */

@media (hover: none) and (pointer: coarse) {
  #amenities #custom-cursor {
    display: none !important;
    /* Ocultar el custom cursor */
  }
}

#contact {
  background-image: url(/assets/images/contact.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

#contact .bajada {
  font-size: 1.5rem;
}

#contact .whatsapp-icon path {
  fill: black;
  /* Color negro por defecto */
  transition: fill 0.3s ease;
  /* Transición suave */
}

#contact a:hover .whatsapp-icon path {
  fill: #B6FF2E;
  /* Color verde al hacer hover */
}

#team .social-buttons a {
  font-size: 1.2rem;
  padding: 0.25rem 0.5rem;
}

#team .quote {
  margin-top: 20px;
}

#team .dieguez-img {
  background-image: url(/assets/images/equipo/dieguez-fridman.jpg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

#team .bulla-img {
  background-image: url(/assets/images/equipo/bulla.jpg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

#team .esrawe-img {
  background-image: url(/assets/images/equipo/esrawe-pardo.jpg);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}

#team .base-img {
  background-image: url(/assets/images/equipo/base.jpg);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}

#bottomTeam {
  background-image: url(/assets/images/equipo/bottom.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

#bottomGuide {
  background-image: url(/assets/images/guia/bottom.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* #materials .hotspot {
  display: none;
} */

#materials .hotspot p {
  color: #fff;
  line-height: 1.1;
  font-size: 1rem;
}

#materials .hotspot.bullet-top-left p:before {
  content: "";
  display: block;
  padding-bottom: 12px;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background-color: #FF46AB;
  margin: 0 auto 10px 0;
}

#materials .hotspot.bullet-bottom-left p:after {
  content: "";
  display: block;
  padding-bottom: 12px;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background-color: #FF46AB;
  margin: 10px auto 0 0;
}

#materials .hotspot.bullet-top-right p:before {
  content: "";
  display: block;
  padding-bottom: 12px;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background-color: #FF46AB;
  margin: 0 0 10px auto;
}

#materials .hotspot.bullet-bottom-right p:after {
  content: "";
  display: block;
  padding-bottom: 12px;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background-color: #FF46AB;
  margin: 10px 0 0 auto;
}

/*SLIDER*/

.prev-slide,
.next-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #B6FF2E;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  padding: 8px 12px;
}

.prev-slide:hover,
.next-slide:hover {
  background-color: #a8d08d;
}

.current-slide-prev,
.current-slide-next {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}

#contacto-modal h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#contacto-modal input::-moz-placeholder, #contacto-modal textarea::-moz-placeholder {
  color: rgb(81, 84, 97);
}

#contacto-modal input::placeholder,
#contacto-modal textarea::placeholder,
#contacto-modal select {
  color: rgb(81, 84, 97);
}

#contacto-modal select::part(placeholder) {
  padding-right: 40px;
}

/* GALLERY SLIDER */

#gallery .slides-container {
  position: relative;
}

#gallery .slide {
  transition: transform 0.5s ease-in-out;
}

#gallery .slide.active {
  z-index: 10;
}

#gallery .dot.active {
  background-color: #fff !important;
  opacity: 1 !important;
}

#gallery .prev-slide,
#gallery .next-slide {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  background-color: #FF46AB;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  height: 4rem;
  width: 4rem;
}

#gallery .prev-slide {
  justify-content: flex-start;
  padding-left: 1rem;
}

#gallery .next-slide {
  justify-content: flex-end;
  padding-right: 1rem;
}

#gallery .prev-slide:hover,
#gallery .next-slide:hover {
  background-color: rgba(255, 70, 171, 0.8);
}

#gallery .gallery-prev-area,
#gallery .gallery-next-area {
  transition: background-color 0.2s ease;
}

/* #gallery .gallery-prev-area:hover,
#gallery .gallery-next-area:hover {
  background-color: rgba(0, 0, 0, 0.1);
} */

/* MOBILE STYLES */

@media (max-width: 767px) {
  p {
    font-size: 1rem;
    line-height: 1.2;
  }

  h1 {
    font-size: 4rem;
    line-height: 3.8rem;
    letter-spacing: -0.12rem;
  }

  h2 {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.12rem;
  }

  h3 {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -0.12rem;
  }

  h4 {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.12rem;
  }

  .hero-text h1 {
    margin-top: 0;
  }

  .float-navbar,
  .float-mobile,
  .scroll-badge {
    background: rgba(139, 139, 139, 0.50);
    border-radius: 0.5rem;
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    padding: 0.85rem;
  }

  .union img {
    width: 90vw;
    height: auto;
  }

  .float-navbar a {
    padding: 0;
  }

  .float-navbar .logo {
    width: 140px;
  }

  #hotel .col-izq {
    background-image: url(/assets/images/lineas.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90% 100%;
    position: relative;
  }

  #departaments h2 {
    font-size: 3rem;
  }

  #departaments .left-col-row p {
    width: 95%;
  }

  #amenities .subtitle {
    font-size: 0.75rem;
    font-weight: 600;
  }

  #amenities p {
    font-size: 0.75rem;
    font-weight: 500;
  }

  #materials button {
    font-size: 0.75rem;
    padding: 0.5rem 0.5rem;
  }

  #materials .hotspot p {
    color: #fff;
    line-height: 1;
    font-size: 0.75rem;
    letter-spacing: normal;
  }

  #materials .materials-container h3 {
    font-size: 2.5rem;
  }

  #materials .materials-container .room-content {
    height: 75vh;
  }

  #materials .hotspot.bullet-top-left p:before {
    content: "";
    display: block;
    padding-bottom: 12px;
    height: 12px;
    width: 12px;
    border-radius: 100%;
    background-color: #FF46AB;
    margin: 0 auto 8px 0;
  }

  #materials .hotspot.bullet-bottom-left p:after {
    content: "";
    display: block;
    padding-bottom: 12px;
    height: 12px;
    width: 12px;
    border-radius: 100%;
    background-color: #FF46AB;
    margin: 8px auto 0 0;
  }

  #materials .hotspot.bullet-top-right p:before {
    content: "";
    display: block;
    padding-bottom: 12px;
    height: 12px;
    width: 12px;
    border-radius: 100%;
    background-color: #FF46AB;
    margin: 0 0 8px auto;
  }

  #materials .hotspot.bullet-bottom-right p:after {
    content: "";
    display: block;
    padding-bottom: 12px;
    height: 12px;
    width: 12px;
    border-radius: 100%;
    background-color: #FF46AB;
    margin: 8px 0 0 auto;
  }

  #contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0rem;
    letter-spacing: normal;
  }

  #contact .bajada {
    font-size: 0.75rem;
  }

  #contact a {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }

  #heroGuide h2,
  #heroTeam h2,
  #bottomGuide h2,
  #bottomTeam h2 {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.12rem;
  }

  #team h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.075rem;
    font-weight: 400;
  }

  #team p {
    font-size: 0.75rem;
    line-height: 1.1;
  }

  #team .texto p {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  #team .social-buttons a {
    padding: 0 0.5rem;
    font-size: 1rem;
  }

  #contacto-modal h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  #contacto-modal input,
  #contacto-modal textarea,
  #contacto-modal select {
    background-color: #FFF;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    box-sizing: border-box;
  }

  #contacto-modal select {
    margin: 0.3rem 0;
  }

  footer .menu ul li,
  footer .menu p {
    font-size: 0.875rem;
    line-height: 1.1;
    font-weight: 600;
  }

  footer .menu ul li {
    margin-bottom: 0.2rem;
  }

  /* #materials .materials-container .hotspot {
  visibility: hidden;
} */

  #gallery .prev-slide,
  #gallery .next-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF46AB;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    height: 2rem;
    width: 2rem;
    padding: 0;
  }

  #gallery .prev-slide img,
  #gallery .next-slide img {
    max-width: 7px;
  }
}

/* Ajustes específicos para diferentes tamaños de desktop */

@media (min-width: 768px) and (max-width: 1024px) {
  #heroHome h1 {
    font-size: 5rem;
    line-height: 1.1;
  }

  #departaments h2 {
    font-size: 3.5rem;
  }

  #departaments .left-col-row p {
    width: 100%;
  }

  #hotel .textos-hotel h2 {
    font-size: 4rem;
    letter-spacing: -0.12rem;
  }

  #hotel .textos-hotel p {
    font-size: 1.1rem;
  }

  #hotel .text-top-right,
  #hotel .text-bottom-left {
    font-size: 0.625rem;
  }

  #contact h2 {
    font-size: 3.5rem;
  }

  #bottomTeam h2 {
    font-size: 3.5rem;
  }

  #units #floor-title span {
    display: block;
  }

  #bottomGuide h2 {
    font-size: 4rem;
  }
}

/* PANTALLAS CHICAS */

@media (min-width: 1025px) and (max-width: 1516px) {
  .hero-text h1 {
    font-size: 8.5vw;
  }

  #hotel .textos-hotel h2 {
    font-size: 5rem;
    letter-spacing: -0.15rem;
  }

  #hotel .textos-hotel p {
    font-size: 1.25rem;
  }

  #departaments h2 {
    font-size: 5rem;
  }

  #departaments .left-col-row p {
    font-size: 1.4rem;
    line-height: 1.1;
    padding: 20px 20px;
    width: 85%;
  }
}

/* PANTALLAS MEDIAS */

@media (min-width: 1517px) and (max-width: 1920px) {
  p {
    font-size: 1.5rem;
  }

  #departaments .left-col-row p {
    padding: 20px 20px;
    width: 75%;
  }

  #team .social-buttons a {
    font-size: 1.5rem;
  }
}

@media (min-width: 1921px) and (max-width: 2560px) {
  #hotel .textos-hotel {
    margin-top: -8.5vh;
    margin-left: 0.3vw;
  }

  h1 {
    font-size: 8.5rem;
    line-height: 8.075rem;
    letter-spacing: -0.135rem;
  }

  h2 {
    font-size: 8rem;
    line-height: 1;
    letter-spacing: -0.135rem;
  }

  h3 {
    font-size: 6rem;
    line-height: 1;
    letter-spacing: -0.135rem;
  }

  h4 {
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -0.135rem;
  }

  h5 {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
  }

  p {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-text-block {
    padding-top: 15vh;
  }
}

.hover\:border:hover {
  border-width: 1px;
}

.hover\:border-black:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.hover\:border-ca_gris:hover {
  --tw-border-opacity: 1;
  border-color: rgb(81 84 97 / var(--tw-border-opacity, 1));
}

.hover\:border-ca_verde:hover {
  --tw-border-opacity: 1;
  border-color: rgb(182 255 46 / var(--tw-border-opacity, 1));
}

.hover\:bg-ca_gris:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(81 84 97 / var(--tw-bg-opacity, 1));
}

.hover\:bg-ca_gris\/90:hover {
  background-color: rgb(81 84 97 / 0.9);
}

.hover\:bg-ca_magenta:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 70 171 / var(--tw-bg-opacity, 1));
}

.hover\:bg-ca_verde:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(182 255 46 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white\/30:hover {
  background-color: rgb(255 255 255 / 0.3);
}

.hover\:bg-opacity-80:hover {
  --tw-bg-opacity: 0.8;
}

.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.hover\:text-ca_gris:hover {
  --tw-text-opacity: 1;
  color: rgb(81 84 97 / var(--tw-text-opacity, 1));
}

.hover\:text-ca_magenta:hover {
  --tw-text-opacity: 1;
  color: rgb(255 70 171 / var(--tw-text-opacity, 1));
}

.hover\:text-ca_verde:hover {
  --tw-text-opacity: 1;
  color: rgb(182 255 46 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:bottom-10 {
    bottom: 2.5rem;
  }

  .md\:bottom-4 {
    bottom: 1rem;
  }

  .md\:bottom-8 {
    bottom: 2rem;
  }

  .md\:left-10 {
    left: 2.5rem;
  }

  .md\:right-10 {
    right: 2.5rem;
  }

  .md\:right-12 {
    right: 3rem;
  }

  .md\:right-8 {
    right: 2rem;
  }

  .md\:top-10 {
    top: 2.5rem;
  }

  .md\:top-4 {
    top: 1rem;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:col-start-2 {
    grid-column-start: 2;
  }

  .md\:col-start-3 {
    grid-column-start: 3;
  }

  .md\:col-start-4 {
    grid-column-start: 4;
  }

  .md\:col-start-7 {
    grid-column-start: 7;
  }

  .md\:col-start-8 {
    grid-column-start: 8;
  }

  .md\:float-none {
    float: none;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .md\:-ml-4 {
    margin-left: -1rem;
  }

  .md\:-mr-16 {
    margin-right: -4rem;
  }

  .md\:-mt-1 {
    margin-top: -0.25rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:ml-0 {
    margin-left: 0px;
  }

  .md\:ml-12 {
    margin-left: 3rem;
  }

  .md\:ml-36 {
    margin-left: 9rem;
  }

  .md\:ml-56 {
    margin-left: 14rem;
  }

  .md\:ml-8 {
    margin-left: 2rem;
  }

  .md\:ml-\[0\] {
    margin-left: 0;
  }

  .md\:ml-\[10\%\] {
    margin-left: 10%;
  }

  .md\:ml-\[30\%\] {
    margin-left: 30%;
  }

  .md\:ml-\[40\%\] {
    margin-left: 40%;
  }

  .md\:mr-12 {
    margin-right: 3rem;
  }

  .md\:mr-24 {
    margin-right: 6rem;
  }

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:mr-\[10vw\] {
    margin-right: 10vw;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-12 {
    margin-top: 3rem;
  }

  .md\:mt-20 {
    margin-top: 5rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mt-8 {
    margin-top: 2rem;
  }

  .md\:mt-\[15vh\] {
    margin-top: 15vh;
  }

  .md\:mt-\[20vh\] {
    margin-top: 20vh;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-1\/2 {
    height: 50%;
  }

  .md\:h-40 {
    height: 10rem;
  }

  .md\:h-48 {
    height: 12rem;
  }

  .md\:h-6 {
    height: 1.5rem;
  }

  .md\:h-\[100vh\] {
    height: 100vh;
  }

  .md\:h-\[70vh\] {
    height: 70vh;
  }

  .md\:h-\[75vh\] {
    height: 75vh;
  }

  .md\:h-\[80vh\] {
    height: 80vh;
  }

  .md\:h-\[85vh\] {
    height: 85vh;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:h-screen {
    height: 100vh;
  }

  .md\:min-h-\[60\%\] {
    min-height: 60%;
  }

  .md\:min-h-screen {
    min-height: 100vh;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-1\/4 {
    width: 25%;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-48 {
    width: 12rem;
  }

  .md\:w-6 {
    width: 1.5rem;
  }

  .md\:w-80 {
    width: 20rem;
  }

  .md\:w-\[30\%\] {
    width: 30%;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:max-w-\[1550px\] {
    max-width: 1550px;
  }

  .md\:max-w-\[31rem\] {
    max-width: 31rem;
  }

  .md\:max-w-none {
    max-width: none;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:content-between {
    align-content: space-between;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:self-auto {
    align-self: auto;
  }

  .md\:self-start {
    align-self: flex-start;
  }

  .md\:justify-self-start {
    justify-self: start;
  }

  .md\:p-2 {
    padding: 0.5rem;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .md\:pb-12 {
    padding-bottom: 3rem;
  }

  .md\:pb-36 {
    padding-bottom: 9rem;
  }

  .md\:pb-\[200px\] {
    padding-bottom: 200px;
  }

  .md\:pl-1 {
    padding-left: 0.25rem;
  }

  .md\:pl-16 {
    padding-left: 4rem;
  }

  .md\:pl-4 {
    padding-left: 1rem;
  }

  .md\:pl-6 {
    padding-left: 1.5rem;
  }

  .md\:pr-0 {
    padding-right: 0px;
  }

  .md\:pr-16 {
    padding-right: 4rem;
  }

  .md\:pr-2 {
    padding-right: 0.5rem;
  }

  .md\:pr-24 {
    padding-right: 6rem;
  }

  .md\:pr-3 {
    padding-right: 0.75rem;
  }

  .md\:pr-4 {
    padding-right: 1rem;
  }

  .md\:pr-8 {
    padding-right: 2rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:pt-8 {
    padding-top: 2rem;
  }

  .md\:pt-\[18vh\] {
    padding-top: 18vh;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .lg\:mr-\[10\%\] {
    margin-right: 10%;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:w-56 {
    width: 14rem;
  }

  .lg\:w-\[45\%\] {
    width: 45%;
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }
}

@media (min-width: 1280px) {
  .xl\:w-64 {
    width: 16rem;
  }
}

@media (min-width: 1536px) {
  .\32xl\:w-72 {
    width: 18rem;
  }
}