/* Estilos para os formulários */

/* Estilos do rodapé */
.footer {
    padding: 80px 0 20px;
    background-color: #002C53;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    background-color: transparent;
    display: block;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
    color: #48cae4;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
    color: #48cae4;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-right: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #48cae4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Menu fixo */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #002C53 0%, #004080 50%, #002C53 100%);
}

/* Ajuste para o conteúdo não ficar escondido atrás do menu fixo */
body {
    padding-top: 90px;
}

/* Ajustes para o logo ficar proporcional ao da página inicial */
.navbar-brand img.logo {
    max-height: 60px;
    width: auto;
}

/* Ajustes para os itens do menu ficarem proporcionais ao da página inicial */
.navbar-nav .nav-item {
    margin-left: 25px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #e0e0e0;
}
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background-color: #f9f9f9;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: #0d6efd;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-label {
    font-weight: 500;
}

.required-field::after {
    content: "*";
    color: red;
    margin-left: 4px;
}

.btn-submit {
    min-width: 120px;
}

.form-group-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.form-group-inline .form-check {
    margin-bottom: 0;
}

.form-section-title {
    background-color: #0d6efd;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-group-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}
