/* Keyframes */

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

/* Configurações globais */

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
    outline: none;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
}

:root {
    --white: #fff;
    --purple: #67256b;
    --orange: #da6927;
    --black: #000;
    --full: 100%;
}

.sticky-top {
    position: --webkit-position;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.container-full {
    width: var(--full);
    max-width: 1920px;
    margin: auto;
}

.container-static {
    width: var(--full);
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.header {
    background-color: var(--white);
}

.header .header-wrapper nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    height: 208px;
}

.header .header-wrapper nav ul a {
    color: var(--purple);
}

.header .header-wrapper nav ul .nav a:hover {
    transition: 0.5s;
    padding: 5px;
    border: 2px solid #67256b;
}

.header .header-wrapper nav ul .logo figure img:hover {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	animation: heartbeat 1.5s ease-in-out infinite both;
}

@media(max-width: 1050px){
    .header .header-wrapper nav ul .servicos-menu{
        margin-right: 56px !important; 
        margin-left: 36px !important;
    }
    .header .header-wrapper nav ul .cases-menu{
        margin-left: 63px !important; 
        margin-right: 65px !important;
    }
}


/* Footer */

.footer {
    height: 100%;
    min-height: 385px;
}

.footer .footer-wrapper .topSide .topSide-wrapper {
    height: 129px;
    margin-top: 50px;
}

.footer .footer-wrapper .topSide .topSide-wrapper .logo figure img {
    width: 265px;
    height: 60px;
}

.footer .footer-wrapper .topSide .topSide-wrapper .logo figure img:hover {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	animation: heartbeat 1.5s ease-in-out infinite both;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .leftColumn {
    width: 44.7%;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .leftColumn .wrapper .aboutTitle h1,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .middle-column .wrapper .title h1,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .title h1{
    color: var(--orange);
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .leftColumn .wrapper .aboutText p {
    width: 252px;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .middle-column {
    width: 31.1%;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .middle-column .wrapper .nav nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .middle-column .wrapper .nav ul li {
    margin-bottom: 21px;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .middle-column .wrapper .nav ul li:hover {
    color: var(--purple);
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .whatsapp,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .facebook,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .instagram,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .email,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .address {
    margin-bottom: 23px;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .whatsapp:hover,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .facebook:hover,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .instagram:hover,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .email:hover,
.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .address:hover {
    color: var(--purple);
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .whatsapp a::before {
    content: "\ea93";
    font-family: 'icomoon';
    font-size: 16px;
    margin-right: 7px;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .facebook a::before {
    content: "\ea91";
    font-family: 'icomoon';
    font-size: 16px;
    margin-right: 7px;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .instagram a::before {
    content: "\ea92";
    font-family: 'icomoon';
    font-size: 16px;
    margin-right: 7px;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .email a::before {
    content: "\e900";
    font-family: 'icomoon';
    font-size: 16px;
    margin-right: 7px;
}

.footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn .wrapper .contacts .contacts-wrapper .address a::before {
    content: "\e903";
    font-family: 'icomoon';
    font-size: 16px;
    margin-right: 7px;
}

/* Engenho area */

.engenho-area .engenho-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange);
    height: 35px;
}

.engenho-area .engenho-wrapper .logo figure img {
    display: flex;
    align-items: center;
}

/* Whats botão flutuante */
.whats-icon {
    position: fixed;
    bottom: 50px;
    right: 0;
    z-index: 1020;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: #36af24;
    padding: 5px;
    border: 1px solid #fff;
}

.whats-icon figure img {
    height: 60px;
}

/* LGPD */

#popup {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 50px;
    background: var(--purple);
    bottom:30px;
    z-index:9999;
    left: 0px;
    right: 0px;
}

#popup .wrapper {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#popup .wrapper .text span {
    color: #fff;
    font-size: 18px;
}

#popup .wrapper ul {
    padding-top: 10px;
    padding-bottom: 10px;
}

#popup .wrapper ul li {
    color: #fff;
}

#popup .wrapper .btn {
    background-color: var(--white) !important;
    margin-left: 20px;
    margin-top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--purple);
    width: 200px;
    height: 30px;
    border-radius: 10px;
}

#popup .wrapper .btn a {
    color: var(--purple) !important;
    font-weight: bold;
}

.check-privacy {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.check-privacy #privacy { 
    height: auto;
    width: fit-content;
    margin-top: 3px;
    margin-right: 5px;
}

.pop-up-cookie {
    position: fixed;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100px;
    z-index: 9999;
    padding: 14px;
    box-sizing: border-box;
} 

.pop-up-cookie .content-wrapper {
    display: flex;
    background-color: var(--purple);
    justify-content: space-evenly;
    width: 100%;
    align-items: center;
    margin-bottom: 15px;
}

.pop-up-cookie .content-wrapper p {
    margin-bottom: 0 !important;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-align: center;
}

.pop-up-cookie .content-wrapper p a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
}

.pop-up-cookie .content-wrapper .btn-privacy {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80px;
    width: 100%;
    height: 20px;
    text-transform: uppercase;
    color: var(--purple);
    background-color: #fff;
    margin: 15px 0;
    font-weight: bold;
}

/* Nav Mobile */
.navbar-mobile {
    display: none;
}

/* Yield */
#yield {
    color: var(--orange);
    transition: 0.5s;
    padding: 5px;
    border: 2px solid #da6927;
}

/* Media querie */

@media(max-width: 992px) {
    .header .header-wrapper nav ul {
        display: none;
    }

    .navbar-mobile {
        display: block;
    }
    .case-modal .case-modal-wrapper .close-modal{
        height: 54px !important;
    }
    .case-modal .case-modal-wrapper .close-modal i{
        font-size: 25px !important;
        margin-right: 18px;
    }
    .navbar-mobile .navbar-mobile-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index:10;
        height: 100px;
        padding: 0 20px;
        background-color: var(--white);
    }

    .navbar-mobile .navbar-mobile-wrapper .logo-area figure img {
        width: 200px;
        height: 50px;
    }

    .navbar-mobile .navbar-mobile-wrapper .menu i {
        font-size: 40px;
    }

    .navbar-mobile .nav-content {
        position: fixed;
        width: 0;
        height: 100vh;
        top: 0;
        left: 0;
	z-index:10;
        overflow: hidden;
        background-color: var(--purple);
    }

    .navbar-mobile .nav-content .close {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20%;
		position: absolute;
		right: 25px;
        top: -75px;
    }

    .navbar-mobile .nav-content .close i {
		color: var(--white);
		font-size: 25px;
	}

	.navbar-mobile .nav-content nav ul li {
		color: var(--white);
		padding: 20px 10px;
		text-transform: uppercase;
		font-size: 20px;
	}

	.navbar-mobile .nav-content nav ul li a {
		font-size: 25px;
		font-weight: bold;
	}

	.nav-mobile .nav-content ul,
	.nav-mobile .nav-content .close {
		opacity: 0%;
	}

	.nav-mobile-active .close,
	.nav-mobile-active ul {
		animation: fadeIn 0.4s 0.4s ease-in-out alternate forwards;
        margin-left: 20px;
        margin-top: 130px;
        list-style: none;
	}

	.nav-mobile-active {
		width: 50% !important;
		transition: all 0.6s ease-in-out !important;
	}

    .footer .footer-wrapper {
        margin-top: 130px;
        /* padding: 0 10px; */
    }

    .footer .footer-wrapper .bottomSide .bottomSide-wrapper {
        flex-direction: column;
    }

    .footer .footer-wrapper .topSide .topSide-wrapper .logo figure img {
        /* width: 100%; */
        /* height: 65px; */
    }

    .footer .footer-wrapper .bottomSide .bottomSide-wrapper .leftColumn,
    .footer .footer-wrapper .bottomSide .bottomSide-wrapper .middle-column,
    .footer .footer-wrapper .bottomSide .bottomSide-wrapper .rightColumn,
    .footer .footer-wrapper .bottomSide .bottomSide-wrapper .leftColumn .wrapper .aboutText p {
        width: 100%;
    }

    .footer .footer-wrapper .bottomSide .bottomSide-wrapper .leftColumn .wrapper .aboutText p {
        margin-bottom: 48px;
    }

    .pop-up-cookie .content-wrapper {
        flex-direction: column;
        padding: 15px;
    }

}
