/* Ajuste de ancla para que el navbar fijo no tape el título al hacer scroll con la flecha de la portada */
#cobertura { scroll-margin-top: 110px; }
#confian { scroll-margin-top: 110px; }

/*ICONOS*/

.icon-premium {
  font-size: 1.5rem;
  color: var(--color-blanco);
  padding: 20px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* sombra sutil */
}

.icon-premium:hover {
  transform: scale(1.2);
  color: var(--color-secundario); /* dorado suave al pasar mouse */
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.text-blanco {
  color: var(--color-blanco) !important;
}
.fw-light {
  font-weight: 300;
}


/*DESTINOS*/

#country-buttons {
  display: flex;
  flex-wrap: wrap; /* permite varias filas */
  justify-content: center;
  gap: 16px; /* espacio entre tarjetas */
  padding: 0;
}

.story-card {
  flex: 0 0 220px;  /* ancho fijo en desktop */
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
  transition: all 0.3s ease;
}

.story-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  pointer-events: none;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.story-card:hover img {
  filter: brightness(30%);
  transform: scale(1.05);
}

/* Móvil */
@media (max-width: 768px) {
  #country-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .story-card {
    width: 100%;
    height: 300px; /* altura fija en móvil para que todas las fotos llenen el contenedor */
    margin: 0 auto;
    position: relative; /* mantiene el span centrado */
  }

  .story-card img {
    width: 100%;
    height: 100%; /* cubre todo el contenedor */
    object-fit: cover; /* recorta si es necesario */
  }

  .story-card span {
    font-size: 18px;
  }
}


/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  #country-buttons {
    justify-content: center;
    gap: 16px;
  }

  .story-card {
    flex: 0 0 calc(50% - 8px); /* 2 tarjetas por fila */
    height: 450px;
    margin: 0;
  }

  .story-card img {
    height: 100%;
  }

  .story-card span {
    font-size: 20px;
  }
}



/*DIFERENCIALES*/

.diferenciales-section {
  position: relative;
  background: url('../images/destinos/iguazu/cataratas.webp') center/cover no-repeat;
  overflow: hidden;
}

.diferenciales-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* oscurece la imagen */
  z-index: 1;
}

.diferenciales-section .container {
  position: relative;
  z-index: 2; /* para que el contenido quede sobre el overlay */
}

.diferenciales-section .icon-premium {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--color-acento);
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.diferenciales-section .icon-premium:hover {
  transform: scale(1.2);
  color: var(--color-secundario);
  text-shadow: 0 0 10px rgba(255,255,255,0.7);
}


/*CONFÍAN EN NOSOTROS*/

.logo-confian {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px; /* altura uniforme para todos los contenedores */
}

.logo-confian img {
  max-height: 100%; /* hace que la imagen se adapte al alto del contenedor */
  width: auto;
  filter: grayscale(100%) brightness(90%);
  opacity: 0.7;
  transition: all 0.3s ease;
  object-fit: contain;
}

.logo-confian img:hover {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

/* Ajustes específicos por marca (si seguís necesitando afinarlos) */
.logo-confian-1 img {
  max-height: 48px; 
}

.logo-confian-2 img {
  max-height: 68px;
}

.logo-confian-3 img {
  max-height: 60px;
}

.logo-confian-4 img {
  max-height: 60px;
}

.logo-confian-5 img {
  max-height: 60px;
}


/*CÓMO TRABAJAMOS*/

.how-work-section {
  position: relative;
  background: url('../images/destinos/calafate/miradordeloscondoreschalten.webp') center/cover no-repeat;
  color: var(--color-blanco);
  overflow: hidden;
}

.how-work-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* oscurece la imagen */
  z-index: 1;
}

.how-work-section .container {
  position: relative;
  z-index: 2; /* para que el contenido esté sobre el overlay */
}

.how-work-section i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--color-acento);
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.how-work-section i:hover {
  transform: scale(1.2);
  color: var(--color-secundario);
  text-shadow: 0 0 10px rgba(255,255,255,0.7);
}



