/* Variables*/
:root {
    --primary-color: #7900DF;
    --secondary-color: #F8BA00;
  }

/* Commom */
html {
    font-size: 16px;
}
body {
    font-size: 1em;
    line-height: 135%;
    font-family: 'Roboto', sans-serif;
    background: #2A272D;
    color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 3rem;
    line-height: 3.5rem;
}
h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
}
h3 {
    font-size: 1.2rem;
}
p {
    font-size: 1em;
    margin: 0;
}
a {
    color: var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}
a:hover,
a:focus,
a:active {
    color: var(--secondary-color);  
}
a:focus,
a:active {
    color: var(--secondary-color);  
}
ol,ul, figure {
    list-style: none;
    margin:0;
    padding:0;
}
*:focus {
    outline: none;
}
.d-none {
    display: none !important;
}

/* Utils */
.color-primary {
    color: var(--primary-color);
}
.color-secondary {
    color: var(--secondary-color);
}
.text-xs {
    font-size: 14px;
}
.text-sm {
    font-size: 18px;
}
.text-md {
    font-size: 20px;
    margin-block-start: .5em;
    margin-block-end: .5em;
}
.text-lg {
    font-size: 48px;
}
.text-xl {
    font-size: 64px;
}
.text-white {
    color: white;
}
.mt-16 {
    margin-top: 16px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mt-24 {
    margin-top: 24px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mt-10 {
    margin-top: 10%;
}
.mr-24 {
    margin-right: 24px;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.flex-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}
.center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    color: var(--secondary-color);
}
.btn-primary img {
    margin-left: 10px;
}

.btn-link {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    z-index: 1;
    position: relative;
}
.btn-link:hover,
.btn-link:active,
.btn-link:focus {
    color: #ffcf40;
}
.btn-link img {
    margin-left: 10px;
}
.btn-sm {
    font-size: 16px;
    line-height: 19px;
}

/* Menu Navbar */
/* Menu Navbar */
.navbar {
    width: 100%;
    display: block;
    position: fixed;
    margin: 0;    
    background: transparent;
    z-index: 10;
}
.navbar #menu {
    -webkit-transition: all 200ms;
    transition: all 200ms;
}
.navbar-content {
    width: 100%;
    height: 60px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-item {
    display: inline-block;
}
.navbar .navbar-link {
    display: block;
    background: transparent;
    padding: 4px 6px;
    margin-left: 10px;
    font-size: 14px;
    color: #fff;
    background: transparent;
    transition: all ease-in-out 200ms;
}
.navbar .navbar-link:hover,
.navbar .navbar-item.active .navbar-link {
    background: #fff;
    color: #7900DF;
}
.navbar .navbar-link:active,
.navbar .navbar-link:focus {
    color: #fff;
}

/* Menu mobile */
.navbar-mobile {
    width: calc(100vw - 30px);
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    color: #FFF;
    padding: 0 15px;
    position: fixed;
    z-index: 11;
}
.menu-mobile {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu-mobile > li {
    margin: 0 1rem;
}
.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#menu-toggle {
    display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}
.menu-button::before {
    content: '';
    margin-top: -8px;
}
.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}
.menu-button-container {
    display: flex;
}
.menu-mobile {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    padding-top: 50px;
    left: 0;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    background: rgba(48, 45, 51, .95);
    z-index: -1;
    display: none;
}
#menu-toggle ~ .menu-mobile li .navbar-link {
    width: 100%;
    height: 0;
    margin: 0;
    border: 0;
    color: white;
    padding: 0.5em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
#menu-toggle ~ .menu-mobile li .navbar-link:focus,
#menu-toggle ~ .menu-mobile li .navbar-link:active {
    color: var(--secondary-color);
}
#menu-toggle:checked ~ .menu-mobile {
    display: flex;
}
#menu-toggle:checked ~ .menu-mobile li .navbar-link {
    border-top: 1px solid rgba(196, 196, 196, .1);
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
}
.menu-mobile > li {
    width: 100%;
    margin: 0;
}

/* Menu Mobile */

.navbar.navbar-show #menu,
.navbar-mobile.navbar-show {
    opacity: 1;
}
.navbar.navbar-hide #menu,
.navbar-mobile.navbar-hide {
    opacity: 0;
    display: none;
    pointer-events: none;
}


/* Home */

.linha {
    display: flex;
    width: 100%;
    margin: 0 -32px;
}
.coluna {
    flex: 1;
    margin: 0 32px;
}
#section-home.section {
    z-index: 11 !important;
    background: #E1EEDC url('../img/bg-home.png') no-repeat;
    background-size: 100%;
    background-position: center 115%;
}
.section-home .section-content {
    margin-top: -40%;
}
.section-home .section-title,
.section-home .section-subtitle {
    color: var(--primary-color);
}
.section-title {
    width: 100%;
}

.section-title2 {
    font: 700 3.2em/1.2 'Quicksand', sans-serif;
    color: #5e3473;
    text-shadow: 1px 0, -1px 0, 0 1px, 0 -1px;
}

.section-title3 {
    font: 700 3.2em/1.2 'Quicksand', sans-serif;
    color: #fff;
    text-shadow: 2px 0 #5e3473, -2px 0 #5e3473, 0 2px #5e3473, 0 -2px #5e3473;
}

.section-subtitle {
    margin-top: 16px;
    font-size: 20px;
    line-height: 140%;
}
.section-subtitle2, .section-subtitle3 {
    margin: 16px auto 0;
    font: 600 20px/140% 'Montserrat', sans-serif;
}

.section-subtitle2 {
    max-width: 560px;
}
.destaque {
    color: #5e3473;
}
[class^=icone-] {
    background: url(../img/email-24px.svg) 0 0 no-repeat;
    display: inline-block;
    height: 24px;
    width: 24px;
    vertical-align: bottom;
    &:hover {
        opacity: .8;
    }
}

[class^=icone-] + [class^=icone-] {
    margin-left: 10px;
}

.icone-chamada {
    background-image: url(../img/telefone-24px.svg);
}

.icone-local {
    background-image: url(../img/place-24px.svg);
}

.icone-instagram {
    background-image: url(../img/instagram-24px.svg);
}

.icone-facebook {
    background-image: url(../img/facebook-24px.svg);
}

.icone-linkedin {
    background-image: url(../img/linkedin-24px.svg);
}

.separador {
    border-top: 1px solid rgba(0,0,0,.15);
    padding: 16px 16px 0;
    margin: 32px -16px 0;
}

.section-logo {
    width: 100%;
    height: 60px;
    position: absolute;
    top: 0;
    padding: 15px 0;
    display: flex;
    align-items: center;
}
.section-scroll {
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
}
/* End of Home */

/* Como fazemos */
.section-como-fazemos .section-content {
    height: 90vh;
    margin-top: 10vh;
}
.section-tabs {
    height: 100%;
    background: #2A272D;
    display: flex;
    flex-direction: column;
}
.tabs-links {
    width: 100%;
}
.tab-item .tab-link {
    font-weight: bold;
    font-size: 30px;
    line-height: 100%;
    color: white;
    display: block;
    padding: 6px 0;
}
.tab-item.active .tab-link {
    color: var(--primary-color);
    
}
.tabs-content {
    width: 100%;
    padding: 30px 0 15px;
}
.tab-title {
    width: 100%;
    color: rgba(250, 250, 250, .025);
    font-weight: 900;
    font-size: 110px;
    line-height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: -25px;
    pointer-events: none;
    white-space: nowrap;
    text-align: right;
}
.tab-info {
    font-size: 16px;
    line-height: 140%;
}

/* Mobile */
.section-parceiros .section-content {
   
}

/* Slick Slider - Parceiros */
.slick-prev, 
.slick-next {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
    margin-top: -40px;
    z-index: 12;
}
.slick-prev {
    right: 40px;
}
.slick-prev:before {
    width: 30px;
    height: 30px;
    content: '';
    background: url('../img/ic-angle-left.svg') no-repeat center center;
    display: block;
    position: relative;
    z-index: 12;
}
.slick-next:before {
    width: 30px;
    height: 30px;
    content: '';
    background: url('../img/ic-angle-right.svg') no-repeat center center;
    display: block;
    position: relative;
    z-index: 12;
}

/* Produtos */
.section-produtos {
    width: 100%;
    position: relative;
}
.section.section-tangerino {
    background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 87.04%, rgba(0, 0, 0, 0.3) 98.88%), 
    linear-gradient(136.79deg, rgba(0, 0, 0, 0.4) 30.38%, rgba(0, 0, 0, 0.27) 64.32%, rgba(0, 0, 0, 0.35) 77.92%),
    url('../img/bg-tangerino.png');
    background-position: 35% center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section.section-argos {
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.3)),
    url('../img/bg-argos.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section.section-adam {
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url('../img/bg-adam.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-produtos-content {
    margin-top: 15%;
}
.section-info {
    display: flex;
    justify-content: baseline;
    flex-direction: column;
    margin-top: 24px;
}
.section-info-content {
    text-align: left;
    display: flex;
    align-items: baseline;
    flex-direction: column;
}
.section-info-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
}
.section-info-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    max-width: 90%;
}
.section-count {
    position: absolute;
    text-align: center;
    right: 0;
    bottom: -15px;
}
.section-count-number {
    margin: 0;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    color: rgba(255, 255, 255, .9);
}

/* Esquadrão */
.section.section-esquadrao {
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url('../img/bg-esquadrao.png');
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Footer */
.section-footer {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
}
.footer-info {
    background: #ff9e4d;
    color: #fff;
    padding: 40px;
    position: relative;
    flex: 0 0 36%;
    word-break: break-word;
}
.footer-info:before {
    content: "";
    border: 32px solid #5e3473;
    position: absolute;
    top: -32px;
    left: -32px;
}
.footer-info h3 {
    font: 700 2.5em/1.2 'Quicksand', sans-serif;
}

.m-left {
    margin: 0 0 0 24px;
}
.footer-form p {
    margin: 0 0 24px;
}

.footer-info p {
    margin: 16px 0 0;
    font-weight: 700;
}
.footer-form .footer-container {
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}
.footer-form h2 {
    margin: -32px 0 32px;
}
.footer-form input, .footer-form textarea {
    box-sizing: border-box;
    background: #f8f8f8;
    padding: 10px;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 6px;
}
.footer-form input:focus, .footer-form textarea:focus {
    background: #fff;
}
.footer-form button {
    background: #ff9e4d;
    border: 0;
    color: #fff;
    font-weight: 700;
    padding: 15px 0;
    width: 100%;
    display: block;
    max-width: 160px;
    border-radius: 6px;
    margin: 32px auto 0;
    font-size: 1em;
}
.btn-footer {
    background: #5e3473;
    color: #fff;
    font-weight: 700;
    padding: 8px 24px;
    line-height: 20px;
    display: inline-block;
    border-radius: 6px;
    margin: 16px 24px 0 0;
}
.footer-form label {
    font-weight: 700;
    display: block;
    margin: 0 0 10px;
}
.footer-social {
    width: 100%;
    height: 30%;
    background: #410078;
}
.footer-container {
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
}
.footer-social-container {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.section-social {
    display: flex;
    flex-direction: column;
}
.section-social-item {
    margin-bottom: 4px;
}
.section-social-link {
    padding: 5px 10px;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
}

/* Back to top */
.back-to-top-link {
    padding: 15px;
}

/* Bullets */
#pp-nav span, 
.pp-slidesNav span {
    border: none;
    background: hsla(0, 1%, 44%, 0.2);
}
#pp-nav li .active span, 
.pp-slidesNav .active span {
    background: var(--secondary-color);
}

/* Responsive */
.section {
    background: #2A272D;
    text-align: left;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: hidden;
}
.section-container {
    width: calc(100vw - 30px);
    max-width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.section-content {
    width: 100%;
}
.footer-container,
.container {
    margin: auto;
    padding: 0 15px;
}


/* Parceiros */
.section-clara {
    background: linear-gradient(#222 60px,#f8f8f8 60px);
    color: #555;
    font-family: 'Montserrat', sans-serif;
}
.bg-footer {
    background: linear-gradient(to left,#5e3473 35%,#f8f8f8 35%)!important;
}
.section-parceiros .section-subtitle {
    display: none;
}

.lista-parceiros {
    display: flex;
    margin: 30px -10px -10px;
    flex-wrap: wrap;
    font-size: .85em;
    line-height: 1.4;
}

.lista-parceiros figure {
    background: #fff;
    margin: 10px;
    flex: 0 0 calc(16.666% - 20px);
    position: relative;
    overflow: hidden;
}

.lista-parceiros figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}


@media (min-width: 930px) {
    .lista-parceiros figcaption {
        opacity: 0;
        background: rgba(0,0,0,.7);
        top: 0;
        color: #fff;
    }
    .lista-parceiros figure:hover figcaption {
        opacity: 1;
    }
    .lista-parceiros a:after {
        content: ">";
        font-style: normal;
        margin: 0 0 0 4px;
    }
}



.lista-parceiros img {
    width: 100%;
    height: auto;
    display: block;
}

.lista-parceiros h4 {
    color: #f7c224;
    margin: 0 0 6px;
}

.lista-parceiros a {
    color: #f7c224;
    font-style: italic;
    font-weight: 700;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    border: 2px solid #f7c224;
}

.lista-parceiros a:hover {
    background: #f7c224;
    color: #fff;
}

.lista-parceiros p {
    margin: 0 0 10px;
}