html, body {
    visibility: visible;
  opacity: 1;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

 .js-loading body { opacity: 0; }
.packages-container, .entertainment-wrapper {
    width: 100%;
    box-sizing: border-box;
}
.pyme-main-color-bg {
    background-color: #7d199f;
}

.hero-sectionIPTV {
    position: relative;
    height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding: 0 5%; 
    overflow: hidden;
    background-color: #0c001a;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero-sectionIPTV::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../public/images/FONDO1.webp'); 
    background-size: cover;
    background-position: center right;
    z-index: 1;
}

.hero-sectionIPTV::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #7d199f 0%, rgba(125, 25, 159, 0.8) 30%, transparent 100%);
    z-index: 2;
}

.hero-contentIPTV {
    position: relative;
    z-index: 10;
    max-width: 600px;
    text-align: left; 
    margin-left: 0;
    margin-right: auto;
}


.hero-main-title {
    font-size: 4em;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 10px;
}

.hero-main-title span.internet-text {
    display: block;
    font-size: 0.8em;
    color: #bc19f0; 
    background-color: white; 
    display: inline-block;
    padding: 0 15px;
    border-radius: 5px;
    margin-top: 5px;
}

.hero-subtitle-small {
    font-size: 1.5em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
}

.hero-description {
    font-size: 1.1em;
    line-height: 1.5;
    color: white;
    margin-bottom: 30px;
}


.btn-more-info {
    display: inline-flex;
    align-items: center;
    background:  #F17016;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    gap: 15px;
    transition: transform 0.3s ease;
}

.btn-more-info .plus-icon {
    background: white;
    color: #F17016;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.btn-more-info:hover {
    transform: scale(1.05);
}


@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-contentIPTV > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-main-title { animation-delay: 0.2s; }
.hero-subtitle-small { animation-delay: 0.4s; }
.hero-description { animation-delay: 0.6s; }
.btn-more-info { animation-delay: 0.8s; }
.entertainment-section {

    background-color: #7d199f;
    border-radius: 20px;
    padding: 20px;
    color: white;
    max-width: 1000px;
    margin: 50px auto;
}

.entertainment-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.entertainment-content {
    flex: 1;
    max-width: 50%;
}

.entertainment-image-container {
    flex: 1;
    max-width: 50%;
    display: block;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.entertainment-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.entertainment-title {
    font-size: 3em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.entertainment-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.btn-channel-list {
    display: inline-flex;
    align-items: center;
    background-color: #F17016;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 10px;
}

.btn-channel-list i {
    margin-left: 10px;
    font-size: 1.2em;
}

.btn-channel-list:hover {
    background-color: #F17016;
    transform: scale(1.03);
}

.premium-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #030303 0%, #3e0b5a 60%, #5a166f 100%);
    color: #ffffff; 
    font-family: Arial, sans-serif;
    text-align: center;
}

.premium-header {
    margin-bottom: 40px;
}

.header-line {
    width: 60px;
    margin: 0 auto 10px;
    border: none;
    border-top: 3px solid #d130d1; 
}

.premium-header h1 {
    font-size: 1.2em;
    font-weight: 300;
    margin: 0;
}

.premium-header h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: -0.5px;
}


.packages-container {
    display: flex;
    justify-content: center;
    gap: 20px; 
    flex-wrap: wrap;
}

.package-card {
    width: 350px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}


.package-card:hover {
    transform: scale(1.05); 
    box-shadow: 0 10px 30px rgba(209, 48, 209, 0.6); 
}

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.hbo-image {
    background-color: #400d72; 
    background-image: url('../public/images/hbo2.webp');
    background-size: cover;
    background-position: center;
}

.venus-image {
    background-color: #090333; 
    background-image: url('../public/images/venus.webp');
    background-size: 100% 100%;
    background-position: center;
}


.package-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    height: 100%;
}

.hbo-card .package-info {
    background-color: #400d72; 
}

.venus-card .package-info {
    background-color: #090333; 
}

.package-info h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.package-info p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.4;
}

.more-info-btn {
    background-color: #F17016;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.more-info-btn:hover {
    background-color:  #F17016;
}


@media (max-width: 768px) {
    .packages-container {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 90%;
        max-width: 400px;
    }

    .premium-header h2 {
        font-size: 2em;
    }
}
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .hero-main-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .btn-main-info {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    
    
    .entertainment-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .entertainment-content,
    .entertainment-image-container {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .entertainment-content {
        order: 2;
    }

    .entertainment-image-container {
        order: 1;
    }
}

@media (max-width: 600px) {
    .entertainment-section {
        padding: 60px 15px;
    }

    .entertainment-title {
        font-size: 2.2em;
    }

    .entertainment-content {
        padding: 30px 20px;
    }
}



.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 8, 29, 0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

