.page-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.page-header h1 {
    font-weight: 700;
    margin: 0;
}
.table-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin: 40px auto;
    max-width: 1000px;
}
.table-modern {
    margin-bottom: 0;
}
.table-modern thead {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
}
.table-modern th {
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem;
}
.table-modern tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
}
.table-modern tbody tr:hover {
    background-color: #f8f9ff;
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.event-name {
    font-weight: 600;
    color: #1e3c72;
    font-size: 1.1rem;
}
.event-name i {
    color: #2a5298;
    margin-right: 8px;
}
.badge-open {
    background: #28a745;
    color: white;
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
}
.no-events {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-size: 1.3rem;
}
@media (max-width: 768px) {
    .table-modern th,
    .table-modern td {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
}
.inscricao-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.inscricao-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}
.inscricao-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}
.inscricao-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-top: 0.5rem;
}
.form-container {
    padding: 3rem 2.5rem;
}
.cpf-input {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    font-size: 1.4rem;
    text-align: center;
}
.btn-continuar {
    padding: 0.9rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.alert {
    border-radius: 12px;
    margin-bottom: 2rem;
}
.form-card {
background: white;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
overflow: hidden;
margin: 3rem 0;
}
.form-header {
background: linear-gradient(135deg, #007bff, #0056b3);
color: white;
padding: 2.5rem 2rem;
text-align: center;
}
.form-title {
font-size: 2.2rem;
font-weight: 700;
margin: 0;
}
.form-subtitle {
font-size: 1.1rem;
opacity: 0.95;
margin-top: 0.5rem;
}
.form-body {
padding: 3rem 2.5rem;
}
.form-section {
background: #f8f9fa;
padding: 1.5rem;
border-radius: 12px;
margin-bottom: 1.5rem;
border-left: 4px solid #007bff;
}
.btn-finalizar {
padding: 0.9rem 3rem;
font-size: 1.2rem;
font-weight: 600;
}
.alert-custom {
border-radius: 12px;
padding: 1.5rem;
}
.evento-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.evento-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 2rem;
    margin-bottom: 2rem;
}
.evento-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.info-item {
    background: #f1f3f5;
    padding: 1rem 1.5rem;
    border-radius: 10px;
}
.info-label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.info-value {
    font-size: 1.1rem;
    color: #212529;
}
.status-aberto { color: #28a745; font-weight: bold; }
.status-fechado { color: #dc3545; font-weight: bold; }
.descricao {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #007bff;
    margin: 2rem 0;
    line-height: 1.7;
}
.acoes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}