* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-container {
    text-align: center;
}

.icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: spin 8s linear infinite;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    color: #666;
}

/* Animação da engrenagem */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}