﻿


/* TITULOS AMIGABLES */

.tituloSeccion {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtituloSeccion {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 30px auto;
}


/* LISTAS MÁS VISUALES */

.friendlyList {
  list-style: none;
  padding-left: 0;
}

  .friendlyList li {
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
  }


/* SERVICIOS EXTRAS BOX */

.extrasBox {
  background: #f8fbfc;
  padding: 60px 20px;
  border-radius: 25px;
  margin-top: 40px;
}


/* INTRO GALERÍA */

.bloqueGaleriaIntro {
  background: #eef7f8;
  padding: 70px 20px;
  margin-top: 50px;
  border-radius: 25px;
}

.tituloGaleriaIntro {
  font-size: 30px;
  margin-bottom: 15px;
}

.textoGaleriaIntro {
  font-size: 19px;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

.btnGaleriaIntro {
  background: #79c8cc;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

  .btnGaleriaIntro:hover {
    background: #5bb3b8;
    color: white;
    text-decoration: none;
  }


/* ===== GALERIA ===== */

.galeria-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  -webkit-overflow-scrolling: touch;
}

  .galeria-slider img {
    flex: 0 0 100%;
    width: 100%;
    border-radius: 10px;
    scroll-snap-align: center;
  }

/* Desktop → varias visibles */
@media (min-width: 992px) {
  .galeria-slider img {
    flex: 0 0 60%;
  }
}

/* ocultar scrollbar */
.galeria-slider::-webkit-scrollbar {
  display: none;
}

/* ===== THUMBNAILS ===== */

.galeria-thumbs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-top: 15px;
}

  .galeria-thumbs img {
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    opacity: .6;
    transition: .3s;
  }

    .galeria-thumbs img.active,
    .galeria-thumbs img:hover {
      opacity: 1;
      transform: scale(1.05);
    }
.galeria-slide {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.galeria-slider img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #000; /* relleno elegante */
}

/*  .galeria-slide img {
    max-width: 100%;
    max-height: 100%;
  }*/

 /*MOVIL → ver completa */
@media (max-width:768px) {
  .galeria-slider img {
    object-fit: contain;
    height: 260px;
    background: #000;
  }
}

/* DESKTOP → más visual */
/*@media (min-width:769px) {
  .galeria-slider img {
    object-fit: cover;
    height: 420px;
  }
}*/