
    .hero-peliculas {
        position: relative;
        min-height: 70vh;
        overflow: hidden;
        background: #0f172a;
    }
    
    .hero-peliculas .SwiperHero {
        height: 70vh;
    }
    
    .hero-peliculas .swiper-slide {
        display: flex;
        align-items: center;
    }

    .hero-peliculas .swiper-pagination-bullet {
        background-color: #1e293b !important;
        border-radius: 6px !important;
        opacity: 0.7 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        border: 3px solid transparent !important;
        position: relative !important;
        overflow: hidden !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        display: inline-block !important;
        visibility: visible !important;
    }
    
    .hero-peliculas .swiper-pagination-bullet img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 0 !important;
    }
    
    .hero-peliculas .swiper-pagination-bullet::after {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.4) !important;
        transition: all 0.3s ease !important;
        z-index: 1 !important;
    }
    
    .hero-peliculas .swiper-pagination-bullet-active {
        opacity: 1 !important;
        border-color: #7c3aed !important;
        transform: scale(1.1) !important;
    }
    
    .hero-peliculas .swiper-pagination-bullet-active::after {
        background: transparent !important;
    }
    
    .hero-peliculas .swiper-pagination-bullet:hover {
        opacity: 1 !important;
        transform: scale(1.05) !important;
    }
    
    .hero-peliculas .swiper-button-next,
    .hero-peliculas .swiper-button-prev {
        color: #fff;
        background: rgba(0, 0, 0, 0.5);
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    
    .hero-peliculas .swiper-button-next:hover,
    .hero-peliculas .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .hero-peliculas .swiper-button-next:after,
    .hero-peliculas .swiper-button-prev:after {
        font-size: 24px;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    
    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            rgba(15, 23, 42, 0.95) 0%, 
            rgba(30, 41, 59, 0.85) 40%,
            rgba(251, 146, 60, 0.3) 100%
        );
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 650px;
    }
    
    .hero-thumbnails-bar {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 1) 100%);
        padding: 30px 0;
        margin-top: -50px;
        position: relative;
        z-index: 10;
    }
    
    .hero-peliculas .swiper-pagination {
        position: static !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .hero-peliculas .swiper-pagination-bullet {
        width: 120px !important;
        height: 70px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-color: #1e293b !important;
        border-radius: 6px !important;
        opacity: 0.8;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        border: 3px solid transparent !important;
        position: relative !important;
        overflow: hidden !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-imdb {
        background: #f5c518;
        color: #000;
        padding: 0.4rem 0.8rem;
        border-radius: 0.25rem;
        font-weight: 700;
        font-size: 0.875rem;
    }
    
    .badge-rating {
        background: #374151;
        color: #fff;
        padding: 0.4rem 0.8rem;
        border-radius: 0.25rem;
        font-weight: 600;
        font-size: 0.875rem;
        border: 1px solid #4b5563;
    }
    
    .hero-genres {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .genre-tag {
        background: rgba(30, 41, 59, 0.6);
        color: #fff;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        border: 1px solid rgba(71, 85, 105, 0.6);
    }
    
    .hero-description {
        color: #e5e7eb;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 600px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn-primary-hero {
        display: inline-flex;
        align-items: center;
        padding: 0.875rem 2rem;
        background: linear-gradient(122deg, #FF00F4 0%, #BD00E8 100%);
        color: #fff;
        font-weight: 600;
        border-radius: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(41, 18, 80, 0.4);
    }
    
    .btn-primary-hero:hover {
        background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
        transform: scale(1.05);
        color: #fff;
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
    }
    
    .btn-secondary-hero {
        display: inline-flex;
        align-items: center;
        padding: 0.875rem 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: #fff;
        font-weight: 600;
        border-radius: 0.5rem;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .btn-secondary-hero:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
    
    .btn-icon {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.5rem;
    }
    
    .peliculas-section {
        background: #0f172a;
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.875rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1.5rem;
    }
    
    .horizontal--slider {
        position: relative;
        overflow: hidden;
    }
    
    .horizontal--slider .swiper {
        padding: 0 50px;
        overflow: visible;
    }
    
    .horizontal--slider .swiper-wrapper {
        display: flex;
    }
    
    .horizontal--slider .swiper-slide {
        width: auto;
        flex-shrink: 0;
    }
    
    @media (max-width: 479px) {
        .horizontal--slider .swiper-slide {
            width: calc((100% - 50px - 15px) / 2);
        }
    }
    
    @media (min-width: 480px) and (max-width: 639px) {
        .horizontal--slider .swiper-slide {
            width: calc((100% - 100px - 15px) / 2);
        }
    }
    
    @media (min-width: 640px) and (max-width: 767px) {
        .horizontal--slider .swiper-slide {
            width: calc((100% - 100px - 30px) / 3);
        }
    }
    
    @media (min-width: 768px) and (max-width: 1023px) {
        .horizontal--slider .swiper-slide {
            width: calc((100% - 100px - 60px) / 4);
        }
    }
    
    @media (min-width: 1024px) and (max-width: 1279px) {
        .horizontal--slider .swiper-slide {
            width: calc((100% - 100px - 80px) / 5);
        }
    }
    
    @media (min-width: 1280px) {
        .horizontal--slider .swiper-slide {
            width: calc((100% - 100px - 100px) / 6);
        }
    }
    
    .horizontal--slider .swiper-button-next,
    .horizontal--slider .swiper-button-prev {
        color: #fff;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .horizontal--slider .swiper-button-next:after,
    .horizontal--slider .swiper-button-prev:after {
        font-size: 20px;
    }
    
    .horizontal--slider .swiper-button-next:hover,
    .horizontal--slider .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .movie-card {
        display: block;
        width: 100%;
        border-radius: 0.5rem;
        overflow: hidden;
        background: #1e293b;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        transition: box-shadow 0.2s ease;
        cursor: pointer;
        text-decoration: none;
    }
    
    .movie-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }
    
    .movie-poster {
        position: relative;
        width: 100%;
        aspect-ratio: 2/3;
        background: #334155;
        overflow: hidden;
    }
    
    .movie-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .movie-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
        opacity: 0;
        transition: opacity 0.2s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1rem;
        will-change: opacity;
    }
    
    .movie-card:hover .movie-overlay {
        opacity: 1;
    }
    
    .movie-overlay-title {
        color: #fff;
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .play-icon {
        width: 2rem;
        height: 2rem;
        background: #7c3aed;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }
    
    .movie-title-mobile {
        padding: 0.75rem;
        color: #fff;
        font-size: 0.875rem;
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-description {
            font-size: 1rem;
        }
        
        .hero-peliculas .swiper-pagination-bullet {
            width: 80px;
            height: 50px;
        }
        
        .hero-peliculas .swiper-pagination {
            gap: 6px;
            padding: 0 10px;
        }
        
        .movie-card {
            width: 180px;
        }
        
        .section-title {
            font-size: 1.5rem;
        }
        
        .movie-title-mobile {
            display: block;
        }
    }
    
    @media (min-width: 769px) {
        .movie-title-mobile {
            display: none;
        }
    }

    @media (max-width: 991px) {
        .swiper-button-next,
        .swiper-button-prev {
            display: none !important;
        }
        .hero-peliculas .swiper-pagination-bullet {
            width: 12px !important;
            height: 12px !important;
            border-radius: 50% !important;
            background-color: rgba(255, 255, 255, 0.5) !important;
            opacity: 1 !important;
            border: none !important;
        }
        
        .hero-peliculas .swiper-pagination-bullet-active {
            background-color: #FF00F4 !important; 
        }
        
        .hero-peliculas .swiper-pagination-bullet img,
        .hero-peliculas .swiper-pagination-bullet::after {
            display: none !important;
        }
        
        .hero-thumbnails-bar {
            padding: 20px 0;
        }
    }

    @media (min-width: 992px) {
        .swiper-pagination-bullet > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
