/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* força o corpo a ocupar 100% da altura da janela */
    display: flex;
    flex-direction: column;
}

/* HEADER */
header {
    background-color: #244058;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    align-items: center;
}

header .logo img {
    width: 420px;
    margin-bottom: 1.5rem;
}

header p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* SEÇÃO EM CONSTRUÇÃO */
#emconstrucao {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
    margin-top: auto;
}

#emconstrucao .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#emconstrucao h2 {
    color: #d62828;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#emconstrucao .imagem-construcao img {
    width: 300px;
    margin-top: 0.1rem;
}

/* FOOTER */
footer {
    background-color: #202021;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Media Queries para responsividade */

/* Dispositivos pequenos (celulares) */
@media (max-width: 600px) {
    header .logo img {
        width: 180px;
    }

    #emconstrucao h2 {
        font-size: 2rem;
    }

    #emconstrucao .imagem-construcao img {
        width: 200px;
    }


}

/* Dispositivos médios (tablets) */
@media (max-width: 900px) {
    header .logo img {
        width: 250px;
    }

    #emconstrucao h2 {
        font-size: 2.2rem;
    }

    #emconstrucao .imagem-construcao img {
        width: 250px;
    }

}

/* Dispositivos grandes (notebooks e desktops) */
@media (min-width: 1200px) {
    header .logo img {
        width: 420px;
    }

    #emconstrucao .imagem-construcao img {
        width: 300px;
    }

}
