.enlaces-cabezera:hover {
  text-shadow: 0 0 10px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255), 0 0 30px rgb(255, 255, 255);
}

/* Ocultar el navbar con una transición */
.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

/*///////////////////////////*/
/*Eperiencias                */
/*///////////////////////////*/
.hover-experiencias {
  transition: transform 2s ease, box-shadow 2s ease;
}

.hover-experiencias:hover {
  transform: scale(1.13);
  /* Aumenta ligeramente el tamaño */
  box-shadow: 25px 15px 25px rgba(22, 22, 22, 0.685);
  /* Sombra suave */
}

.rounded-circle {
  width: 330px;
  height: 330px;
  /*max-width: 480px;*/
  /*max-height: 480px;*/
  object-fit: cover;
  filter: brightness(0.8);
}

/* Asegúrate de que todas las tarjetas tienen la misma altura */
.col {
  display: flex;
  flex-direction: column;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  --bs-card-border-color: transparent;
  /* Elimina el color del borde */
  --bs-card-cap-bg: transparent;
  /* Elimina el color de fondo */
}

/* Permite que el contenedor de la tarjeta se estire */
.card-body {
  flex-grow: 1;
}

/*//////////////////////////////////////*/
/*//////////////////////////////////////*/
.contenedor-carousel {
  width: 700px;
  height: 700px;
  /* Imagen de fondo predeterminada */
  background-size: cover;
  /* Asegura que la imagen cubra todo el círculo */
  background-position: center;
  /* Centra la imagen dentro del círculo */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  z-index: 0;
  /* Color de texto en blanco para contraste */
  padding: 10px;
  overflow: hidden;

  transition: transform 2s ease, box-shadow 2s ease;
}

.contenedor-imagen-carousel {
  width: 600px;
  height: 700px;
  padding-top: 100px;
}

.img-experiencia {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 0;
  filter: brightness(0.8);
  filter: saturate(0.6);
  box-shadow: 0px 0px 30px rgba(126, 126, 126, 0.737);
}

.contenedor-carousel:hover {
  transform: scale(1.05);
  /* Aumenta ligeramente el tamaño */
  /* Sombra suave */
}

.carousel-indicators [data-bs-target] {
  background-color: #00000000;
}

.carousel-indicators .active {
  background-color: #513c3c00;
}

.circular-indicator {
  position: absolute;
  top: -600px;
  /* Ajusta la distancia desde el borde superior */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  /* Color del texto */
  font-size: 2rem;
  /* Tamaño del texto */
  font-weight: bold;
  z-index: 2;
  width: 300px;
  /* Asegura que esté por encima de las imágenes */
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
  /* Sombra para mejorar visibilidad */
}

.indicadores-experiencia {
  position: absolute;
  top: 50px;
  left: 35%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 100;
}

.descripcion-experiencia {
  position: absolute;
  top: -40px;
  z-index: 100;
  transform: translateX(-0%);
}

/* Transición más suave para el efecto fade */
.carousel.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  /* Ajusta la duración aquí */
}

.carousel.carousel-fade .carousel-item.active {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  /* Debe coincidir con la duración */
}

@media (max-width: 576px) {
  /* Para dispositivos móviles */
  .contenedor-carousel {
    width: 500px; /* Reduce el tamaño del círculo */
    height: 570px;
  }

  .contenedor-imagen-carousel {
    width: 400px;
    height: 570px;
    padding-top: 50px; /* Ajusta el padding si es necesario */
  }

  .img-experiencia {
    width: 360px; /* Ajusta el tamaño de la imagen */
    height: 360px;
  }

  .circular-indicator {
    top: -500px; /* Ajusta la posición del texto */
    font-size: 1.2rem; /* Reduce el tamaño del texto */
    width: 200px; /* Ajusta el ancho del texto */
  }

  .descripcion-experiencia {
    top: -70px;
  }

  .contenedor-carousel:hover {
    transform: scale(1.01);
    /* Aumenta ligeramente el tamaño */
    /* Sombra suave */
  }
}

/*////////////////////*/
/* Redes sociales     */
/*////////////////////*/
.socials-container {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 20px 40px;
  background-color: #3a3a3a48;
  border-radius: 25px;
}

.social {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgb(194, 194, 194);
}

.twitter:hover {
  background: linear-gradient(45deg, #667f70, #00ee9b, #36ff8a, #edffdb);
}

.facebook:hover {
  background: linear-gradient(45deg, #134ac0, #316ff6, #78a3ff);
}

.google-plus:hover {
  background: linear-gradient(45deg, #871952, #db3961, #61ddff);
}

.instagram:hover {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.social svg {
  fill: white;
  height: 13px;
}

/*/////////////////////////////////////////////////////////////*/
.fondo-gradiente-original {
  background: rgb(227, 225, 225);
  background: radial-gradient(
    circle,
    rgba(227, 225, 225, 1) 0%,
    rgba(219, 219, 219, 1) 30%,
    rgba(221, 221, 221, 1) 73%,
    rgba(232, 232, 232, 1) 98%
  );
}

.fondo-gradiente-propuesta {
  background: rgb(196, 196, 196);
  background: linear-gradient(
    295deg,
    rgba(196, 196, 196, 1) 4%,
    rgba(157, 157, 157, 1) 38%,
    rgba(218, 218, 218, 1) 79%,
    rgba(190, 188, 188, 1) 100%
  );
}

.fondo-gradiente-propuesta-radial {
  background: rgb(226, 226, 226);
  background: radial-gradient(
    circle,
    rgba(226, 226, 226, 1) 7%,
    rgba(207, 207, 207, 1) 35%,
    rgba(213, 213, 213, 1) 79%,
    rgba(210, 210, 210, 1) 100%
  );
}

.fondo-cliente {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 3%,
    rgba(124, 124, 124, 1) 41%,
    rgba(255, 255, 255, 1) 100%
  );
}

.fondo-cliente-propuesta {
  background: rgb(255, 255, 255);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgb(31, 31, 31) 0%,
    rgb(11, 11, 11) 31%,
    rgba(0, 0, 0, 1) 52%
  );
}

/* Toast Carrito */
.toast-body-carrito {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
}

.toast-carrito {
  width: 400px;
  max-width: 100%;
  padding: 0.5rem;
  background-color: black;
  border: none;
  box-shadow: none;
}

.input-cantidad-carrito {
  background-color: transparent;
}

.carrito-lateral {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Personalización de la barra de scroll */
.carrito-lateral::-webkit-scrollbar {
  width: 6px;
  /* Ancho de la barra de scroll */
}

.carrito-lateral::-webkit-scrollbar-thumb {
  background-color: #888;
  /* Color del scroll */
  border-radius: 10px;
  /* Bordes redondeados */
}

.carrito-lateral::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Color cuando el scroll está activo */
}

.carrito-lateral::-webkit-scrollbar-track {
  background: transparent;
  /* Fondo transparente */
}

.carrito-lateral::-webkit-scrollbar-button {
  display: none;
  /* Oculta las flechas */
}
hr {
  border: solid rgb(255, 255, 255) !important;
  opacity: 1 !important;
  margin: 0px !important;
  padding: 0px !important;
}


/*//////////////////////////////////////*/
/* NAV BAR MOVIL                        */
/*//////////////////////////////////////*/
/* Suaviza la transición del navbar */
#navbarSupportedContentMovil {
  transition: height 0.0s ease, opacity 0.0s ease;
}

#navbarSupportedContentMovil .collapse:not(.show) {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

#navbarSupportedContentMovil .collapse.show {
  height: auto;
  opacity: 1;
}

.fondo-navbar-movil {
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6498248957786239) 60%, rgba(0, 0, 0, 0) 100%);
}

.fondo-navbar-movil-collapse-open {
  background: rgba(0, 0, 0, 1);
}

.vermas-producto {
  width: 140px;
}

.vermas-producto:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
  transition: background-color 0.8s !important;
}