/*===== GOOGLE FONTS =====*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*===== VARIABLES CSS =====*/

:root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --surface-color: #fff;
    --curve: 40;
    --bg-pink: #242021;
    --black-color: #6a515e;
    --textt-color: #474647;
    --first-color: #e00109;
    --first-color-alt: #67758a;
    --title-color: #e00109;
    --text-color: #e9e6e6;
    --text-color-light: #A6A6A6;
    --body-color: #FBFEFD;
    --container-color: #e00109;
    /*========== Font and typography ==========*/
    --body-font: 'Raleway', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1rem;
    --h2-font-size: 1rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes ==========*/
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 768px) {
     :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}


/*========== BASE ==========*/

html {
    overflow-x: hidden !important;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'Raleway', sans-serif !important;
}

body {
    border: 0;
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif !important;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

body.dark-theme {
    --title-color: #F1F3F2;
    --text-color: rgb(199, 209, 204, .1);
    --body-color: #303030;
    --container-color: #ffffff;
    --bg-pink: #fff
}

.body-inner {
    position: relative;
    overflow: hidden;
}

.btn-primary {
    border: 2px solid #e00109 !important;
    border-radius: 20px !important;
    padding: 0px 20px;
    font-weight: bold !important;
    text-transform: uppercase !important;
    color: #fff;
    transition: 350ms;
    font-size: 14px;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
}

@media (max-width: 767px) {
    .btn-primary {
        font-size: 13px;
        margin: 10px 0;
    }
}

.btn-white.btn-primary {
    background: #fff;
    color: #e00109;
}

.btn-primary {
    background: #e00109;
}

.btn-primary:hover,
.btn-dark:hover,
.btn-white.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-primary:hover:active,
.btn-primary:hover:focus,
.btn-dark:hover:active,
.btn-dark:hover:focus,
.btn-white.btn-primary:hover:active,
.btn-white.btn-primary:hover:focus {
    color: #fff;
    background-color: transparent !important;
}

.general-btn {
    margin-top: 50px;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,
h2,
h3,
p,
ul {
    margin: 0;
}

h1 {
    font-size: 2rem;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.scroll-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}


/*========= SCROOL TOP ==========*/

.scrolltop {
    position: fixed;
    right: 2rem;
    bottom: -20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .3rem;
    background: #e00109;
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    transition: .4s;
    visibility: hidden;
    box-shadow: 0 1px 4px #ccc;
}

.scrolltop:hover {
    transform: translateY(-10px);
    text-decoration: none;
}

.scrolltop__icon {
    font-size: 2rem;
    color: white
}

.show-scroll {
    visibility: visible;
    bottom: 1rem;
}


/*========= END SCROOL TOP ==========*/


/* ======== Whatsapp =========*/

.action a {
    color: #000;
    text-decoration: none;
}

.action {
    position: fixed;
    bottom: 65px;
    right: 50px;
    width: 80px;
    height: 80px;
    background: rgb(8, 245, 146);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

.action span img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* ALTERE AQUI A COR DO ÍCONE DO BOTÃO */
    /*font-size: 60px;*/
    transition: 0.3s ease-in-out;
}

.action.active span {
    transform: rotate(720deg);
}

.action ul {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1em;
    position: absolute;
    margin-bottom: 20px;
    right: 0px;
    background: #fff;
    min-width: 200px;
    padding: 10px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.action.active ul {
    font-family: 'Raleway', sans-serif !important;
    bottom: 65px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.action.active ul li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    font-size: 1em;
}

.action ul li:hover {
    font-weight: 600;
}

.action ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.action ul li img {
    margin-right: 10px;
    transform: scale(0.8em);
}

.action ul li:hover img {
    opacity: 0.8;
}

.msg {
    position: fixed;
    bottom: 75px;
    right: 110px;
    width: 200px;
    height: 55px;
    background: rgb(8, 245, 146);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    z-index: 999999;
}

.msg span {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6a515e;
    font-size: 1em;
    transition: 0.5s ease-in-out;
    font-weight: bold;
}


/* STYLE DO FRAME DO BLIP CHAT */

#blip-chat-open-iframe {
    display: none !important;
}

#blip-chat-container {
    height: 100% !important;
    bottom: 0 !important;
    right: 0 !important;
}

#blip-chat-iframe {
    position: absolute !important;
    top: 0 !important;
    right: -400px !important;
    bottom: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    transition: 0.5s !important;
}

#blip-chat-iframe.blip-chat-iframe-opened {
    right: 0 !important;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2) !important;
}


/* ======== End Whatsapp =========*/


/*========= INDICATIONS ===========*/

.indication {
    width: 100%;
    height: 6.4vh;
    top: 1rem;
    padding-left: 6rem;
    font-size: 1rem;
    position: relative;
    display: flex;
    padding-top: 1rem;
    background-color: transparent;
}

.indication a {
    margin: 0px 5px;
    list-style: none;
    color: var(--bg-pink);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    list-style: none;
}

.indication a:hover {
    list-style: none;
    color: #e00109;
}

.indication p {
    color: var(--bg-pink);
    font-weight: 600;
    border-bottom: 2px solid #e00109;
    text-transform: uppercase;
}

@media screen and (max-width:900px) {
    .indication {
        width: 100%;
        padding: 0;
        padding-left: 1.5rem;
        margin-top: -1rem;
        align-items: center;
    }
    .indication a {
        font-size: .9rem;
        margin: 0.3rem;
    }
    .indication p {
        font-size: .9rem;
    }
}


/*======== END INDICATIONS =========*/

.container-card {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 0 5rem 0;
}

.content-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}

.card {
    display: flex;
    position: relative;
    height: 400px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 380px;
    width: 380px;
    padding: 20px;
    border-radius: 5px;
    background: linear-gradient(to right, #dddddf, #d0d0d1);
    margin: 10px 8px;
    box-shadow: 5px 5px 5px rgb(55, 49, 50, .3);
    transition: 0.5s;
    font-weight: 400;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.card h1 {
    text-align: center;
    margin-top: -10rem;
    color: #e00109;
    text-transform: uppercase;
    font-size: 1.3em;
    line-height: 1em;
    margin-bottom: 10px;
    font-weight: bold;
}

.card h3 {
    text-align: center;
    padding: 0 15px 0 15px;
    color: #373132;
    font-size: 1rem;
}

.card h1:hover,
.card h3:hover {
    visibility: hidden;
}

.card .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card .circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    clip-path: circle(90px at center);
    transition: 0.5s;
}

.card:hover .circle::before {
    background: #373132;
    border-radius: 20px;
    clip-path: circle(400px at center);
}

.card img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 220px;
    pointer-events: none;
    transition: 0.5s;
}

.card:hover img {
    top: 80%;
    left: 70%;
    height: 150px;
}

.card img.ponto {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 240px;
    pointer-events: none;
    transition: 0.5s;
}

.card:hover img.ponto {
    top: 81%;
    left: 70%;
    height: 150px;
}

.card .content-card {
    position: relative;
    width: 24rem;
    height: 35rem;
    padding: 10px 15px 30px 15px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.card:hover .content-card {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.card .content-card h2 {
    margin-top: -1rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.3em;
    line-height: 1em;
    margin-bottom: 10px;
    text-align: center;
}

.card .content-card p {
    color: #ffffff;
    font-size: .95rem;
    margin-bottom: 10px;
}

.card .content-card a {
    font-size: 1rem;
    position: relative;
    padding: 10px 20px;
    border-radius: 20px;
    background: #e00109;
    color: #ffffff;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.card .content-card a:hover {
    border-radius: 20px;
    border: 2px solid #e00109;
    background-color: transparent;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
}

@media screen and (min-width:768px) and (max-width:1150px) {
    .container-card {
        margin-top: 15rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0 0 5rem 0;
    }
    .content-box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px;
    }
    .card {
        margin: 15px 15px;
        padding: 0;
        align-items: flex-start;
        position: relative;
        height: 10vh;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        width: 310px;
    }
    .card .content-card {
        top: 1rem;
        position: relative;
        width: 100%;
        transition: 0.5s;
        opacity: 0;
        visibility: hidden;
    }
    .card .content-card p {
        color: #ffffff;
        font-size: 1.1rem;
        width: 100%;
        padding: 0;
        left: 0;
        align-items: flex-start;
        justify-content: left;
        text-align: left;
    }
    .card .content-card a {
        font-size: 1.3rem;
        position: relative;
        border-radius: 20px;
        background: #e00109;
        color: #ffffff;
        margin-top: 10px;
        display: inline-block;
        text-decoration: none;
        font-weight: 600;
        float: left;
        align-items: flex-start;
        justify-content: left;
        text-align: left;
    }
    .card:hover img {
        top: 75%;
        left: 73%;
        height: 40%;
        width: 55%;
    }
    .card img.pontoSF {
        height: 200px;
        pointer-events: none;
        transition: 0.5s;
    }
    .card:hover img.pontoSF {
        top: 80%;
        left: 65%;
        height: 40%;
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .container-card {
        margin-top: 3rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .content-box {
        flex-direction: column;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .card {
        padding: 0 0 1rem 0;
        align-items: flex-start;
        position: relative;
        height: 450px;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        width: 350px;
    }
    .card h1 {
        text-align: center;
        color: #e00109;
        text-transform: uppercase;
        font-size: 1.3em;
        line-height: 1em;
        margin-bottom: 10px;
        font-weight: bold;
        width: 100%;
    }
    .card h3 {
        text-align: center;
        padding: 0 15px 0 15px;
        color: #373132;
        font-size: 1.3rem;
    }
    .card img {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 200px;
        pointer-events: none;
        transition: 0.5s;
    }
    .card img.ponto {
        height: 200px;
        pointer-events: none;
        transition: 0.5s;
    }
    .card:hover img.ponto {
        top: 83%;
        left: 70%;
        height: 25%;
        width: 45%;
    }
    .card img.pontoSF {
        height: 200px;
        pointer-events: none;
        transition: 0.5s;
    }
    .card:hover img.pontoSF {
        top: 80%;
        left: 70%;
        height: 20%;
        width: 45%;
    }
    .card:hover {
        height: 600px;
        padding: 0;
        margin: 0;
    }
    .card .content-card {
        position: relative;
        width: 100%;
        transition: 0.5s;
        opacity: 0;
        visibility: hidden;
    }
    .card .content-card p {
        color: #ffffff;
        font-size: 1.1rem;
        width: 100%;
        padding: 0;
        left: 0;
        align-items: flex-start;
        justify-content: left;
        text-align: left;
    }
    .card .content-card a {
        font-size: 1.3rem;
        position: relative;
        border-radius: 20px;
        background: #e00109;
        color: #ffffff;
        margin-top: 10px;
        display: inline-block;
        text-decoration: none;
        font-weight: 600;
        float: left;
        align-items: flex-start;
        justify-content: left;
        text-align: left;
    }
    .card:hover img {
        top: 83%;
        left: 75%;
        height: 30%;
        width: 45%;
    }
    .card:hover .refeitorio {
        top: 90%;
        left: 70%;
        height: 25%;
        width: 40%;
    }
}

@media (max-width: 420px) {
    .card .content-card {
        padding: 20px;
    }
}


/*========== BUTTONS ==========*/

.button {
    font-weight: 600;
    font-size: 16px;
    margin-left: 20px;
    display: inline-block;
    background-color: #e00109;
    color: #FFF;
    padding: .75rem 1rem;
    border-radius: 2rem;
    transition: .3s;
}

.button:hover {
    color: #0074b4;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #e00109;
}