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

.channel-bubble-container {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999999;
}

.tv-icon {
    width: 32px;
    height: 32px;
    color: white;
}


.channel-bubble {
    width: 60px;
    height: 60px;
    background: #6a1b9a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: pulse-ring 2s infinite, vibe 4s infinite;
}

.channel-bubble i {
    font-size: 24px;
}


.bubble-tooltip {
    position: absolute;
    left: 75px;
    background: white;
    color: #333;
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 14px;
    width: 170px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(-15px);
    animation: show-auto 3s ease-out 2s forwards;
}


.bubble-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}


@keyframes show-auto {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vibe {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(10deg); }
    94% { transform: rotate(-10deg); }
    96% { transform: rotate(10deg); }
    98% { transform: rotate(-10deg); }
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(106, 27, 154, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(106, 27, 154, 0); }
    100% { box-shadow: 0 0 0 0 rgba(106, 27, 154, 0); }
}


@media (max-width: 480px) {
    .bubble-tooltip {
        width: 140px;
        font-size: 12px;
        padding: 10px;
    }
}

.highlight-brush {
    position: relative;
    z-index: 1;
    white-space: nowrap;
    display: inline-block;
}

.highlight-brush::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: 5px;
    width: 110%;
    height: 40%;
    background-color: #bc00ff;
    z-index: -1;
    clip-path: polygon(0% 15%, 15% 0%, 85% 10%, 100% 5%,
            95% 85%, 80% 100%, 20% 90%, 0% 95%);
    transform: rotate(-1deg);
    opacity: 0.8;
}

.hero-slider {
    width: 100%;
    height: 750px;
    overflow: hidden;
    position: relative;
    background: #000;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
    position: relative;
}

.slide-content {
    max-width: 800px;
    z-index: 10;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content h1 span {
    color: #fff;
}

.price-mini {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 400;
    display: block;
}

.price-mini .highlight {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    vertical-align: middle;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.check-icon {
    font-size: 1rem;
    color: #fff;
    margin-top: 2px;
}

.btn-more-info {
    display: inline-flex;
    align-items: center;
    background-color: #F17016;
    color: white;
    padding: 8px 8px 8px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    text-transform: none;
    transition: all 0.3s ease;
}

.plus-icon {
    background: white;
    color: #bc00ff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 0;
    padding-bottom: 2px;
}

.btn-more-info:hover {
    background-color: #9900cf;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(188, 0, 255, 0.4);
}
/* Fuerza que el primer slide sea visible antes que el JS */
.slide:first-child .slide-content * {
    opacity: 1 !important;
    transform: none !important;
}

.slide-content h1,
.slide-content .price-mini,
.slide-content .features-list li,
.slide-content .btn-more-info {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.4s ease-out; 
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.05s; 
}

.slide.active .slide-content .price-mini {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s; 
}

.slide.active .slide-content .features-list li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s; 
}

.slide.active .slide-content .btn-more-info {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.35s; 
}

.dots-container {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #7d199f;
    width: 35px;
    border-radius: 10px;
}

.pyme-section-final {
    padding: 100px 0;
    position: relative;
    background-color: #250231;
    overflow: hidden;
}

.pyme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #3a0b4d, #250231);
    z-index: 1;
}

.content-on-top {
    position: relative;
    z-index: 2;
}

.light-text {
    color: white !important;
    text-align: center;
}

.card-btn:hover {
    transform: scale(1.1);
}

@keyframes float-sticker {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

.streaming-promo-section {
    position: relative;
    padding: 100px 20px;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    will-change: opacity;
    transform: translateZ(0);
}

.glow-purple {
    background: radial-gradient(circle, rgba(74, 16, 110, 0.2) 0%, rgba(74, 16, 110, 0) 70%);
    top: -200px;
    left: -150px;
}

.glow-orange {
    background: radial-gradient(circle, rgba(246, 160, 98, 0.2) 0%, rgba(246, 160, 98, 0) 70%);
    bottom: -200px;
    right: -100px;
}

.streaming-promo-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.promo-content {
    flex: 1.2;
}

.promo-title {
    font-size: 3rem;
    color: #4a106e;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -2px;
}

.promo-title span {
    color: #F17016;
    display: block;
}

.promo-subtitle {
    font-size: 1.4rem;
    color: #333333;
    margin-bottom: 50px;
    font-weight: 600;
    max-width: 550px;
    line-height: 1.4;
}

.feature-timeline {
    position: relative;
    padding-left: 20px;
    margin-bottom: 50px;
}

.feature-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 15px;
    bottom: 15px;
    width: 3px;
    background: #eeeeee;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(15px);
}

.timeline-icon {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border: 4px solid #33b62c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #33b62c;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(51, 182, 44, 0.3);
}

.timeline-text strong {
    display: block;
    font-size: 1.35rem;
    color: #4a106e;
    margin-bottom: 6px;
    font-weight: 800;
}

.timeline-text p {
    font-size: 1.1rem;
    color: #555555;
    font-weight: 500;
    margin: 0;
}

.promo-image-wrapper {
    flex: 1;
    position: relative;
}

.promo-img-featured {
    width: 100%;
    border-radius: 45px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
    display: block;
}

.floating-sticker {
    position: absolute;
    background: white;
    padding: 14px 24px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-sticker 6s infinite ease-in-out;
    z-index: 2;
}

.sticker-1 {
    top: 12%;
    left: -30px;
    color: #5f1170;
    animation-delay: 0s;
}

.sticker-2 {
    bottom: 25%;
    right: -30px;
    color: #F17016;
    animation-delay: 1s;
}

.btn-promo-main {
    display: inline-block;
    background: #F17016;
    color: #ffffff;
    padding: 22px 60px;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(241, 112, 22, 0.4);
    transition: all 0.3s ease;
}

.btn-promo-main:hover {
    background: #4a106e;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 45px rgba(74, 16, 110, 0.4);
}

.pyme-main-color {
    color: #7d199f;
}

.pyme-bg-image-section {
    position: relative;
}

.pyme-header-content {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.text-center {
    text-align: center;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.image-wrapper {
    position: relative;
    height: 170px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #7d199f;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-content {
    padding: 25px 20px;
    text-align: left;
}

.premium-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.premium-title small {
    font-size: 0.75rem;
    color: #7d199f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.premium-title span {
    font-size: 1.35rem;
    font-weight: 800;
    color: #250231;
    line-height: 1.2;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    height: 3em;
    overflow: hidden;
}

.card-link {
    color: #7d199f;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.card-link:hover {
    color: #4a106e;
    gap: 12px;
}

@media (max-width: 992px) {
    .services-info-section {
        min-height: auto;
        padding-top: 50px;
    }

    .hero-slider {
        margin-bottom: 50px;
    }

    .slide {
        height: 650px;
    }

    .slide-content h1 {
        font-size: 2.5em;
    }

    .overlay-cards {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 700px;
        margin-top: -150px;
        padding: 0 5%;
    }

    .content-text-button {
        flex-direction: column;
        height: auto;
        margin-top: 100px;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .text-content-wrapper {
        padding: 40px 30px;
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .image-content-wrapper {
        width: 100%;
        height: 300px;
        order: 2;
        border-radius: 0 0 10px 10px;
    }

    .content-text-button h2,
    .content-text-button p,
    .content-text-button a {
        max-width: 100%;
        text-align: center;
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .channels-section-wrapper {
        padding: 40px 0;
    }

    .channels-section .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .channel-logo {
        height: 50px;
    }

    .logos-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 550px;
    }

    .slide {
        padding: 0 7%;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .price-mini .highlight {
        font-size: 2.5rem;
    }

    .features-list li {
        font-size: 0.95rem;
    }

    .btn-more-info {
        padding: 6px 6px 6px 20px;
    }
}

@media (max-width: 576px) {
    .slide {
        height: 550px;
    }

    .slide-content h1 {
        font-size: 2em;
    }

    .image-content-wrapper {
        height: 250px;
    }

    .overlay-cards {
        padding: 0;
        margin-top: -100px;
    }

    .channel-logo {
        height: 40px;
    }
}

@media (max-width: 900px) {
    .promo-title {
        font-size: 2.8rem;
    }

    .streaming-promo-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pyme-section-final .promo-title {
        font-size: 2em;
    }
}

@media (max-width: 600px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        height: auto;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }

    .fixed-contact-buttons {
        bottom: 15px;
        right: 15px;
    }
}