.bg-imagem {
    background-image: url('../imagem/background_homepage.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    background-color: rgba(33, 33, 33, 0.7); /* cor preta com 70% de opacidade */
    background-blend-mode: overlay; /* mistura cor e imagem */
}

header {
    background: transparent;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 4.5em;
    font-family: nouvelR, sans-serif; /* ajuste a fonte conforme necessário */
    color: #ff8502; /* escolha a cor desejada */
}

h2 {
    color: #ff8502; /* escolha a cor desejada */
    font-family: NouvelR, sans-serif; /* ajuste a fonte conforme necessário */
    font-size: 2em;
    margin: 20px 0;
}
nav {
    margin: 20px 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

main {
display: flex;
    justify-content: center;
    align-items: flex-start; /* alinha o conteúdo no topo */
    min-height: 60vh;        /* pode ajustar para menos, ex: 50vh */
}

footer {
    background:transparent;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.logo {
    position: left;
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.paragraph {
    font-family: nouvelR, sans-serif;
    color: white;
    position-area: relative;
}

.h2 {
    font-family: nouvelr, sans-serif;
    font-size: 1.2em;
    line-height: 1.6;
    color: #ff8502;
    position-area: relative;
}

.sobre {
    background-image:url('../imagem/logo_growup_01.png'); /* ajuste o nome e caminho da imagem */
    font-size: 1.2em;
    line-height: 1.6;
    color: #ff6902;
    position-area: relative;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh; /* altura mínima para centralizar verticalmente */
}

.quadrado {
    margin-top: 30px; /* aumenta a distância do topo */
    width: 500px;
    height: 300px;
    background-color:transparent;
    color: white;
    display: flex;;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    border-radius: 20px;
    margin: 10px;
}

.botoes {
    display: flex;
    gap: 20px; /* espaço entre os botões */
    margin-top: 20px;
}
.btn {
    background-color: #ff8502;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1em;
}

.fade-in {
    opacity: 0;
    transition: opacity 5s;
}
.fade-in.visible {
    opacity: 1;
}

.logo.efeito {
    filter: brightness(1.2) drop-shadow(0 0 10px white);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 1em; /* reduz o tamanho do título em telas menores */
    }
    h2 {
        font-size: 1em; /* reduz o tamanho do subtítulo em telas menores */
    }
    .quadrado {
        width: 90%; /* largura responsiva para telas menores */
        height: auto; /* altura automática para manter proporção */
    }
    .logo {
        height: 90px; /* reduz a altura do logo em telas menores */
    }
    .paragraph {
    font-family: nouvelR, sans-serif;
    color: white;
    position-area: relative;
    font-size: 0.8em;
}
.bg-imagem {
    background-image: url('../imagem/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    background-color: rgba(33, 33, 33, 0.7); /* cor preta com 70% de opacidade */
    background-blend-mode: overlay; /* mistura cor e imagem */
}
}