/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Estilização geral */
body {
    background-color: #ffffff;
    color: #333;
    text-align: center;
}

/* Cabeçalho */
header {
    background-color: #27638E;
    color: #ffffff;
    padding: 20px;
}

header h1 {
    font-size: 2rem;
}

.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;
}

h2 {
    color: #27638E;
    margin-bottom: 20px;
}

/* Botão de inscrição */
.btn {
    display: inline-block;
    background-color: #27638E;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn:hover {
    background-color: #1e4f6e;
}

/* Rodapé */
footer {
    color: #ffffff;
    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: #fff;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 10px auto;
    border: 2px solid #3498db;
    box-shadow: -1px 4px 4px #142d3d;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tabs button {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    transition: 0.3s;
}

.tabs button.active {
    font-weight: bold;
    border-bottom: 2px solid #3498db;
}

#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 #ccc;
    border-radius: 5px;
}

#videoFormAjax{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    width: 100%;
    padding: 10px;
    background: #3498db;
    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: #2980b9;
    color: white;
    border-bottom: 2px solid #27638E;
}

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: #27638E;
    transition: 400ms;
    animation: fundo 10s linear infinite;
}

@keyframes fundo {
    0% {
        background-color: #27638E;
    }

    50% {
        background-color: #1e4f6e;
    }

    100% {
        background-color: #27638E;
    }
}

.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;
}



