@charset "UTF-8";

/* ====== Botões ====== */

.botao-primario {
    display: inline-block;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--branco);
    font-size: 1.5rem;
    line-height: 1;
    padding: 1.2rem 2.4rem;
    background-color: var(--verde-escuro);
    border-radius: .8rem;
    cursor: pointer;
    border: 0;
    -webkit-transition: color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
}

.botao-primario i {
    margin-right: .8rem;
}

.botao-primario:hover {
    background-color: var(--verde-medio);
    color: var(--branco) !important;
}

.botao-secundario {
    display: inline-block;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--verde-escuro);
    font-size: 1.5rem;
    line-height: 1;
    vertical-align: middle;
    padding: 1.2rem 2.4rem;
    border: .2rem solid var(--verde-escuro);
    border-radius: .4rem;
    background-color: var(--branco);
    cursor: pointer;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.botao-secundario:hover {
    color: var(--verde-medio);
    border-color: var(--verde-medio);
}

.botao-grupo {
    width: 100%;;
    display: flex;
    justify-content: flex-start;
}

.botao-grupo > * {
    margin-right: 1.6rem;
}

.botao-grupo > *:last-child {
    margin-right: 0;
}

.col-3 .botao-grupo,
.col-md-6 .botao-grupo {
    flex-direction: column;
}

.col-3 .botao-grupo > *,
.col-md-6 .botao-grupo > * {
    margin-right: 0;
    margin-bottom: 1.6rem;
}

.col-3 .botao-grupo > *:last-child,
.col-md-6 .botao-grupo > *:last-child {
    margin-bottom: 0;
}

/* === Compartilhamento === */

.compartilhamento {
    display: flex;
}

.compartilhamento__item {
    margin-left: 0;
    margin-bottom: 0;
}

.compartilhamento__item::before {
    content: none;
}

.compartilhamento__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    color: var(--branco);
    background-color: var(--verde-escuro);
    font-size: 1.5rem;
    margin-right: .8rem;
}

.compartilhamento__item-link:hover {
    background-color: var(--verde-medio);
    color: var(--branco);
}

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

    .col-md-6 .botao-secundario {
        padding: 1.8rem 1.6rem 1.6rem;
    }

}

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

    .compartilhamento__item-link {
        width: 4.8rem;
        height: 4.8rem;
        font-size: 2.4rem;
        margin-right: 1.6rem;
    }

}