@import url("../style/style.css");

.agendamento {
    padding: 80px 20px;
    background: #f7faf7;
  }
  
  .agendamento-box {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
  }
  
  .agendamento-box h3 {
    color: #2f7d4c;
    margin-bottom: 16px;
  }
  
  .agendamento-box p {
    color: #555;
    margin-bottom: 24px;
  }
  
  .agendamento-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
  }
  
  .agendamento-steps li {
    margin-bottom: 12px;
    color: #444;
  }
  
  .agendamento-steps i {
    color: #2f7d4c;
    margin-right: 8px;
  }
  
  .agendamento-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-whatsapp,
  .btn-instagram {
    padding: 14px 22px;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  
  .btn-whatsapp {
    background: #25d366;
  }
  
  .btn-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  }
  
  .btn-whatsapp:hover,
  .btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
/*galeria*/

.galeria-slider {
  padding: 10px 20px;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  margin: 40px auto;
  overflow: hidden;
}

/* TRACK */
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform .4s ease;
}

/* ITEM QUADRADO FIXO */
.slide-item {
  width: 260px;          /* tamanho do quadrado */
  aspect-ratio: 1 / 1;  /* QUADRADO PERFEITO */
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* IMAGEM PREENCHE O QUADRADO */
.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* CORTA sem distorcer */
  display: block;
}

/* HOVER */
.slide-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

/* Botões */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100;
}

.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }

/* Mobile */
@media (max-width: 900px) {
  .slide-item {
    width: 200px;
  }
}

@media (max-width: 500px) {
  .slide-item {
    width: 160px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
