@import "/css/colors.css";
@import "/css/components/footer.css";
@import "/css/components/menu.css";
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Akaya+Kanadaka&display=swap');

body {
    font-family: 'Abel', sans-serif;
    font-weight: 300;
}

.font-akaya {
    font-family: 'Akaya Kanadaka', cursive !important;
}

#sobreVentreLivre h4,
#sobreVentreLivre h6 {
    color: var(--red);
}

.text-red {
    color: var(--red) !important;
}

/*** Button ***/
.button {
    position: relative;
    background-color: var(--red);
    border-radius: 4em;
    font-size: 14px;
    color: white !important;
    padding: 0.7em 2.8em;
    cursor: pointer;
    user-select: none;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    font-family: 'Abel', cursive !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.button:hover {
    transition-duration: 0.1s;
    background-color: var(--red-dark);
    color: #ffffff !important;
}

.button:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    box-shadow: 0 0 10px 40px var(--red);
}

.button:active:after {
    box-shadow: 0 0 0 0 var(--red);
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s;
}

.button:active {
    top: 1px;
}

#nossosNucleos img {
    border-radius: 4rem;
    border: 5px solid var(--red);
    width: 430px;
}

.pagition {
    background: var(--red) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
}