/*
 * Under Construction Page Styles
 *
 * This file contains the styles for the temporary "Site em construção" page.
 * The design draws from the Nuvem Corporativa brand colours and uses a
 * clean, centred layout with an illustration to communicate that the
 * website is being redeveloped. The page is responsive and will
 * gracefully adjust on smaller screens.
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

.construction-container {
    max-width: 600px;
}

.construction-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.construction-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e88e5; /* primary blue */
}

.construction-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}