

/* settings */

header {
    position: relative;
}

body {
    opacity: 1;
    transition: all 0.8s ease-out; /* Transición en opacidad */
}

#logo {
    background: url("imágenes/Logo - solo.png");
    width: 40px;
    height: 40px;
    font-size: 0;
    position: absolute;
    z-index: 1;
    left: 0.75rem;
    top: .4rem;
}

.nav-link:hover {
    background-color: #D1D5DB;
    color: #010326;
    transition: all 0.3s ease-in-out;  
  }


@media screen and (max-width: 991px) {
    #logo {
        left: calc(50% - 20px);
    }
}

body {
  font-family: 'Geologica', sans-serif;
}

h1, h2 {
  font-family: 'Geologica', sans-serif;
  font-weight: 700; /* negrita */
  font-size: 48px;  /* Tamaño fijo */
}

h3 {
      font-family: 'Geologica', sans-serif;
  font-weight: 700; /* negrita */
  font-size: 38px;  /* Tamaño fijo */
}

p {
  font-family: 'Geologica', sans-serif;
  font-weight: 400; /* normal */
}

#texto-bold {
    font-weight: 700; /* negrita */
}

.ocultar {
  display: none; /* por defecto oculta (mobile) */
}


@media (min-width: 992px) {
  .ocultar {
    display: block; /* aparece en pantallas grandes */
  }
}


.ocultar-desktop {
    display: none;
}



@media (min-width: 1140px) {
  .ocultar-desktop {
    display: block; /* aparece en pantallas grandes */
  }
}





/* section hero */

.div-section1 {
    padding: 0 !important; /* Elimina el padding de la sección */
}

.hero-section {
    min-height: 10vh; /* 80% del alto del viewport (pantalla) */
}


.image-container {
    padding: 0 !important; /* Elimina el padding del contenedor de la imagen */
}

.hero-image {
    height: 100%;
    object-fit: cover; /* Ajusta la imagen para cubrir el contenedor */
    object-position: center; /* Centra la imagen */
}

/* fondos */

.fondo-verde {
    background: #3B533B
}

.fondo-arena-claro {
    background: #F4E9DC
}

.fondo-arena-oscuro {
    background: #E9C89D
}

.fondo-blanco {
    background: #fcfcfc;
}

.fondo-gris {
    background: #D1D5DB;
}

.fondo-negro {
    background: #0f1113;
}

/* colores */

.color-verde {
    color: #3B533B;
}

.color-arena-claro {
    color: #F4E9DC;
}

.color-arena-oscuro {
    color: #E9C89D;
}

.color-rojo {
    color: #A7442E;
}

.color-blanco {
    color: #fcfcfc;
}

.color-negro {
    color: #1F2937;
}

.color-gris { 
    color: #D1D5DB;
}

/* bordes */

.border-verde {
        border: 4px solid #3B533B
}

.border-1 {

    border: 2px solid #3B533B
}




/* Hovers*/

.btn:hover {
    background-color: #1c2c09;
    color: #fff;
    transition: all 0.3s ease-in-out; 
}




/* Carrusel horizontal de miniaturas */


.thumbs-carousel{position:relative;margin-top:24px}
.thumbs-viewport{
  overflow-x:auto;      /* scroll horizontal */
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  -ms-overflow-style:none;scrollbar-width:none
}
.thumbs-viewport::-webkit-scrollbar{display:none}

.thumbs-track{
  display:flex; gap:16px; padding:8px 56px;  /* espacio para las flechas */
  flex-wrap:nowrap; align-items:center;
}

.thumbs-item{flex:0 0 auto; scroll-snap-align:start}
.thumbs-item img{
  width:190px; height:140px; object-fit:cover; display:block;
  border-radius:16px
}

/* Flechas circulares */
.thumbs-arrow{
  position:absolute; top:50%; 
  transform:translateY(-50%);
  width:40px; height:40px; border-radius:50%; border:0;
  background:#3B533B; color:#fff; font-size:28px; line-height:40px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:2
}
.thumbs-prev{left:8px}
.thumbs-next{right:8px}
.thumbs-arrow[disabled]{opacity:.4; cursor:default; pointer-events:none}

/* Opcional: que el contenedor no crezca más de lo necesario */
@media (min-width:768px){
  .thumbs-viewport{border-radius:18px}
}





/* ===== LIGHTBOX ESTILOS ===== */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}


/* Botón de cerrar */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Botones de navegación */
.lightbox-nav {
    position: absolute;
    top: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #E9C89D;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);

}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Contador de imágenes */
.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #E9C89D;
    font-size: 1.1rem;
    background: #3B533B;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-nav {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
    }
    
    .lightbox-counter {
        bottom: 10px;
        font-size: 1rem;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-overlay[style*="flex"] .lightbox-container {
    animation: fadeIn 0.3s ease-out;
}







/* swiper reseñas*/




/* Posiciona las flechas fuera del contenedor */ 

.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    color: #3B533B; /* Color de las flechas (verde) */
    background-color: transparent; /* Fondo transparente */
}

/* Posiciona las flechas más allá del borde de las tarjetas */
.swiper-button-prev-class {
    left: -40px; /* Mueve la flecha izquierda hacia afuera */
}

.swiper-button-next-class {
    right: -40px; /* Mueve la flecha derecha hacia afuera */
}




/* ul*/
.ul-sinpuntos {
  list-style-type: none;
}


/* wsp flotante*/
 .whatsapp-flotante {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }

    .whatsapp-flotante img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .whatsapp-flotante img:hover {
        transform: scale(1.1);
    }


/* form*/

    #enviado {
    width: 300px;
    background-color: #3B533B ;
    color: #fff;
    padding: 1rem;
    position: fixed;
    left: calc(50% - 150px);
    top: 170px;
    display: none;
    border-radius: 10px;
  }

  #enviado:target {
    display: block;
  }



  .fancy-list {
  list-style: none; /* saca los bullets normales */
  padding-left: 1.2rem; /* separa un poco del borde */
  
}


.fancy-list li {
  margin-bottom: 0.5rem; /* separación entre ítems */
}




.fancy-list li::before {
  content: "🌿"; /* podés cambiarlo por emoji, ícono o forma */
  margin-right: 8px;
}