.elementor-364 .elementor-element.elementor-element-54fc322{--display:flex;--min-height:1013px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-364 .elementor-element.elementor-element-dbeede8{--spacer-size:30px;}/* Start custom CSS for shortcode, class: .elementor-element-5583a60 *//* BASE */
.res-page{
  font-family: "Heebo", sans-serif;
}

/* Wrapper do topo */
.res-head{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 24px;
  text-align: left;
}

/* Título com gradiente */
.res-title-page{
  font-family: 'Heebo', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;

  background: linear-gradient(90deg, #23B2D0 0%, #2354A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin: 0;
  padding-bottom: 1px;
  position: relative;
}

/* ==============================
   FILTROS
================================ */
.res-filters{
  width: min(1180px, 100%);
  margin: 0 auto 30px;
  border: 1px solid #2354A3;
  border-radius: 10px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 44px;
  gap: 14px;
  align-items: end;
  background: #fff;
  box-sizing: border-box;
}

.res-filter label{
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
  display: block;
}

.res-filter select{
  width: 100%;
  height: 38px;
  padding: 0 36px 0 10px;
  border: 1px solid rgba(9,22,42,.15);
  border-radius: 6px;
  font-family: "Heebo", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #09162A;
  background-color: #fff;

  appearance: none;
  background-image: url("https://alohahospedagens.com.br/wp-content/uploads/2026/01/arrow_menu_open_down.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* BOTÃO BUSCAR */
.res-filter-btn{
  height: 38px;
  width: 44px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #23B2D0 0%, #2354A3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.res-filter-btn-icon-img{
  width: 9px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* ==============================
   GRID
================================ */
.resid-grid{
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ==============================
   CARD (base)
================================ */
.resid-card{
  position: relative;
  border: 1px solid #2354A3;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.1);
  text-decoration: none;
  color: #09162A;
  transition: transform .15s ease, box-shadow .15s ease;
  transform: translateZ(0);
}

.resid-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}

/* ==============================
   IMAGEM NORMAL
================================ */
.resid-img{
  height: 140px;
  background-size: cover;
  background-position: center;
  transition: opacity .25s ease;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

/* Corpo normal */
.resid-body{
  padding: 16px;
  transition: opacity .25s ease;
}

.resid-title{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.resid-city{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
}

.resid-pin{
  width: 16px;
}

/* BOTTOM (botão sempre visível) */
.resid-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.resid-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(90deg, #23B2D0 0%, #2354A3 100%);
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  position: relative;
  z-index: 3; /* fica acima do hover */
  white-space: nowrap;
}

.resid-btn-icon{
  width: 14px;
  filter: brightness(0) invert(1);
}

/* ==============================
   HOVER OVERLAY (não cobre botão)
   Requer HTML do hover no shortcode
================================ */
.resid-hover{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 56px; /* espaço p/ não cobrir o botão */
  background: #fff;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-rows: 140px 1fr;
  transition: opacity .25s ease;
  z-index: 2;
}

.resid-card:hover .resid-hover{
  opacity: 1;
}

.resid-card:hover .resid-img,
.resid-card:hover .resid-body{
  opacity: 0;
}

/* ==============================
   SLIDER AUTOMÁTICO (fade)
================================ */
.resid-hover-media{
  position: relative;
  overflow: hidden;
}

.resid-hover-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: residFade 12s infinite;
  image-rendering: -webkit-optimize-contrast;
}

/* até 3 imagens no ciclo (padrão) */
.resid-hover-slide:nth-child(1){ animation-delay: 0s; }
.resid-hover-slide:nth-child(2){ animation-delay: 4s; }
.resid-hover-slide:nth-child(3){ animation-delay: 8s; }

@keyframes residFade{
  0%{ opacity: 0; }
  8%{ opacity: 1; }
  30%{ opacity: 1; }
  38%{ opacity: 0; }
  100%{ opacity: 0; }
}

/* ==============================
   INFO EXTRA (hover)
================================ */
.resid-hover-info{
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resid-hover-desc{
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
  opacity: .9;
  max-height: 52px;
  overflow: hidden;
}

/* ==============================
   RESPONSIVO
================================ */
@media (max-width: 1024px){
  .resid-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .res-filters{
    grid-template-columns: 1fr;
  }
  .res-filter-btn{
    width: 100%;
  }
  .resid-grid{
    grid-template-columns: 1fr;
  }

  /* Mobile: sem hover */
  .resid-hover{
    display: none;
  }
}/* End custom CSS */