.internet-plans {
    padding: 80px 0;
    background: #f2f2f2;
    color: #fff;
    border-bottom: #131b34;
}

.internet-plans h2 {
    font-weight: 800;
    
}
.plan-info h3{
    color: #00ccff;
}

.plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #131b34;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid transparent;
    transition: .3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.plan-row:hover {
    box-shadow: 0 0 20px rgba(0,204,255,0.2);
    transform: translateY(-8px);
}

.plan-row.destacado {
    border-left-color: #00ccff;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 15px;
    background: #00ccff;
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 700;
}

.speed-bar {
    width: 200px;
    height: 10px;
    background: #2b3a68;
    border-radius: 50px;
    overflow: hidden;
}

.speed-bar .fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #00ccff, #0078ff);
    border-radius: 50px;
    transition: width 1.5s ease-out;
}

.plan-price span {
    font-size: 35px;
    font-weight: 900;
    color: #00ccff;
}

.plan-row.visible {
    opacity: 1;
    transform: translateY(0);
}
