.carousel {
    position: relative;
    width: 100%;
    height: 545px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 3rem;
    box-sizing: border-box;
  }
  
  .carousel-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 8px;
    color: white;
    max-width: 400px;
    text-align: right;
  }
  
  .carousel-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .cta {
    background-color: #FFCE00;
    color: #111;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .cta:hover {
    background-color: #111;
    color: #FFCE00;

  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    z-index: 10;
    border-radius: 50%;
  }
  
  .carousel-btn.prev {
    left: 15px;
  }
  
  .carousel-btn.next {
    right: 15px;
  }
  
  .carousel-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .carousel-dots .dot {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.4;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .carousel-dots .dot.active {
    opacity: 1;
    transform: scale(1.2);
  }
  
  @media (max-width: 768px) {
    .carousel {
      height: 300px;
    }
  
    .carousel-slide {
      justify-content: center;
      padding: 2rem;
      text-align: center;
    }
  
    .carousel-content {
      text-align: center;
      max-width: 90%;
    }
  }
  #carritoBtnFlotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e91e63;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    display: none;
    z-index: 9999;
  }
  #carritoBtnFlotante.visible {
    display: block;
  }
  