/* Body Styles */
body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Specific for login page centering */
.login-body {
    align-items: center;
    justify-content: center;
}

/* Header/Logo Styles */
.header-ufpr {
    background-color: #005aaa;
    color: white;
    padding: 20px 0;
    border-bottom: 4px solid #f0ad4e;
}

.header-painel {
    background-color: #005aaa;
    color: white;
    padding: 15px 0;
    border-bottom: 4px solid #f0ad4e;
}

.logo-ufpr {
    height: 60px;
    background: white;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Form Styles */
.form-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.section-title {
    color: #005aaa;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 450px;
    padding: 15px;
}

.card-login {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    background-color: #005aaa;
    color: white;
    text-align: center;
    padding: 25px 20px;
    border-bottom: 4px solid #f0ad4e;
}

/* Card Styles */
.card-modalidade {
    transition: transform 0.2s;
    height: 100%;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-modalidade:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-menu {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    border-radius: 10px;
}

.card-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Styles */
.modalidade-icon {
    font-size: 3rem;
    color: #005aaa;
    margin-bottom: 15px;
}

.icon-menu {
    font-size: 2.5rem;
    color: #005aaa;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    margin-top: auto;
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Warning/Alert Styles */
.quadro-avisos {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
}

/* LGPD Banner */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none;
}