body {
    background-color: #f8f9fa;
    font-family: 'Times New Roman', serif;
}

.folha-a4 {
    width: 210mm;
    min-height: 297mm;
    padding: 20mm;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 12pt;
    line-height: 1.6;
    color: #000;
}

.header-procuracao {
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.header-procuracao h2 {
    font-size: 18pt;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-procuracao p {
    text-align: justify;
    margin-bottom: 15px;
}

.poderes-section {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    min-height: 80px;
}

.assinatura-section {
    margin-top: 60px;
}

.linha-assinatura {
    border-bottom: 1px solid #000;
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
}

.data-local {
    margin-bottom: 40px;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-header {
    background-color: #007bff;
    color: white;
    border-bottom: none;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

@media print {
    body {
        background-color: white;
    }
    
    .col-4 {
        display: none !important;
    }
    
    .col-8 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .folha-a4 {
        box-shadow: none;
        margin: 0;
        padding: 15mm;
        width: 100%;
        min-height: auto;
    }
    
    .container-fluid {
        padding: 0 !important;
    }
    
    .row {
        margin: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .col-4,
    .col-8 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .folha-a4 {
        width: 100%;
        padding: 15px;
        margin: 10px 0;
    }
}