.etica-relato {
    padding: 60px 0;
    min-height: 100vh;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: flex-start;
}

.col-lg-5, .col-lg-7 {
    padding: 0 15px;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    order: 1;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    order: 2;
}

.relato-info {
    padding-right: 50px;
    padding-top: 20px;
}

.relato-logo {
    width: 220px;
    margin-bottom: 10px;
    display: block;
}

.relato-info h2 {
    font-size: 24px;
    font-weight: 600;
    color: #044F7B;
    line-height: 1.4;
    margin-bottom: 10px;
}

.relato-info p {
    font-size: 15px;
    font-weight: 500;
    color: #044F7B;
    line-height: 1.7;
    margin-bottom: 35px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #2c5282;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: #1a365d;
    text-decoration: none;
}

/* Card do Formulário - Lado Direito */
.relato-card {
    background: linear-gradient(180deg, #3d5a80 0%, #2c4961 100%);
    border-radius: 12px;
    padding: 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Radio Buttons Personalizados */
.form-group.mb-3:first-child {
    display: flex;
    gap: 20px;
    margin-bottom: 25px !important;
}

.form-group.mb-3:first-child label {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin: 0 !important;
}

.form-group.mb-3:first-child input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Labels dos Campos */
.form-group label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Inputs e Textareas */
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    transition: box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 200, 87, 0.3);
}

.form-control::placeholder {
    color: #a0aec0;
    font-style: italic;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Form Row */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.col-md-6 {
    flex: 0 0 48%;
}

/* Zona de Upload */
.custom-file-zone {
    margin-top: 10px;
}

.zone {
    background-color: #ffffff;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.zone:hover, .zone.hover {
    border-color: #ffc857;
    background-color: #fffbf0;
}

.btn-light {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-light:hover {
    background-color: #f7fafc;
}

/* Radio Identificação */
.form-group.mb-2 label:first-child {
    display: block;
    margin-bottom: 10px;
}

.form-group.mb-2 > div {
    display: flex;
    gap: 20px;
}

.form-group.mb-2 > div label {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

.form-group.mb-2 input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

small {
    font-weight: 400;
    opacity: 0.8;
}

/* Botão de Envio */
.relato-btn {
    width: 100%;
    background-color: #ffc857;
    color: #2c4961;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.relato-btn:hover {
    background-color: #ffb627;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 200, 87, 0.4);
}

.relato-btn:active {
    transform: translateY(0);
}

/* Espaçamentos */
.mb-2 { margin-bottom: 15px !important; }
.mb-3 { margin-bottom: 20px !important; }
.mb-4 { margin-bottom: 30px !important; }
.mt-2 { margin-top: 10px !important; }
.mr-3 { margin-right: 20px !important; }
.py-5 { padding-top: 60px !important; padding-bottom: 60px !important; }
.p-4 { padding: 40px !important; }

/* Utilitários */
.d-none { display: none !important; }

/* Responsividade */
@media (max-width: 991px) {
    .col-lg-5, .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-lg-5 {
        order: 1;
    }
    
    .col-lg-7 {
        order: 2;
    }
    
    .relato-info {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .relato-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .col-md-6 {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .relato-card {
        padding: 25px !important;
    }
    
    .form-group.mb-3:first-child {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group.mb-2 > div {
        flex-direction: column;
        gap: 10px;
    }
}