/* ========================================
   Módulo: Agenda
   ======================================== */

.agenda-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.agenda-header {
    margin-bottom: 40px;
    text-align: center;
}

.agenda-title {
    font-size: 32px;
    font-weight: 600;
    color: #3D5268;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.agenda-title i {
    color: #5B8BB5;
}

.agenda-subtitle {
    font-size: 16px;
    color: #6B7C8E;
    margin: 0;
}

.agenda-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    min-height: 400px;
}

.agenda-form-section {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.agenda-form-toggle {
    width: 100%;
    padding: 12px 20px;
    background: #F5F8FA;
    border: 1px solid #E2E8EE;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #3D5268;
    cursor: pointer;
    transition: background 0.2s;
}

.agenda-form-toggle:hover {
    background: #E8EEF3;
}

.new-event-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.new-event-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.new-event-form .form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #3D5268;
}

.new-event-form .form-control {
    padding: 10px 14px;
    border: 1px solid #E2E8EE;
    border-radius: 8px;
    font-size: 14px;
    color: #3D5268;
}

.new-event-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.new-event-form .time-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.new-event-form .time-inputs .form-control {
    width: 4rem;
}

.new-event-form .form-check {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.new-event-form .form-check-label {
    margin: 0;
    font-weight: 400;
}

.new-event-form .form-message.success {
    color: #2d8a5e;
    font-size: 14px;
    margin: 0;
}

.new-event-form .form-message.error {
    color: #c53030;
    font-size: 14px;
    margin: 0;
}

.new-event-form .btn-submit-event {
    padding: 12px 24px;
    background: linear-gradient(135deg, #5B8BB5 0%, #3A5A7C 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.new-event-form .btn-submit-event:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91, 139, 181, 0.3);
}

.new-event-form .btn-submit-event:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.development-notice {
    background: white;
    border-radius: 20px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    width: 100%;
}

.notice-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5B8BB5 0%, #3A5A7C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.notice-icon i {
    font-size: 36px;
    color: white;
}

.notice-title {
    font-size: 28px;
    font-weight: 600;
    color: #3D5268;
    margin-bottom: 12px;
}

.notice-text {
    font-size: 16px;
    color: #6B7C8E;
    line-height: 1.6;
    margin-bottom: 32px;
}

.notice-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #F5F8FA;
    border-radius: 10px;
    font-size: 14px;
    color: #3D5268;
}

.feature-preview i {
    color: #5B8BB5;
    font-size: 16px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #5B8BB5 0%, #3A5A7C 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.back-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 139, 181, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .agenda-container {
        padding: 16px;
    }

    .agenda-title {
        font-size: 24px;
    }

    .development-notice {
        padding: 40px 24px;
    }

    .notice-icon {
        width: 64px;
        height: 64px;
    }

    .notice-icon i {
        font-size: 28px;
    }

    .notice-title {
        font-size: 22px;
    }

    .notice-text {
        font-size: 14px;
    }

    .notice-features {
        grid-template-columns: 1fr;
    }

    .feature-preview {
        font-size: 13px;
    }
}
