:root {
    --verde: #0e9952;
    --transparent: #ffffff21;
    --laranja: #fe6417;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    background-color: #ededed;
    color: #222222;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

.container-fluid {
    width: 90%;
    margin: 0 auto;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    height: 3rem;
    background-color: var(--verde);
}

main {
    flex: 1;
    padding: 0px 0px 3rem;
}

main .card__body {
    width: 450px;
    max-width: 95%;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 .0625rem .125rem 0 rgba(0, 0, 0, .15);
    margin: -6rem auto 0;
}

.center-card__billboard {
    background-color: var(--verde);
    display: block;
    height: 11.375rem;
    width: 100%;
}

footer {
    height: 4rem;
    color: var(--verde);
    background-color: #fff;
    font-weight: 600;
}

.logo {
    text-align: center;
    margin: -4rem auto 0;
}

.logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.pa_logo {
    width: 90px;
}


/* CONTEUDO */

.horario, .endereco {
    padding: 1rem 0;
}

.horario h4, .endereco h4 {
    margin-bottom: .5rem;
}


.links {
    margin-top: 1rem;
}

.links a {
    display: flex;
    justify-content: space-between;
    border: 1px solid #eeeeee;
    padding-left: 1rem;
    margin-bottom: 0.875rem;
    transition: .3s;
}

.links a:hover {
    transform: translate(0, -4px);
    box-shadow: 0px 4px 8px -8px #242424dd;
}

.links a span {
    display: flex;
    align-items: center;
    flex: 1;
}

.links a i {
    height: 4rem;
    width: 70px;
    display: grid;
    place-content: center;
    font-size: 2rem;
    color: #fff;
    background-color: var(--verde);
    position: relative;
    overflow: hidden;
}