/**
 * Folha de Estilos - Cadastro de Edital de Leilão
 *
 * CSS version 3
 *
 * @category  CSS
 * @package   RegistroImobiliario_Institucional
 * @CriadoEm  24/06/2026
 */

/* ==========================================================================
   Hero / Header Section
   ========================================================================== */
.el-hero {
    background: linear-gradient(135deg, #00153b 0%, #0a3272 100%);
    color: #ffffff;
    padding: 145px 0 110px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.edital-leilao-page {
    margin-top: 50px;
}

.el-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: #d0af13;
    /* Linha dourada de destaque */
}

.el-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.el-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ==========================================================================
   Card e Estrutura Principal
   ========================================================================== */
.el-form-section {
    background-color: #e9ecef;
    padding-bottom: 60px;
}

.el-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: -45px;
    position: relative;
    z-index: 100;
}

/* ==========================================================================
   Texto Introdutório e Manual
   ========================================================================== */
.el-intro {
    margin-bottom: 35px;
    border-bottom: 1px solid #eef2f5;
    padding-bottom: 25px;
}

.el-intro-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.el-manual-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.el-manual-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.el-btn-manual {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    background-color: #d0af13;
    border-color: #d0af13;
    color: #ffffff !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208, 175, 19, 0.2);
    white-space: normal;
}

.el-btn-manual:hover {
    background-color: #b3960e;
    border-color: #b3960e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 175, 19, 0.35);
}

/* ==========================================================================
   Estilização do Formulário
   ========================================================================== */
.el-form-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00153b;
    margin-top: 15px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.el-divider {
    border-top: 2px solid #e2e8f0;
    margin-bottom: 25px;
}

.el-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.el-input,
.el-textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #2d3748;
    background-color: #fcfdfe;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px 14px;
    transition: all 0.2s ease-in-out;
}

.el-input:focus,
.el-textarea:focus {
    background-color: #ffffff;
    border-color: #00153b;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 21, 59, 0.15);
}

.el-textarea {
    resize: vertical;
}

/* LGPD e Avisos */
.el-privacy-box {
    background-color: #f0f4f8;
    border-left: 4px solid #00153b;
    border-radius: 4px;
    padding: 15px 20px;
}

.el-privacy-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #4a5568;
    line-height: 1.5;
}

/* Botão de Envio */
.el-btn-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 6px;
    background-color: #00153b;
    border-color: #00153b;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 21, 59, 0.2);
}

.el-btn-submit:hover {
    background-color: #000c24;
    border-color: #000c24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 21, 59, 0.35);
}

.el-btn-submit:disabled {
    background-color: #cbd5e1;
    border-color: #cbd5e1;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

/* ==========================================================================
   Feedback de Validação e Envio
   ========================================================================== */
.el-feedback-container {
    margin-bottom: 25px;
}

.el-feedback-container .alert {
    border-radius: 8px;
    padding: 15px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 768px) {
    .el-hero {
        padding: 110px 0 80px;
    }

    .el-hero-title {
        font-size: 1.8rem;
    }

    .el-card {
        padding: 25px 20px;
    }

    .el-btn-submit {
        width: 100%;
        padding: 12px 20px;
    }
}