:root {
    /* Paleta principal */
    --amarelo-girassol: #f6d54a;
    --vermelho-carmesim: #d04a4a;
    --laranja-salmao: #f48c42;
    --verde-agua-menta: #5fa86c;
    --cinza-perola: #d9d9d9;
    --fundo: #2b2b2b;

    /* Suporte */
    --preto: #121212;
    --texto-claro: #f5f5f5;
    --texto-escuro: #1a1a1a;

    /* Links */
    --link: #f6d54a;
    --link-hover: #f48c42;

    /* Fontes */
    --titulo: 'Montserrat', sans-serif;
    --texto: 'Open Sans', sans-serif;
}

/* Reset leve */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--texto);
    background-color: var(--fundo);
    color: var(--texto-claro);
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Links */
a {
    text-decoration: none;
    color: var(--link);
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: var(--link-hover);
}

/* Títulos */
h1,
h2,
h3 {
    font-family: var(--titulo);
}

h1 {
    font-size: 2rem;
    color: var(--amarelo-girassol);
}

h2 {
    font-size: 1.5rem;
    color: var(--verde-agua-menta);
    text-align: center;
}

h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--laranja-salmao);
}

/* Header e Navegação */
header {
    margin: 0;
    padding: 1rem 0 2rem 0;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: var(--texto-claro);
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo img {
    width: 25px;
    height: 25px;
}

.logo:hover {
    opacity: 0.8;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.logo p {
    color: var(--verde-agua-menta);
    font-size: 1.5rem;
    cursor: pointer;
}

header hr {
    border: none;
    border-top: 1px solid var(--cinza-perola);
    margin: 1rem 0;
}

/* Conteúdo principal */
main {
    padding: 0 5%;
    flex-grow: 1;
}

/* Botões */
.botaoInscrever {
    padding: 1rem 2rem;
    background-color: var(--amarelo-girassol);
    color: var(--preto);
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    width: 100%;
}

.botaoInscrever:hover {
    background-color: var(--laranja-salmao);
    color: var(--texto-claro);
}

.tags {
    display: flex;
    align-items: left;
    padding: 12px 16px;

    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.tags div {
    background-color: var(--verde-agua-menta);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

main h1 {
    text-align: center;
    margin: 2rem 0;
}

/* Palestrantes */
.palestrantes {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.palestrante {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--preto);
    padding: 1rem;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.palestrantes img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nomePalestrante {
    font-weight: bold;
    color: var(--laranja-salmao);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.cargoPalestrante {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: var(--texto-claro);
    margin: 0.5rem 0;
}

.banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 32px;
}

.conteudoBanner {
    width: 50%;
}

.conteudoBanner h1 {
    font-size: 3rem;
    text-align: left;
}

.formulario {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.formulario h2 {
    text-align: left;
}

.formulario p,
.detalhesEvento h2 {
    margin-bottom: 2rem;
}

.nota {
    margin-top: 1rem;
}

.forms {
    display: flex;
    align-items: center;
    background-color: var(--preto);
    width: 35%;
    border-radius: 16px;
    padding: 1.5rem;
    height: fit-content;
}

input {
    width: 100%;
    padding: 0.75rem;
    margin: 1rem 0;
    border: 1px solid var(--cinza-perola);
    background-color: var(--texto-escuro);
    color: var(--texto-claro);
    border-radius: 4px;
}

.checkbox {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox p {
    font-size: 0.9rem;
    color: var(--texto-claro);
    margin: 0;
}

.checkbox input {
    width: auto;
    margin: 0;
}

.inscricao {
    padding: 2rem 5rem;
    background-color: var(--texto-escuro);
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.detalhesEvento {
    display: flex;
    background-color: var(--preto);
    padding: 2rem 3rem;
    flex-direction: column;
    color: var(--texto-claro);
    border-radius: 32px;
    width: 40%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.detalhe {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detalhe i {
    font-size: 1.5rem;
    color: var(--laranja-salmao);
}

.detalhesEvento video {
    display: block;
    width: 80%;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    padding: 2rem 5rem;
    background-color: var(--preto);
    gap: 1rem;
}

.rodape {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.rodape .logo img {
    width: 100px;
    height: auto;
}

.rodape .logo p {
    font-size: 5rem;
}

.contato {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: justify;
    color: var(--texto-claro);
}

.contato h3 {
    text-align: left;
}

.redes-sociais {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.redes-sociais a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--link);
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.redes-sociais i {
    color: var(--laranja-salmao);
}

.direitos {
    display: flex;
    flex-direction: column;
    color: var(--texto-claro);
    text-align: left;
}

.direitos p {
    margin: 0;
    text-align: left;
}

@media screen and (max-width: 1045px) {
    .rodape .logo img {
        width: 50px;
        height: auto;
    }

    .rodape .logo p {
        font-size: 3rem;
    }

    .conteudoBanner h1 {
        font-size: 2rem;
    }

}

@media screen and (max-width: 768px) {
    .rodape .logo img {
        width: 50px;
        height: auto;
    }

    .rodape .logo p {
        font-size: 3rem;
    }

    .conteudoBanner h1 {
        font-size: 2rem;
    }

    .banner .forms {
        display: none;
    }

    .conteudoBanner {
        width: 100%;
        text-align: justify;
    }

    .inscricao {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .detalhesEvento, .forms {
        width: 100%;
        padding: 1rem;
    }

    .rodape {
        flex-direction: column;
    }

    .contato {
        width: 100%;
    }

    .direitos p, .rodape h3 {
        text-align: center;
    }

     .redes-sociais, .rodape .logo {
        justify-content: center;
    }
}