  .bg-cover {
    background-size: cover;
  }
  .bg-center {
    background-position: center;
  }
  .text-brown {
    color: #6e3a1e;
  }
  .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
  }

#cendaCarousel {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* derecha */
  height: 80vh; /* ocupando 80% pantalla como pediste */
  position: relative;
}
  
.carousel-full {
  height: 80vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.carousel-item {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.text-brown {
  color: #6e3a1e;
}
.cenda-fixed-box {
  transform: translateY(-50%);
  z-index: 10;
  width: 360px;
  max-width: 95vw;
  padding: 2rem 0rem 1em 0;
  background-color: transparent; /* Fondo transparente por defecto */
  border-radius: 20px;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease; /* Transición suave */
}
 
.featured-image img {
  width: 100%;
  height: 550px;
  box-shadow: 0 0.5rem 1.2rem rgba(0,0,0,0.2);
  border-radius: 20px;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.95) contrast(1.05) saturate(1.1);
  transition: all 0.3s ease;
}

.featured-image img:hover {
  filter: brightness(1.05) contrast(1.1) saturate(1.2);
  transform: translateY(-4px);
}


.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
}

.carousel-item {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.carousel-item > * {
  position: relative;
  z-index: 2;
}

.bg-brown {
  background-color: #5e2a0c; /* o el color café que estés usando en el logo */
}

.social-card-fixed a > i {
    color: white;
    /* background-color: #6e3a1e; */
    border-radius: 50%;
    width: 2em;
    height: 2em;
    padding: 0.5em 0;
}


@media (max-width: 768px) {
  .cenda-fixed-box {
    top: auto;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
    width: 90%;
    padding: 1rem;
    text-align: center;
  }
}

@keyframes fadeInBox {
  to {
    opacity: 1;
  }
}

.carousel-indicators [data-bs-target] {
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: white;
  opacity: 0.6;
  border: none;
  transition: opacity 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: white;
}

 .social-card-fixed a:hover i {
  animation: tada 1s;
}
