/*ESTILOS GERAIS*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,300&family=Montserrat:wght@300;400;700&display=swap');

@media all and (min-width: 993px) {
    .container {
        width: 80%;
    }
}

/*******************************************************************************
*                                   VARIÁVEIS                                  *
********************************************************************************/

:root {
    --primary-color: #5BC5C3;
    --shadow-color: #439190;
    --hover-color: #4FABA9;
    --dark-color: #252830;
    
    --second-color: #59A6F7;
    --third-color: #51C481;
    --third-color-rgb: 81, 196, 29;
    --third-color-rgb-shadow: rgba(var(--third-color-rgb), 0.7);
    
    --contrast-color: #F76459;
    --contrast-dark-color: #CC9D91;
    
    --white-color: #FFFFFF;
    --gray-light-color: #E5E5E5;
    
    --title-color: #272C3A;
}

/*SCROLBAR CHROME*/
/* width */
::-webkit-scrollbar {
    width: 6px;
    border-radius: 3px;
}

::-webkit-scrollbar:horizontal {
    width: 6px;
    border-radius: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#container {
    text-align: center;
}

a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4em;
    color: #30353e;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2em;
    color: var(--title-color);
    letter-spacing: normal;
    margin: 0;
}

h2 strong {
    font-weight: 700;
    color: var(--third-color);
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2em;
    margin: 0;
    color: #30353e;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    color: #30353e;
}

p {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #30353e;
}

.btn-container {
    width: 100%;
    text-align: center;
}

.btn-cta {
    background-color: var(--third-color);
    padding: 10px 30px !important;
    border-radius: 55px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 20px !important;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative;
    bottom: 0;
}

.btn-cta span {
    font-size: 15px;
    font-weight: normal;
}

.btn-cta:hover {
    position: relative;
    bottom: 5px;
    cursor: pointer;
}

.btn-cta.dark {
    background-color: #50555e;
}

.btn-cta.dark:hover {
    background-color: #30353e;
}

.modal {
    border-top: 10px solid #42C920;
    overflow: hidden;
}

.modal .modal-title {
    padding: 15px 24px;
    height: 64px;
    background-color: #DDD;
    margin-bottom: 20px;
}

a.modal-trigger {
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #30353e;
    border: 1px solid #30353e;
    padding: 5px 10px;
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.1s ease-out;
}

a.modal-trigger:hover {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background-color: #42C920;
}

@media all and (max-width: 500px) {
    h2 {
        font-size: 30px;
    }
}

/*SEPARADOR DE SEÇÕES*/

.section-separator {
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: -1px;
    text-align: center;
}

.section-separator svg {
    height: 100%;
    
}

.title-separator {
    width: 130px;
    height: 6px;
    border-radius: 4px;
    background-color: var(--title-color);
    margin: 0 auto 30px;
}

#whatsapp-btn {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgb(27, 215, 65);
    background-image: url(../base/img/whatsapp.png);
    background-position: center;
    background-size: 86%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    z-index: 10;
    animation: 1.5s linear 0s infinite normal none running pulse;
}

@keyframes pulse {
    25% {
        box-shadow: rgba(27, 215, 65, 0.9) 0px 0px 0px 0px;
        /*box-shadow: rgba(255, 255, 255, 0.9) 0px 0px 0px 0px;*/
        
    }
    75% {
        box-shadow: rgba(27, 215, 65, 0) 0px 0px 0px 10px;
        /*box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 10px;*/
    }
}

/*SEÇÃO DE CABEÇALHO*/

#header-section {
    position: relative;
    box-sizing: border-box;
    height: auto;
    background: transparent;
    padding-bottom: 100px;
}

#header-section .brand-logo {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
}

#header-section nav {
    background-color: transparent;
    box-shadow: none;
    height: 90px;
}

#header-section nav .nav-wrapper {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media all and (max-width: 500px) {
    #header-section nav {
        height: 70px !important;
    }    
}

#header-section .bg {
    background-image: url(../base/img/optimized/headlpzv.webp);
    background-position: 50% 50%;
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#header-section a.btn-cta {
    margin-top: 30px;
}

#header-section .header-content-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 100px auto;
}

#header-section .header-content-container .header-content-text {
    width: 100%;
    /*padding-left: 20px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#header-section .header-content-container .header-content-text-2, #header-section .header-content-container .header-content-text-3 {
    display: none;
}

#header-section .header-content-container .header-content-video {
    width: 50%;
    padding-right: 20px;
}

#header-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4em;
    color: #FFF;
    text-align: center; 
    max-width: 1000px;
    margin: 10px 0 10px 0;
}

#header-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.4em;
    color: #FFF;
    text-align: center; 
    max-width: 700px;  
}

#header-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4em;
    color: #FFF;
    text-align: left; 
    max-width: 700px;  
    margin: 40px auto 0;
    text-shadow: 0px 0px 15px #7e7e7e;
}

#header-section .container .v-container {
    width: 100%;
    margin: 0 auto;
}

@media all and (max-width: 480px) {
    #header-section .header-content-container {
        margin: 50px auto;
    }
    
    #header-section .brand-logo img {
        height: 25px;
        width: auto;
    }
    
    #header-section h1 {
        margin: 10px 0 50px 0;
    }
    
    #header-section h2 {
        margin: 10px 0 50px 0;
    }
}

@media all and (max-width: 660px) {
    h1 {
        font-size: 26px !important;
    }
    
    #header-section .container .v-container {
        width: 100%;
        margin: 0 auto;
    }
    
    .brand-logo {
        position: relative !important;
        left: unset !important;
        top: unset !important;
    }
    
    #header-section .header-content-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    #header-section .header-content-container .header-content-text {
        display: none;
    }
    
    #header-section h1, #header-section h2 {
        text-align: center;
    }
    
    #header-section .header-content-container .header-content-text-2, #header-section .header-content-container .header-content-text-3 {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    #header-section .header-content-container .header-content-video {
        width: 100%;
        padding: 0;
    }
}

@media all and (min-width: 661px) and (max-width: 992px) {
    .brand-logo {
        position: relative !important;
        left: unset !important;
        top: unset !important;
    }
    
    #header-section .header-content-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    #header-section .header-content-container .header-content-text {
        display: none;
    }
    
    #header-section h1, #header-section h2 {
        text-align: center;
    }
    
    #header-section .header-content-container .header-content-text-2, #header-section .header-content-container .header-content-text-3 {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    #header-section .header-content-container .header-content-video {
        width: 100%;
        padding: 0;
    }
    
    h1 {
        margin: 20px auto 0 !important;
    }
    
    #header-section .container .v-container {
        width: 70%;
        margin: 0 auto;
    }
    
}



.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 15px 0px #000000; 
    box-shadow: 0px 0px 15px 0px #000000;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*SEÇÃO DE PROBLEMA*/

#problem-section {
    background: linear-gradient(to bottom, #fff, var(--gray-light-color));
    padding: 100px 0;
    position: relative;
}

#problem-section .btn-cta {
    margin-top: 70px;
}

#problem-section .container h2 {
    text-align: center;
    margin-bottom: 150px !important;
}

#problem-section .container .row {
    margin: 0 !important;
}

#problem-section .problem-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #545454;
    padding: 10px;
    border-radius: 20px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

#problem-section .problem-container span {
    font-size: 40px;
    color: #FFFFFF;
}

#problem-section .problem-container div {
    padding-left: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
}

@media all and (max-width: 1110px) {
    #problem-section .container h2 {
        margin-bottom: 40px !important;
    }
    
    #problem-section .problem-container {
        height: auto !important;
    }
    
}

/*SEÇÃO MENSAGEM CTA*/

#cta-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

#cta-section h4 {
    width: 80%;
    text-align: center;
    color: #FFF;
    margin: 0 auto;
}

@media all and (max-width: 660px) {
    #cta-section h4 {
        width: 100%;
    }
}

#cta-section h4 strong {
    font-weight: 700;
}

/*SEÇÃO DE MÉTODO */

#method-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--white-color);
}

#method-section h2 {
    text-align: center;
    margin-bottom: 150px !important;
}

#method-section .method-container {
    background-color: var(--shadow-color);
    border-radius: 20px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#method-section .method-container .method-step-container {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#method-section .method-container .method-step-container .step-item {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 3px dashed var(--white-color);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease-out;
    position: relative;
    box-sizing: border-box;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

#method-section .method-container .method-step-container .step-item .line {
    position: absolute;
    bottom: -50px;
    left: -3px;
    width: calc(100% + 6px);
    height: 0px;
    background-color: var(--primary-color);
    transition: all 0.2s ease-out;
}

#method-section .method-container .method-step-container .step-item:not(.active):hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

#method-section .method-container .method-step-container .step-item.active {
    /*-webkit-box-shadow: 0px 0px 15px 0px #888888;*/
    /*box-shadow: 0px 0px 15px 0px #888888;*/
    border: 3px dashed var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 700;
}

#method-section .method-container .method-step-container .step-item.active .line {
    position: absolute;
    bottom: -50px;
    left: -3px;
    width: calc(100% + 6px);
    height: 80px;
    background-color: var(--primary-color);
}

#method-section .method-container .method-step-description-container {
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 20px;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

#method-section .method-container .method-step-description-container .method-step-goal-description-container {
    width: 200px;
    border: 2px dashed var(--white-color);
    position: relative;
    margin-right: 10px;
    border-radius: 10px;
    padding: 10px;
}

#method-section .method-container .method-step-description-container .method-step-tools-description-container {
    width: calc(100% - 210px);
    border: 2px dashed var(--white-color);
    position: relative;
    border-radius: 10px;
}

#method-section .method-container .method-step-description-container .method-step-goal-description-container .method-step-description-title,
#method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-description-title {
    position: absolute;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    left: 10px;
    top: -10px;
    color: var(--white-color);
    background-color: var(--primary-color);
    width: auto;
    padding-right: 5px;
    padding-left: 5px;
    line-height: 1;
}

#method-section .method-container .method-step-description-container .method-step-goal-description-container .method-step-goal-description {
    color: var(--white-color);
    text-align: justify;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 300;
}

#method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-tools-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 5px;
}

#method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-tools-container .step-tool {
    background: var(--white-color);
    box-shadow: 0 14px 15px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 30px;
    height: 160px;
    margin: 10px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
}

#method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-tools-container .step-tool .tool-icon {
    color: var(--third-color);
}

#method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-tools-container .step-tool .tool-icon span {
    font-size: 65px;
    margin-bottom: 15px;
}

#method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-tools-container .step-tool .tool-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--title-color);
    line-height: 1;
    text-align: center;
}

@media all and (max-width: 992px) {
    #method-section .method-container .method-step-description-container {
        width: 100%;
        background-color: var(--primary-color);
        border-radius: 20px;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px;
    }
    
    #method-section .method-container .method-step-description-container .method-step-goal-description-container {
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    #method-section .method-container .method-step-description-container .method-step-tools-description-container {
        width: 100%;
    }
    
    #method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-tools-container {
        max-height: 550px;
        overflow: auto;
    }
    
    #method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-tools-container .step-tool {
        padding: 10px;
        border-radius: 30px;
        height: 140px;
        margin: 10px;
        width: 180px;
    }
    
    #method-section .method-container .method-step-description-container .method-step-tools-description-container .method-step-tools-container .step-tool .tool-description {
        font-size: 12px;
    }
}

/*SEÇÃO DE DIFERENCIAIS/COMPARAÇÃO */

#diff-section {
    background: var(--gray-light-color);
    padding: 100px 0;
    position: relative;
}

#diff-section h2 {
    text-align: center;
    margin-bottom: 150px !important;
}

#diff-section .diff-item-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 100px;
}

#diff-section .diff-item-container .diff-line-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#diff-section .diff-item-container .diff-line-item .diff-item-title {
    background-color: var(--second-color);
    color: var(--white-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 215px;
    height: 110px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

#diff-section .diff-item-container .diff-line-item .diff-item-title.highlight {
    background-color: var(--third-color);
    color: var(--white-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 215px;
    height: 110px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
}

#diff-section .diff-item-container .diff-line-item .diff-item-positive {
    background-color: var(--white-color);
    color: var(--title-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-weight: 300;
    width: calc(50% - 215px);
    height: 110px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 5px;
}

#diff-section .diff-item-container .diff-line-item .diff-item-positive span {
    margin-right: 10px;
    color: var(--third-color);
    font-size: 35px;
}

#diff-section .diff-item-container .diff-line-item .diff-item-negative {
    background-color: var(--white-color);
    color: var(--title-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-weight: 300;
    width: calc(50% - 215px);
    height: 110px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 5px;
}

#diff-section .diff-item-container .diff-line-item .diff-item-negative span {
    margin-right: 10px;
    color: var(--contrast-color);
    font-size: 35px;
}

@media all and (max-width: 1320px) {
    #diff-section .diff-item-container .diff-line-item {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 10px;
        box-shadow: 0 14px 15px 0 rgba(0, 0, 0, 0.2);
    }
    
    #diff-section .diff-item-container .diff-line-item .diff-item-title {
        width: 100%;
        height: 80px;
    }

    #diff-section .diff-item-container .diff-line-item .diff-item-title.highlight {
        width: 100%;
        height: 80px;
    }

    #diff-section .diff-item-container .diff-line-item .diff-item-positive {
        width: 100%;
        height: 80px;
    }

    #diff-section .diff-item-container .diff-line-item .diff-item-negative {
        width: 100%;
        height: 80px;
    }
}

@media all and (max-width: 660px) {
    #diff-section .diff-item-container .diff-line-item {
        width: 100% !important;
    }
}

/*SEÇÃO DEPOIMENTOS*/

#testimony-section {
    background: var(--white-color);
    padding: 100px 0;
    position: relative;
}

#testimony-section h2 {
    text-align: center;
    margin-bottom: 150px !important;
}

#testimony-section h4 {
    text-align: center;
    margin-bottom: 130px;
    color: #FFF;
}

#testimony-section .testimony-container {
    width: 100%;
}

#testimony-section .testimony-container .testimony {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 300px;
    background-color: #FFF;
    transition: all 0.3s ease-in-out;
}

#testimony-section .testimony-container .testimony .bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    background-color: var(--primary-color);
    position: relative;
}

#testimony-section .testimony-container .testimony .bio img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    border-color: rgb(85, 85, 85);
    border-style: none;
    border-width: 1px;
    position: absolute;
    bottom: -30%;
}


#testimony-section .testimony-container .testimony .testimony-text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 300px;
    padding: 60px 16px 16px 16px;
    border: 1px solid var(--gray-light-color);
}

#testimony-section .testimony-container .testimony .testimony-text-container span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #30353e;
    margin: 0;
    text-align: center;
}

#testimony-section .testimony-container .testimony .testimony-text-container .testimony-text {
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    color: #30353e;
    padding-top: 40px;
    text-align: center;
    max-height: 300px;
    overflow-y: auto;
}

/*SEÇÃO DE CAPACIDADE*/

#capacity-section {
    padding: 100px 0;
    background-color: #30353e;
    position: relative;
}

#capacity-section h2 {
    text-align: right;
    color: #FFF;
    font-size: 40px;
}

#capacity-section .container .number-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#capacity-section .container .number-container .capacity-component {
    width: 230px;
    height: 230px;
    border-radius: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--third-color);
}

#capacity-section .container .number-container .capacity-component .capacity-number {
    font-family: 'Lato', sans-serif;
    font-size: 65px;
    font-weight: 700;
}

#capacity-section .container .number-container .capacity-component .capacity-bar {
    width: 200px;
    height: 10px;
    border-radius: 5px;
    background-color: #eee;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

#capacity-section .container .number-container .capacity-component .capacity-bar .capacity-bar-inner {
    height: 100%;
    border-radius: 5px;
    background-color: var(--third-color);
    -moz-box-shadow: 0px 0px 5px 1px var(--third-color-rgb-shadow);
    -webkit-box-shadow: 0px 0px 5px 1px var(--third-color-rgb-shadow);
    box-shadow: 0px 0px 5px 1px var(--third-color-rgb-shadow);
}

#capacity-section .container .number-container .capacity-text {
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    margin-top: 10px;
}

#capacity-section .container p {
    color: #FFFFFF;
    text-align: right;
}

@media all and (max-width: 1110px) {
    #capacity-section .container .col {
        width: 100% !important;
    }
    
    #capacity-section h2 {
        margin-bottom: 40px;
        text-align: center;
    }
    
    #capacity-section .container p {
        text-align: center;
        margin-bottom: 40px !important;
        color: #FFFFFF;
    }
    
    #capacity-section .container .img-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
}

/*SEÇÃO DE SELO*/

#seal-section {
    padding: 100px 0;
    background-color: #30353e;
    position: relative;
}

#seal-section h2 {
    text-align: left;
    color: #FFF;
    font-size: 40px;
}

#seal-section .container .img-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#seal-section .container .img-container img {
    width: auto;
    height: 225px;
}

#seal-section .container p {
    color: #FFFFFF;
}

@media all and (max-width: 1110px) {
    #seal-section .container .col {
        width: 100% !important;
    }
    
    #seal-section h2 {
        margin-bottom: 40px;
        margin-top: 40px;
        text-align: center;
    }
    
    #seal-section .container p {
        text-align: center;
        margin-bottom: 40px !important;
        color: #FFFFFF;
    }
    
    #seal-section .container .img-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
}

/*SEÇÃO DE CONVERSÃO*/

#conversion-section {
    background: var(--white-color);
    padding: 100px 0;
    position: relative;
}

#conversion-section h2 {
    text-align: center;
    margin-bottom: 50px !important;
}

#conversion-section h3 {
    text-align: center;
    margin-bottom: 130px;
    color: #8c94a9;
    font-size: 20px;
}

#conversion-section .btn-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
    width: fit-content;
    border: none;
}

#conversion-section .btn-cta img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

#conversion-section .form-container {
    width: calc(50% - 20px);
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}

#conversion-section .form-container form {
    width: 100%;
    height: auto;
    padding: 20px !important;
    margin: 0 !important;
}

#conversion-section .form-container form input {
    width: calc(100% - 33px) !important;
    height: 30px !important;
}

#conversion-section .form-container form textarea {
    height: 48px !important;
}

@media all and (max-width: 992px) {
    #conversion-section .form-container {
        width: calc(100% - 20px);
        border-radius: 20px;
        overflow: hidden;
        margin: 0 auto;
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
        -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    }
}


/*SEÇÃO DE RODAPÉ*/

#aux-wave-section {
    position: relative;
    height: 175px;
}

@media all and (max-width: 992px) {
    #aux-wave-section {
        height: 100px;
    }
}

.footer-wave {
    position: absolute;
    bottom: -1px;
    z-index: -1;
}

#footer-section {
    background-color: #30353e;
    padding-bottom: 20px;
}

#footer-section .row:last-child {
    margin-bottom: 0;
}

#footer-section p {
    color: #FFFFFF;
    font-size: 16px;
    margin: 0;
}

.horizontal-menu {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.horizontal-menu li {
    display: inline;
    margin-right: 20px;
}

.horizontal-menu li a {
    color: #FFF;
    transition: all 0.1s ease-out;
    border-bottom: 0px solid #FFF;
}

.horizontal-menu li a:hover {
    border-bottom: 2px solid #FFF;
}

.social-menu {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    text-align: right;
}

.social-menu li {
    display: inline;
    margin-right: 10px;
}

.social-menu li a {
    color: #FFF;
    font-size: 26px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.1s ease-out;
}

.social-menu li a:hover {
    font-size: 30px;
}

@media all and (max-width: 550px) {
    #footer-section .col {
        width: 100%;
    }
    
    .social-menu {
        text-align: left;
        margin-top: 40px;
    }
}

/*SEÇÃO DE COOKIES*/

#cookie-alert {
    width: 95%;
    max-width: 1170px;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 7px;
    -moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 2rem;
    right: 0;
    left: 0;
    margin: auto;
    border: 1px solid #e4e4e4;
    display: none;
    align-items: center;
    z-index: 9999;
}

#cookie-alert p {
    margin: 0;
}

#cookie-alert p a {
    cursor: pointer;
}

#cookie-alert.visible {
    display: flex;
}

.btn-alert {
    background-color: #42C920 !important;
    padding: 20px 30px !important;
    border-radius: 55px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px !important;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.btn-alert:hover {
    background-color: #319618 !important;
    cursor: pointer;
}

/*FORM*/

.input-container {
    position: relative;  
    margin-bottom: 16px;
}

.input-container * {
  font-family: 'Roboto', sans-serif;
}

.input-container label {
  position: absolute;
  font-size: 1rem;
  left: 0;
  top: 0;
  transform: translateY(-43%) scale(.9);
  background-color: white;
  color: gray;
  padding: 0 0.3rem;
  margin: 0 0.5rem;
  transition: .1s ease-out;
  transform-origin: left top;
  pointer-events: none;
}

/*INPUTS*/

.input-container input {
  font-size: 1rem;
  outline: none;
  border: 1px solid gray;
  border-radius: 5px;  
  padding: 1rem 0.7rem;
  color: gray;
  transition: 0.1s ease-out;
  box-sizing: border-box;
  width: 100%;
  margin: 0 !important;
  height: 48px;
}

.input-container input:focus {
  border: 1px solid rgba(49, 150, 24, 1) !important;  
  box-shadow: none !important;
}

.input-container input:focus + label {
  color: rgba(49, 150, 24, 1) !important;
}