 /* Estilos para el carrusel con imágenes */
    .offers-section {
      padding: 3rem 1rem;
      background-color: #f9f5f0;
      text-align: center;
    }
    
    .offers-section h2 {
      color: #8B4513;
      margin-bottom: 2.5rem;
      font-size: 2.2rem;
      position: relative;
      display: inline-block;
    }
    
    .offers-section h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background-color: #D2691E;
    }
    
    .carousel-container {
      max-width: 800px; /* Más angosto */
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
    }
    
    .carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: auto; /* Altura automática según la imagen */
      aspect-ratio: 16/9; /* Proporción más panorámica/angosta */
    }
    
    .carousel-slide {
      min-width: 100%;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .carousel-image {
      width: 100%;
      height: 100%;
      object-fit: contain; /* Muestra la imagen completa sin recortar */
      display: block;
    }
    
    /* Overlay mejorado */
    .image-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 700px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
      backdrop-filter: blur(5px);
      border: 2px solid rgba(255, 215, 0, 0.3);
    }
    
    .image-title {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      color: #FFD700;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .image-subtitle {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: #ffffff;
      font-weight: 500;
    }
    
    .image-price {
      font-size: 2.5rem;
      font-weight: bold;
      color: #FFD700;
      margin: 0.8rem 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .image-discount {
      display: inline-block;
      background-color: #8B4513;
      color: white;
      padding: 0.4rem 1.2rem;
      border-radius: 20px;
      font-size: 1rem;
      margin: 0.5rem 0;
      border: 1px solid #FFD700;
    }
    
    .image-desc {
      font-size: 1.1rem;
      margin: 0.5rem 0;
      color: #f0f0f0;
      line-height: 1.5;
    }
    
    .image-details {
      background-color: rgba(139, 69, 19, 0.8);
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      margin: 1rem 0;
      border-left: 3px solid #FFD700;
    }
    
    .image-cta {
      display: inline-block;
      background-color: #FFD700;
      color: #8B4513;
      padding: 0.8rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      margin-top: 1.2rem;
      transition: all 0.3s ease;
      border: 2px solid #8B4513;
    }
    
    .image-cta:hover {
      background-color: #8B4513;
      color: #FFD700;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .image-time {
      color: #FFD700;
      font-weight: 600;
      margin-top: 1rem;
      padding-top: 0.8rem;
      border-top: 1px dashed rgba(255, 255, 255, 0.2);
      font-size: 1rem;
    }
    
    /* Botones de navegación más discretos */
    .carousel-buttons {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 1rem;
      pointer-events: none;
      z-index: 10;
    }
    
    .carousel-btn {
      background-color: rgba(139, 69, 19, 0.8);
      color: white;
      border: none;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      pointer-events: all;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-btn:hover {
      background-color: #8B4513;
      transform: scale(1.1);
    }
    
    /* Puntos indicadores */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.6rem;
      margin-top: 1.5rem;
    }
    
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid #8B4513;
    }
    
    .dot.active {
      background-color: #8B4513;
      transform: scale(1.2);
    }
    
    /* Barra de progreso */
    .progress-bar {
      width: 100%;
      height: 4px;
      background-color: rgba(221, 221, 221, 0.3);
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 5;
    }
    
    .progress {
      height: 100%;
      background-color: #FFD700;
      width: 0%;
      transition: width 0.1s linear;
    }
    
    /* Contador de slides */
    .slide-counter {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.8rem;
      z-index: 5;
    }
    
    /* Ajustes para imágenes con texto incluido (si tus banners ya tienen todo el texto) */
    .text-banner .carousel-image {
      object-fit: contain; /* Muestra el banner completo con su texto */
    }
    
    .text-banner .image-overlay {
      display: none; /* Oculta el overlay si la imagen ya tiene texto */
    }
    
    /* Responsive */
    @media (max-width: 850px) {
      .carousel-container {
        max-width: 95%;
      }
      
      .carousel {
        aspect-ratio: 16/10;
      }
      
      .image-overlay {
        padding: 1.5rem;
        width: 95%;
      }
      
      .image-title {
        font-size: 1.7rem;
      }
      
      .image-price {
        font-size: 2rem;
      }
      
      .image-desc {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 600px) {
      .carousel {
        aspect-ratio: 16/12;
      }
      
      .image-overlay {
        padding: 1.2rem;
      }
      
      .image-title {
        font-size: 1.4rem;
      }
      
      .image-price {
        font-size: 1.8rem;
      }
      
      .image-cta {
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
      }
      
      .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
      }
      
      .offers-section h2 {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 400px) {
      .carousel {
        aspect-ratio: 16/14;
      }
      
      .image-overlay {
        padding: 1rem;
      }
      
      .image-title {
        font-size: 1.2rem;
      }
      
      .image-price {
        font-size: 1.5rem;
      }
      
      .image-desc {
        font-size: 0.9rem;
      }
      
      .image-cta {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
      }
    }