.speedtest-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 70px;
    text-align: center;
}

.speedtest-box {
    margin-top: 30px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(44,140,122,0.2);
    backdrop-filter: blur(5px);
}

.progress-area {
    max-width: 680px;
    margin: 24px auto 0;
    text-align: left;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #E5E5E5;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: rgba(255,255,255,0.10);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(44,140,122,0.22);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #2C8C7A, #47b39c);
    border-radius: 999px;
    transition: width 0.15s linear;
}

.speedtest-resultados {
    margin-top: 25px;
}

.metricas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.metrica {
    min-width: 180px;
    padding: 22px 18px;
    border-radius: 14px;
    background: rgba(0,0,0,0.30);
    border: 1px solid rgba(44,140,122,0.2);
}

.metrica-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #CCCCCC;
}

.metrica-valor {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2C8C7A;
    line-height: 1.1;
}

.metrica-unidade {
    display: block;
    font-size: 13px;
    margin-top: 6px;
    color: #E5E5E5;
}

.speedtest-status {
    margin-top: 20px;
}

.speedtest-interpretacao {
    margin-top: 20px;
    text-align: center;
}

.speedtest-interpretacao p {
    margin: 10px 0;
    line-height: 1.6;
    color: #E5E5E5;
}

#velocidadeGeral,
#avaliacaoConexao {
    color: #2C8C7A;
    font-weight: 700;
}

.cta-box {
    margin-top: 30px;
}

.cta-box p {
    margin: 15px 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .progress-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .metricas {
        flex-direction: column;
    }

    .metrica {
        width: 100%;
        min-width: auto;
    }
}