/* ============================================ */
/* SEÇÃO: 2 ERROS NA DEMISSÃO                   */
/* ============================================ */

.erros-section {
    position: relative;
    background: #eaeaeb;
    padding: 80px 20px 90px;
    font-family: 'Inter', sans-serif;
    color: #071324;
    overflow: hidden;
}

.erros-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================ */
/* ELEMENTOS DECORATIVOS                        */
/* ============================================ */

.erros-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(211, 170, 91, 0.08);
    border-radius: 50%;
    top: -300px;
    right: -220px;
    pointer-events: none;
}

.erros-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(211, 170, 91, 0.06);
    border-radius: 50%;
    bottom: -200px;
    left: -170px;
    pointer-events: none;
}

/* ============================================ */
/* CABEÇALHO                                    */
/* ============================================ */

.erros-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.erros-tag {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #aa7e2c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.erros-header h2 {
    margin: 0 auto 12px;
    max-width: 800px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: #000000;
}

.erros-header h2 strong {
    font-weight: 600;
    color: #000000;
}

.erros-subtitle {
    margin: 0 auto;
    max-width: 650px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555b63;
    line-height: 1.6;
}

/* ============================================ */
/* GRID - 2 COLUNAS LADO A LADO                */
/* ============================================ */

.erros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* ============================================ */
/* CARD DE ERRO                                */
/* ============================================ */

.erro-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.erro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #aa7e2c;
    border-radius: 0 4px 4px 0;
    transition: height 0.4s ease;
}

.erro-card:hover::before {
    height: 100%;
}

.erro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(211, 170, 91, 0.20);
}

/* ============================================ */
/* NÚMERO                                       */
/* ============================================ */

.erro-numero {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: #aa7e2c;
    opacity: 0.15;
    margin-bottom: 8px;
}

/* ============================================ */
/* ÍCONE                                        */
/* ============================================ */

.erro-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(211, 170, 91, 0.10);
    border-radius: 50%;
}

.erro-icon i {
    font-size: 24px;
    color: #aa7e2c;
    transition: all 0.3s ease;
}

.erro-card:hover .erro-icon {
    background: #aa7e2c;
}

.erro-card:hover .erro-icon i {
    color: #ffffff;
    transform: scale(1.10);
}

/* ============================================ */
/* TÍTULO                                       */
/* ============================================ */

.erro-card h3 {
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
    text-transform: uppercase;
}

/* ============================================ */
/* LINHA DOURADA                                */
/* ============================================ */

.erro-linha {
    width: 40px;
    height: 3px;
    margin-bottom: 16px;
    background: #aa7e2c;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.erro-card:hover .erro-linha {
    width: 60px;
}

/* ============================================ */
/* TEXTO                                        */
/* ============================================ */

.erro-card p {
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #555b63;
}

.erro-card p:last-child {
    margin-bottom: 0;
}

/* ============================================ */
/* DESTAQUE                                     */
/* ============================================ */

.erro-destaque {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0;
    padding: 14px 18px;
    background: rgba(211, 170, 91, 0.06);
    border-left: 3px solid #aa7e2c;
    border-radius: 0 8px 8px 0;
}

.erro-destaque i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    background: #aa7e2c;
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
}

.erro-destaque-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.erro-destaque strong {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #aa7e2c;
}

.erro-destaque span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555b63;
    line-height: 1.6;
}

/* ============================================ */
/* TEXTO FINAL                                  */
/* ============================================ */

.erro-final {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(211, 170, 91, 0.15);
}

.erro-final i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    background: #aa7e2c;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
}

.erro-final span {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #555b63;
    line-height: 1.6;
}

/* ============================================ */
/* ALERTA PRAZO                                 */
/* ============================================ */

.erros-alerta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    background: rgba(211, 170, 91, 0.06);
    border: 1px solid rgba(211, 170, 91, 0.15);
    border-radius: 16px;
    margin: 30px 0 40px;
}

.erros-alerta-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 170, 91, 0.12);
    border-radius: 50%;
    color: #aa7e2c;
}

.erros-alerta-icon i {
    font-size: 28px;
}

.erros-alerta-content {
    flex: 1;
}

.erros-alerta-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px;
}

.erros-alerta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555b63;
    margin: 0 0 4px;
    line-height: 1.6;
}

.erros-alerta-destaque {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #aa7e2c;
}

/* ============================================ */
/* CTA                                          */
/* ============================================ */

.erros-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-erros {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 320px;
    padding: 10px 15px;
    background: #071324;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 10px;
    border: 1px solid #071324;
    transition: all 0.3s ease;
}

.btn-erros i {
    font-size: 22px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-erros span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.btn-erros small {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    color: #d0d3d8;
    transition: all 0.3s ease;
}

.btn-erros:hover {
    background: #aa7e2c;
    border-color: #aa7e2c;
    color: #071324;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(7, 19, 36, 0.15);
}

.btn-erros:hover i,
.btn-erros:hover small {
    color: #071324;
}

/* ============================================ */
/* RESPONSIVO - TABLET                         */
/* ============================================ */

@media (max-width: 992px) {
    .erros-section {
        padding: 70px 20px 80px;
    }

    .erros-header {
        margin-bottom: 45px;
    }

    .erros-header h2 {
        font-size: 36px;
    }

    .erros-grid {
        gap: 24px;
    }

    .erro-card {
        padding: 26px 22px 24px;
    }

    .erro-numero {
        font-size: 40px;
    }
}

/* ============================================ */
/* RESPONSIVO - MOBILE                         */
/* ============================================ */

@media (max-width: 768px) {
    .erros-section {
        padding: 60px 16px 70px;
    }

    .erros-header {
        margin-bottom: 40px;
    }

    .erros-header h2 {
        font-size: 30px;
    }

    .erros-subtitle {
        font-size: 14px;
    }

    .erros-tag {
        font-size: 11px;
    }

    .erros-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .erro-card {
        padding: 22px 18px 20px;
    }

    .erro-numero {
        font-size: 34px;
    }

    .erro-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .erro-icon i {
        font-size: 20px;
    }

    .erro-card h3 {
        font-size: 15px;
    }

    .erro-card p {
        font-size: 13.5px;
    }

    .erro-destaque {
        padding: 12px 16px;
    }

    .erro-destaque strong {
        font-size: 13px;
    }

    .erro-destaque span {
        font-size: 13px;
    }

    .erro-final span {
        font-size: 13px;
    }

    .erros-alerta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .erros-alerta-icon {
        width: 48px;
        height: 48px;
    }

    .erros-alerta-icon i {
        font-size: 22px;
    }

    .erros-alerta-content h4 {
        font-size: 15px;
    }

    .erros-alerta-content p {
        font-size: 13px;
    }

    .erros-alerta-destaque {
        font-size: 13px;
    }

    .btn-erros {
        width: 100%;
        min-width: 0;
        padding: 14px 20px;
        font-size: 13px;
    }

    .btn-erros i {
        font-size: 22px;
    }

    .btn-erros small {
        font-size: 11px;
    }
}

/* ============================================ */
/* RESPONSIVO - MOBILE PEQUENO                 */
/* ============================================ */

@media (max-width: 480px) {
    .erros-section {
        padding: 40px 12px 60px;
    }

    .erros-header h2 {
        font-size: 24px;
    }

    .erros-subtitle {
        font-size: 13px;
    }

    .erros-tag {
        font-size: 10px;
    }

    .erro-card {
        padding: 18px 14px 16px;
    }

    .erro-numero {
        font-size: 30px;
    }

    .erro-icon {
        width: 42px;
        height: 42px;
    }

    .erro-icon i {
        font-size: 18px;
    }

    .erro-card h3 {
        font-size: 14px;
    }

    .erro-card p {
        font-size: 12.5px;
    }

    .erro-destaque strong {
        font-size: 12px;
    }

    .erro-destaque span {
        font-size: 12px;
    }

    .erro-final span {
        font-size: 12px;
    }

    .erros-alerta {
        padding: 18px 14px;
    }

    .erros-alerta-icon {
        width: 40px;
        height: 40px;
    }

    .erros-alerta-icon i {
        font-size: 18px;
    }

    .erros-alerta-content h4 {
        font-size: 14px;
    }

    .erros-alerta-content p {
        font-size: 12px;
    }

    .erros-alerta-destaque {
        font-size: 12px;
    }

    .btn-erros {
        padding: 14px 18px;
        font-size: 12px;
    }

    .btn-erros i {
        font-size: 20px;
    }

    .btn-erros small {
        font-size: 10px;
    }
}