body{
  margin:0;
  overflow-x:hidden;
}

/* SECTION */
.birthday-section{
  background: linear-gradient(to bottom,#041926,#062739);
  padding:70px 20px;
}

/* TOPO */
.birthday-top{
  text-align:center;
  max-width:760px;
  margin:0 auto 40px;
}

.birthday-top span{
  color:#18d3df;
  font-size:12px;
  font-weight:700;
  letter-spacing:3px;
}

.birthday-top h2{
  margin-top:12px;
  font-size:52px;
  line-height:1;
  font-weight:800;
}

.birthday-top h2 strong{
  display:block;
  color:#18d3df;
}

.birthday-top p{
  margin-top:18px;
  color:#c7dce6;
  font-size:12px;
  line-height:1.5;
}

/* LAYOUT 60 / 40 */
.birthday-layout{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns: 60% 40%;
  gap:20px;

  align-items:start;
}

/* IMAGEM */
.birthday-banner{
  position:relative;
  width:100%;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.28);

  aspect-ratio: 3 / 4;
  max-height:600px;
}

.birthday-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* BADGE */
.birthday-badge{
  position:absolute;
  top:15px;
  right:15px;

  background:#18d3df;
  color:#001820;

  padding:8px 12px;
  border-radius:999px;

  font-weight:700;
  font-size:12px;
  z-index:5;
}

/* OVERLAY */
.birthday-overlay{
  position:absolute;
  inset:0;

  display:flex;
  align-items:flex-end;

  padding:20px;

  background:linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

.overlay-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;

  max-width:260px;
}

.overlay-list li{
  font-size:12px;
  color:#fff;

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);

  padding:8px 10px;
  border-radius:10px;
}

/* WRAPPER DO CARROSSEL */
.birthday-prices-wrapper{
  width:100%;
  overflow:hidden;
}

/* CARROSSEL */
.birthday-card.prices{
  display:flex;
  gap:12px;

  overflow-x:auto;
  overflow-y:hidden;

  width:100%;
  max-width:100%;

  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

/* esconder scrollbar */
.birthday-card.prices::-webkit-scrollbar{
  display:none;
}

.price-item{
  flex:0 0 auto;
  min-width:160px;
  padding:16px;
  border-radius:16px;

  background:rgba(255,255,255,.04);
  border:1px solid transparent;

  color:inherit;
  cursor:pointer;
  font-family:inherit;
  text-align:left;

  scroll-snap-align:center;
  transition:.25s ease;
}

.price-item:hover,
.price-item.active{
  background:rgba(24,211,223,.14);
  border-color:rgba(24,211,223,.55);
  box-shadow:
    0 0 0 1px rgba(24,211,223,.25),
    0 16px 32px rgba(0,0,0,.18);
}

.price-item:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
}

.price-item strong{
  display:block;
  color:#18d3df;
  font-size:20px;
  font-weight:800;
}

.price-item span{
  color:#d5e8f0;
  font-size:12px;
}

.birthday-booking-box{
  margin-top:16px;
  padding:16px;
  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
}

.birthday-booking-box span{
  display:block;
  color:#9edce5;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.birthday-booking-box strong{
  display:block;
  margin-top:5px;
  color:#fff;
  font-size:16px;
  line-height:1.3;
}

.birthday-hire-btn{
  min-height:50px;
  padding:0 18px;
  border:0;
  border-radius:999px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  background:linear-gradient(135deg,#18d3df,#1ad7aa);
  color:#041926;

  cursor:pointer;
  font-family:inherit;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;

  box-shadow:0 16px 35px rgba(24,211,223,.22);
  transition:.25s ease;
}

.birthday-hire-btn:hover{
  transform:translateY(-2px);
}

.birthday-hire-btn:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
}

/* NOTE */
.birthday-note{
  text-align:center;
  margin-top:25px;
  color:#cde2eb;
  font-size:12px;
}

/* 📱 RESPONSIVO */
@media(max-width:900px){

  .birthday-layout{
    grid-template-columns:1fr;
  }

  .birthday-banner{
    max-height:450px;
  }

  .birthday-top h2{
    font-size:34px;
  }
}

/* 📱 MOBILE */
@media(max-width:600px){

  .birthday-banner{
    aspect-ratio: 3 / 4;
    height:auto;
    max-height:360px;
  }

  .price-item{
    min-width:140px;
  }

  .birthday-booking-box{
    align-items:stretch;
    flex-direction:column;
  }

  .birthday-hire-btn{
    width:100%;
  }
}
