/* Importação de Fonte Elegante */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Montserrat:wght@400;600&display=swap');

/* Reset e Configuração Base */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
    color: #002f6c; /* Azul Le Cordon Bleu */
    margin: 0;
}

/* Navbar */
.navbar {
    padding: 15px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #002f6c !important;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 45px;
    margin-right: 10px;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #002f6c !important;
}

.navbar-toggler {
    border: none;
}

/* Container Principal */
.container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

/* Botões */
button, .btn {
    background-color: #002f6c; /* Azul Le Cordon Bleu */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

button:hover, .btn:hover {
    background-color: #001a3c;
}

/* Formulários */
form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

form label {
    font-weight: bold;
    margin-top: 10px;
}

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccd;
    border-radius: 5px;
}

/* Rodapé */
.footer {
    font-size: 14px;
    color: #002f6c;
}   