
@import url("https://use.typekit.net/ash0hur.css");

:root {
    --theme1: #72BD81;
    --theme2: #343A40;
    --theme3: #ffffff;
    --theme4: #052C3D;
    --theme5: #f2f2f2;
}
body {
    position: relative;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--theme2);
    background: var(--theme5);
    
}
h1, h2, h3, h4, h5, h6, p, a {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
}
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
}
/*--
    - Header CSS 
-----------------------------------------*/
.header {
    background: url(../images/bg.png)no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 300px;
}
.header img {
    
}

/*--
    - FAQ CSS 
-----------------------------------------*/

.faq {
    
}
.faq .titles {
    margin-bottom: 2rem;
}
.faq .titles .bigtitle {
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.faq .titles .title {
    color: var(--theme1);
    font-weight: 700;
}
.faq .titles .title,
.faq .titles .subtitle {
   text-align: center;
}
.faq .accordion-button {
    margin-bottom: .85rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px;
    border-radius: .35rem!important;
    font-weight: 600;
    padding: 1.35rem;
}
.faq .accordion-flush .accordion-item {
    border: 0;
}
.faq .accordion-button:not(.collapsed) {
    background-color: var(--theme1);
    color: var(--theme3);
}
.faq .accordion-body a {
    color: var(--theme2);
    font-weight: bold;
}
/*--
    - Pergunta CSS 
-----------------------------------------*/

.pergunta {
    background: var(--theme5);
}
.pergunta .titles {
    margin-bottom: 2rem;
}
.pergunta .titles .title {
    color: var(--theme1);
    font-weight: 700;
}
.pergunta .titles .title,
.pergunta .titles .subtitle {
   text-align: center;
}
.pergunta form {
    padding: 2rem;
    background: var(--theme3);
    border-radius: .25rem;
}
.pergunta form label {
    font-weight: 700;
    margin-bottom: .5rem;
}
.btn-submit {

    background: var(--theme4);
    border: 1px solid var(--theme4);
    color: var(--theme3);
    text-transform: uppercase;
    width: 100%;
    padding: .5rem;
    border-radius: .25rem;
}


/*--
    - Contato CSS 
-----------------------------------------*/

.contato {
    
}
.contato .titles { 
    margin-bottom: 2rem;
}
.contato .title {
    color: var(--theme1);
    font-weight: 700;
}
.contato .title,
.contato .subtitle {
   text-align: center;
}
.contato .button {
    background: var(--theme3);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px;
    display: block;
    text-align: center;
    padding: 2rem;
    width: 200px;
    border-radius: .35rem;
    margin: auto;
    position: relative;
    overflow: hidden;
    transition: all 500ms ease;
   
}
.contato .button .text {
    color: var(--theme2);
    font-weight: 700;
    margin: 0;
    padding-top: 0.85rem;
}
.contato .button:hover {
    transform: translateY(-10px);
}

/*--
    - POLITICA CSS 
-----------------------------------------*/
.politica .box {
    background: var(--theme3);
    padding: 3rem;
    border-radius: .25rem;
}
.politica .title,
.politica .subtitle {
    font-weight: 700;
    text-transform: uppercase;
}
.politica .subtitle {
    color: var(--theme4);
}
.politica .link {
    font-weight: 700;
    color: var(--theme1);
    
}
/*--
    - FOOTER CSS 
-----------------------------------------*/
.footer {
    background: var(--theme4);
}
.footer .text {
    color: var(--theme3);
    font-size: .85rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: start;
}
.footer .link {
    color: var(--theme3);
    text-decoration: none;
    font-size: .85rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
}