/* =========================================================
   PÁGINA - POLÍTICAS E NORMAS
========================================================= */

.normas-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 30px 100px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


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

.normas-header {
    width: 100%;
    max-width: 780px;
    margin-bottom: 55px;
}

.normas-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 15px;
}

.normas-header h1 {
    margin: 0 0 16px;
    padding: 0;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #262626;
}

.normas-header h1::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    background: #222;
    margin-top: 18px;
}

.normas-header p {
    margin: 25px 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: #666;
}


/* GRID
========================================================= */

.normas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
}


/* CARD
========================================================= */

.norma-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;

    min-height: 125px;
    padding: 25px;

    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;

    text-decoration: none !important;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.norma-card:hover {
    transform: translateY(-4px);
    border-color: #d7d7d7;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    text-decoration: none;
}


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

.norma-icon {
    width: 58px;
    height: 68px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background: #f5f5f5;
    border-radius: 7px;

    transition: all .25s ease;
}

.norma-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 14px;
    height: 14px;

    background: #fff;

    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.norma-icon span {
    display: block;

    padding: 4px 7px;

    background: #333;
    color: #fff;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;

    border-radius: 3px;
}

.norma-card:hover .norma-icon {
    background: #eeeeee;
}


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

.norma-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.norma-info h2 {
    margin: 0 0 10px;
    padding: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;

    color: #333;
}

.norma-link {
    display: inline-block;

    font-size: 12px;
    font-weight: 600;

    color: #999;

    transition: color .25s ease;
}

.norma-card:hover .norma-link {
    color: #333;
}


/* DETALHE LATERAL AO PASSAR O MOUSE
========================================================= */

.norma-card::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 50%;

    width: 3px;
    height: 0;

    background: #333;

    border-radius: 3px;

    transform: translateY(-50%);

    transition: height .25s ease;
}

.norma-card:hover::before {
    height: 55%;
}


/* RESPONSIVO
========================================================= */

@media screen and (max-width: 850px) {

    .normas-page {
        padding: 60px 20px 80px;
    }

    .normas-grid {
        grid-template-columns: 1fr;
    }

    .normas-header h1 {
        font-size: 34px;
    }

}


@media screen and (max-width: 480px) {

    .normas-page {
        padding: 45px 15px 60px;
    }

    .normas-header {
        margin-bottom: 35px;
    }

    .normas-header h1 {
        font-size: 29px;
    }

    .normas-header p {
        font-size: 14px;
    }

    .norma-card {
        min-height: 110px;
        padding: 19px;
        gap: 16px;
    }

    .norma-icon {
        width: 50px;
        height: 60px;
    }

    .norma-info h2 {
        font-size: 14px;
    }

}