/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Estilização geral */
body {
    background-color: #111;
    color: #eee;
    text-align: center;
}

header {
    background: linear-gradient(90deg, #000000, #1a1a1a, #000000);
    background-size: 300% 100%;
    animation: bg-move 8s ease-in-out infinite;
    color: #ffffff;
    padding: 40px 20px;
    border-top: 5px solid;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #472400, #cd6e00, #4a290a) 1;
}

@keyframes bg-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


header h1 {
    font-size: 3rem;
    background: linear-gradient(to bottom, #f1e7a9 50%, #472400, #cd6e00, #4a290a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(-2px 0px 2px #1d1d1d);
}

.error-message {
    color: darkred;
}

/* Menu de navegação */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #b0d4ef;
}

/* Seções */
section {
    width: 100%;
    margin: auto;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.1);
    margin-top: 20px;
    color: #ccc;
    text-align: left;
}


h2 {
    color: #ffa500;
    margin-bottom: 20px;
    font-size: 28px;
}

/* Botão de inscrição */
.btn {
    display: inline-block;
    background-color: #cd6e00;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
    width: 95%;
    max-width: 400px;
    margin-top: 20px;
}


.btn:hover {
    background-color: #a95000;
}

/* Rodapé */
footer {
    color: #ffa500;
    text-decoration: underline;
    padding: 15px;
    margin-top: 50px;
    width: 100%;

}

img {
    width: 100%;
}

.fotos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container {
    width: 95%;
    max-width: 400px;
    background: #1c1c1c;
    padding: 20px 10px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 10px auto;
    border: 2px solid #cd6e00;
    box-shadow: -1px 4px 4px #000000;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tabs button {
    background: none;
    border: none;
    color: #cd6e00;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    transition: 0.3s;
}

.tabs button.active {
    font-weight: bold;
    border-bottom: 2px solid #cd6e00;
}

#sidebar>nav>a {
    text-align: left;
}

.form-container {
    display: flex;
    width: 200%;
    transition: transform 0.4s ease-in-out;
}

.form {
    width: 50%;
    padding: 10px;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px !important;
    margin-bottom: 10px;
    border: 1px solid #333;
    color: #eee;
    background: #222;
    border-radius: 5px;
}

#videoFormAjax {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    width: 100%;
    padding: 10px;
    background: #cd6e00;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 30px;
    margin: 10px auto;
    border-bottom: 2px solid black;
}

button:hover {
    background: #a95000;
    color: white;
    border-bottom: 2px solid #cd6e00;
}

main {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.form-pri {
    width: 100%;
    display: flex;
    justify-self: center;
    flex-direction: column;
    align-items: center;
    background-color: #1a1a1a;
    transition: 400ms;
    animation: fundo 10s linear infinite;
}

@keyframes fundo {
    0% {
        background-color: #1a1a1a;
    }

    50% {
        background-color: #000000;
    }

    100% {
        background-color: #1a1a1a;
    }
}

.banner {
    width: 100%;
    margin: 10px auto;
    max-width: 200px;
    filter: drop-shadow(1px 2px 4px black);
}

#sidebar>div.absolute.bottom-5.left-5 {
    text-align: left;
}

.campo-documento {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}