/* Estilos para la sección de Internet */
.internet-section {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    overflow: hidden;
}

/* Partículas decorativas */
.internet-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.internet-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(8px);
    z-index: 1;
}

.p1 {
    width: 15px;
    height: 15px;
    top: 15%;
    left: 10%;
    animation: floatParticle 20s ease-in-out infinite;
}

.p2 {
    width: 25px;
    height: 25px;
    top: 60%;
    left: 5%;
    animation: floatParticle 25s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.p3 {
    width: 10px;
    height: 10px;
    top: 30%;
    left: 30%;
    animation: floatParticle 18s ease-in-out infinite;
    animation-delay: 1s;
}

.p4 {
    width: 20px;
    height: 20px;
    top: 70%;
    left: 40%;
    animation: floatParticle 22s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.p5 {
    width: 15px;
    height: 15px;
    top: 20%;
    right: 15%;
    animation: floatParticle 24s ease-in-out infinite;
    animation-delay: 2.5s;
}

.p6 {
    width: 30px;
    height: 30px;
    top: 65%;
    right: 10%;
    animation: floatParticle 28s ease-in-out infinite reverse;
    animation-delay: 1.5s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(0, -60px);
    }
    75% {
        transform: translate(-30px, -30px);
    }
}

/* Líneas de cuadrícula */
.internet-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(160, 244, 42, 0.1), transparent);
    opacity: 0.2;
}

.horizontal {
    width: 100%;
    height: 1px;
    left: 0;
}

.vertical {
    width: 1px;
    height: 100%;
    top: 0;
}

.h1 {
    top: 25%;
    animation: pulseGridLine 8s ease-in-out infinite;
}

.h2 {
    top: 50%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 2s;
}

.h3 {
    top: 75%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 4s;
}

.v1 {
    left: 25%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 1s;
}

.v2 {
    left: 50%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 3s;
}

.v3 {
    left: 75%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes pulseGridLine {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Orbe de brillo */
.internet-glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 244, 42, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    animation: pulseOrb 10s ease-in-out infinite;
}

@keyframes pulseOrb {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

/* Contenido de Internet */
.internet-content {
    position: relative;
    z-index: 2;
    padding: 5rem;
}

.internet-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(160, 244, 42, 0.1);
    border: 1px solid rgba(160, 244, 42, 0.3);
    border-radius: 7.5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.internet-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 244, 42, 0.3), transparent);
    animation: badgeShine 3s linear infinite;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.internet-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.internet-title .highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.internet-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.internet-content:hover .highlight-text::after {
    transform: scaleX(1);
}

.internet-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Características de Internet */
.internet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.internet-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.internet-content.active .internet-feature:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.internet-content.active .internet-feature:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.internet-content.active .internet-feature:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.internet-content.active .internet-feature:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.feature-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(160, 244, 42, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.internet-feature:hover .icon-pulse {
    animation: iconPulse 1.5s ease-out infinite;
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA de Internet */
.internet-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.internet-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(160, 244, 42, 0.3);
    transition: all 0.3s ease;
}

.internet-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(160, 244, 42, 0.4);
}

.button-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.button-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.internet-button:hover .button-particles span {
    opacity: 1;
    animation: particleAnimation 1s ease-out infinite;
}

.button-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0.1s;
}

.button-particles span:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 0.3s;
}

.button-particles span:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: 0.5s;
}

.button-particles span:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: 0.7s;
}

.button-particles span:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 0.9s;
}

@keyframes particleAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
        opacity: 0.5;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Dispositivos compatibles */
.internet-devices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 10px;
}

.devices-icons {
    display: flex;
    gap: 1.8rem;
}

.devices-icons i {
    font-size: 1.8rem;
    color: rgb(255, 255, 255);
    transition: all 0.35s ease-out;
}

.devices-icons i:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.devices-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.856);
}

/* Visual de Internet */
.internet-visual {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-top: 160px;
}

.internet-video {
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
    transition: all 0.5s ease;
}

.internet-overlay {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Indicador de velocidad */
.speed-indicator {
    position: absolute;
    bottom: -12.5px;
    right: 65px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.speed-dial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(160, 244, 42, 0.3);
    box-shadow: 0 0 20px rgba(160, 244, 42, 0.2);
}

.speed-dial::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 1px solid rgba(160, 244, 42, 0.2);
}

#speed-number {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    z-index: 4;
}

.speed-unit {
    font-size: 1.5rem;
    margin-left: 5px;
    color: rgb(255, 255, 255);
}

.speed-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .internet-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .speed-indicator {
        bottom: 30px;
        right: 30px;
        width: 150px;
        height: 150px;
    }
    
    .speed-meter {
        width: 120px;
        height: 120px;
    }
    
    #speed-number {
        font-size: 2rem;
    }
    
    .speed-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .internet-content {
        padding: 3rem 2rem;
    }
    
    .internet-title {
        text-align: center;
    }
    
    .internet-description {
        text-align: center;
    }
    
    .internet-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .internet-cta {
        align-items: center;
    }
    
    .speed-indicator {
        bottom: 20px;
        right: 20px;
        width: 120px;
        height: 120px;
    }
    
    .speed-meter {
        width: 100px;
        height: 100px;
    }
    
    #speed-number {
        font-size: 1.8rem;
    }
    
    .speed-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .internet-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .internet-title {
        font-size: 2rem;
    }
    
    .internet-description {
        font-size: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .internet-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .speed-indicator {
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
    
    .speed-meter {
        width: 80px;
        height: 80px;
    }
    
    #speed-number {
        font-size: 1.5rem;
    }
    
    .speed-unit {
        font-size: 0.8rem;
    }
    
    .speed-label {
        font-size: 0.7rem;
    }
}


/* Estilos para la sección de TV Digital */
.tv-section {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    overflow: hidden;
}

/* Partículas decorativas */
.tv-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tv-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(8px);
    z-index: 1;
    margin-top: 90px;
}

.tv-visual {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-top: 150px;
}

.tv-section .p1 {
    width: 15px;
    height: 15px;
    top: 15%;
    left: 10%;
    background-color: var(--primary-color);
    animation: floatParticle 20s ease-in-out infinite;
}

.tv-section .p2 {
    width: 25px;
    height: 25px;
    top: 60%;
    left: 5%;
    background-color: var(--secondary-color);
    animation: floatParticle 25s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.tv-section .p3 {
    width: 10px;
    height: 10px;
    top: 30%;
    left: 30%;
    background-color: var(--primary-color);
    animation: floatParticle 18s ease-in-out infinite;
    animation-delay: 1s;
}

.tv-section .p4 {
    width: 20px;
    height: 20px;
    top: 70%;
    left: 40%;
    background-color: var(--secondary-color);
    animation: floatParticle 22s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.tv-section .p5 {
    width: 15px;
    height: 15px;
    top: 20%;
    right: 15%;
    background-color: var(--primary-color);
    animation: floatParticle 24s ease-in-out infinite;
    animation-delay: 2.5s;
}

.tv-section .p6 {
    width: 30px;
    height: 30px;
    top: 65%;
    right: 10%;
    background-color: var(--secondary-color);
    animation: floatParticle 28s ease-in-out infinite reverse;
    animation-delay: 1.5s;
}

/* Líneas de cuadrícula */
.tv-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tv-section .grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(160, 244, 42, 0.1), transparent);
    opacity: 0.2;
}

.tv-section .horizontal {
    width: 100%;
    height: 1px;
    left: 0;
}

.tv-section .vertical {
    width: 1px;
    height: 100%;
    top: 0;
}

.tv-section .h1 {
    top: 25%;
    animation: pulseGridLine 8s ease-in-out infinite;
}

.tv-section .h2 {
    top: 50%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 2s;
}

.tv-section .h3 {
    top: 75%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 4s;
}

.tv-section .v1 {
    left: 25%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 1s;
}

.tv-section .v2 {
    left: 50%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 3s;
}

.tv-section .v3 {
    left: 75%;
    animation: pulseGridLine 8s ease-in-out infinite;
    animation-delay: 5s;
}

/* Orbe de brillo */
.tv-glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 244, 42, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    animation: pulseOrb 10s ease-in-out infinite;
}

/* Video de TV */
.tv-visual {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    height: 1010px;
    margin-top: 65px;
    transition: all 0.5s ease;
}

.tv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
    transition: all 0.5s ease;
}

.tv-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Canales flotantes */
.channel-previews {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10% 0;
}

.channel-tag {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 7.5px;
    padding: 8px 15px;
    margin-left: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--primary-color);
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInTag 0.5s ease-out forwards;
}

.channel-tag:nth-child(1) {
    animation-delay: 1s;
}

.channel-tag:nth-child(2) {
    animation-delay: 2s;
}

.channel-tag:nth-child(3) {
    animation-delay: 3s;
}

@keyframes slideInTag {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.channel-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.channel-icon i {
    color: #000;
    font-size: 0.9rem;
}

.channel-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contenido de TV */
.tv-content {
    position: relative;
    z-index: 2;
    padding: 5rem;
}

.tv-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(160, 244, 42, 0.1);
    border: 1px solid rgba(160, 244, 42, 0.3);
    border-radius: 7.5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.tv-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 244, 42, 0.3), transparent);
    animation: badgeShine 3s linear infinite;
}

.tv-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tv-title .highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.tv-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.tv-content:hover .highlight-text::after {
    transform: scaleX(1);
}

.tv-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Características de TV */
.tv-features {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.tv-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 7.5px;
    padding: 0.5rem;
    border: 1px solid rgba(160, 244, 42, 0.1);
}

.tv-content.active .tv-feature:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.tv-content.active .tv-feature:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.tv-content.active .tv-feature:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.tv-content.active .tv-feature:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.tv-feature:hover {
    background: rgba(160, 244, 42, 0.05);
    border-color: rgba(160, 244, 42, 0.2);
    transform: translateY(-5px);
}

.tv-section .feature-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 25px;
}

.tv-section .feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 2;
    margin-top: 25px;
}

.tv-section .icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(160, 244, 42, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.tv-feature:hover .icon-pulse {
    animation: iconPulse 1.5s ease-out infinite;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0rem;
    color: #fff;
    margin-top: 25px;
}

.feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Contador de canales */
.channel-counter {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.counter-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(160, 244, 42, 0.5);
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.counter-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid rgba(160, 244, 42, 0.3);
    transform: translate(-50%, -50%);
}

.r1 {
    width: 60px;
    height: 60px;
    animation: ringPulse 2s ease-in-out infinite;
}

.r2 {
    width: 80px;
    height: 80px;
    animation: ringPulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.r3 {
    width: 100px;
    height: 100px;
    animation: ringPulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* CTA de TV */
.tv-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.tv-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(160, 244, 42, 0.3);
    transition: all 0.3s ease;
}

.tv-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(160, 244, 42, 0.4);
}

.button-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.button-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.tv-button:hover .button-particles span {
    opacity: 1;
    animation: particleAnimation 1s ease-out infinite;
}

.button-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0.1s;
}

.button-particles span:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 0.3s;
}

.button-particles span:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: 0.5s;
}

.button-particles span:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: 0.7s;
}

.button-particles span:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 0.9s;
}

/* Animaciones */
@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes pulseOrb {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

@keyframes particleAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
        opacity: 0.5;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .tv-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .channel-tag {
        padding: 6px 12px;
        margin-left: 20px;
    }
    
    .channel-icon {
        width: 25px;
        height: 25px;
    }
    
    .channel-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .tv-content {
        padding: 3rem 2rem;
    }
    
    .tv-title {
        text-align: center;
    }
    
    .tv-description {
        text-align: center;
    }
    
    .tv-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .channel-previews {
        display: none;
    }
}

@media (max-width: 480px) {
    .tv-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .tv-title {
        font-size: 2rem;
    }
    
    .tv-description {
        font-size: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .tv-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
