@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap');

:root {
    --laranja-claro: #ff0000;
}

body {
    background-color: rgb(0, 0, 0);
    font-size: 1rem;
    font-family: 'Montserrat';
}

header {
    background-color: #ff0000;
}


section {
    padding-bottom: 1rem;
}


.nav-link {
    color: #ffffff;
    font-weight: 700;
}

.inicio-fundo {
    /* aula 3 */
    background-image: url('logo.jpg');
    /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: right;
    border-radius: 80px;
    width: 100%;
    height: 606px;
    padding: 40px;
    margin: 0 auto;
}

/* posicionamento para a imagem à direita */
.img-inicio {
    position: absolute;
    right: 0;
    top: 18rem;
    width: 45rem;
    height: auto;
}


.esquerda-conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

}


.botao-inicio {
    background-color: var(rgb(0, 0, 0));
    border-radius: 50px;
    border: none;
    width: 14em;
    /* Convertido para em aumenta o tamanho da fonte por tabela*/
    height: 3em;
    /* Convertido para em */
    align-content: center;

}

.display-4 {
    text-shadow: -5px 5px var(white);
}


#tropicalia {
    position: relative;
    padding-top: 5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    background-size: 80px 80px;
    /* Ajuste o tamanho conforme necessário */
}

#tropicalia .container {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    /* Garante que o conteúdo fica acima das imagens do background */
}


h2 {
    font-family: 'lemon', serif;
    font-size: 2.5em;
    font-style: normal;
    color: red;
}

#galeria {
    background-color: #000000;

}

.fundo-galeria {
    background: url('white') bottom right no-repeat;
    background-size: 80px 80px;
}

#contato {
    background-size: cover;
    padding: 5% 0;
    /* Espaçamento interno para a seção de contato */

}

.formulario {
    background-color: #000000;
    padding: 2rem;
    /* Espaçamento interno dentro do formulário */
    border-radius: 10px;
    /* Borda arredondada para o formulário */
    box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
    /* Sombra suave para destacar o formulário */
    font-weight: bold;
}

.formulario button {
    background-color: #ff0000;
    border: none;
    font-weight: bold;
}

/* chama classe do bootstrap para modificar a cor */
.form-control {
    background-color: #000000;
}