body {
    color: white;
    background-color: black;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

header img {
    width: 25vw;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-top: 5%;
}

.center {
    text-align: center;
}

h1 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;   
}


footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    padding: 40px 10px;
}

footer img {
    width: 25px;
    height: 25px;
    margin: 20px 0 5px;
}

footer a {
    text-align: center;
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: fuchsia;
}

footer p {
    margin: 2px 0;
}

footer .copyright {
    margin-top: 10px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
}


.widget-wrapper {
    width: 100%;
    overflow-x: auto;        /* permite scroll se necessário */
    display: flex;
    justify-content: center; /* centraliza em telas largas */
    margin-bottom: 40px;
}

.widget-scale {
    width: 600px;
    transform-origin: top left;
    display: inline-block;
}

/* Telas menores: aplica escala e aumenta a área de scroll */
@media screen and (max-width: 768px) {
    .widget-wrapper {
        justify-content: flex-start; /* deixa o scroll começar da esquerda */
    }
    .widget-scale {
        transform: scale(0.85);
        width: 600px;
        min-width: 600px; /* garante espaço suficiente */
    }
}

@media screen and (max-width: 480px) {
    .widget-scale {
        transform: scale(0.75);
        width: 600px;
        min-width: 600px;
    }
}
s