/* Container geral */
.speedtest-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
}

/* Texto informativo */
.speedtest-container p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Grade de botões */
.speedtest-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-bottom: 40px;
}

/* Botões circulares */
.speedtest-buttons a {
    width: 100px;
    height: 100px;
    background: #fa7900;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.speedtest-buttons a:hover {
    background: #d66200;
    transform: scale(1.05);
}

.speedtest-buttons i {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Informações abaixo */
.speedtest-info {
    padding: 0 20px;
}

.speedtest-info p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
}

.speedtest-info i {
    margin-right: 8px;
    font-size: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .speedtest-container {
        padding: 20px;
        margin: 30px 15px;
    }

    .speedtest-buttons a {
        width: 90px;
        height: 90px;
        font-size: 12px;
    }

    .speedtest-buttons i {
        font-size: 20px;
    }
}
