/* Normalize CSS */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}


/* O CSS segue o Padrão Mobile First */

/* Global CSS */
* {
    box-sizing: border-box;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    color: #fff;
    text-decoration: none;
    line-height: 1.8rem;
}

:root{
    --verde-padrao: #007640;
    --verde-claro:#7fc83c;
    --verde-borda: #017F75;
    --roxo: rgba(65, 21, 100, 1);
    --branco: #fff;
    --text-color: #212529;
    --text-color-light: #585B5E;
}

main p, main h2, main h3, main h3, main strong{
    color: var(--text-color);
    margin: 0;
}

/* Classes Globais */
.d-none{
    display: none!important;
}

.d-flex{
    display: flex;
}

.centralize{
    justify-content: center;
    align-items: center;
}

@media(max-width: 700px){
    .flex-centralize{
        align-items: center;
        justify-content: center;
    }
}

.flex-row{
    flex-direction: row;
}

.flex-col{
    flex-direction: column;
}

.direction-flex{
    flex-direction: column;
}

@media(min-width:700px){
    .direction-flex{
        flex-direction: row;
    }
}

.flex-wrap{
    flex-wrap: wrap;
}

.p-1{padding: 10px;}
.p-2{padding: 20px;}
.p-3{padding: 30px;}

.pl-1{padding: 0 10px}
.pl-2{padding: 0 20px}
.pl-3{padding: 0 30px}

.mt-1{margin-top: 10px;}
.mt-2{margin-top: 20px;}
.mt-3{margin-top: 30px;}

.mb-1{margin-bottom: 10px;}
.mb-2{margin-bottom: 20px;}
.mb-3{margin-bottom: 30px;}

body{
    margin: auto;
}

footer{
    width: 100%;
}

@media(max-width:720px){
    .container{
        width: 100%;
        padding: 15px;
    }
}

@media(min-width:720px){
    .container{
        max-width: 800px;
    }
}

@media(min-width:992px){
    .container{
        max-width: 900px
    }
}

@media(min-width:1200px){
    .container{
        max-width: 1000px;
    }
}

@media(min-width:1240px){
    .container{
        width: 1200px;
        max-width: 1200px;
    }
}

.container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.col{
    width: 100%;
}

.col-50{
    width: 50%;
}

.col-33-flex{
    width: 100%;
}

.col-50-flex{
    width: 100%;
}

@media(min-width:700px){
    .col-50-flex{
        width: 50%;
    }
    
    .col-33-flex{
        width: 33.33%;
    }
}

/* end classes globais  */

/* Whatsapp */

.whatsapp-link{
    position: fixed;
    bottom: 4%;
    left: 2%;
    z-index: 1000000;
}

.whatsapp-link img{
    width: 65px;
    height: 65px;
}


/* navbar */
.navbar{
    background-color: #FFF;
    padding: 18px 0;
    position: fixed;
    width: 100vw;
    z-index: 10000;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.308);
}

.nav__mob-accordeon{
    position: fixed;
    top: 145px;
    width: 100vw;
}

.navbar__desk-list{
    display: none;
}

.navbar__desk-list p{
    cursor: pointer;
}

.navbar__logo img{
    width: 160px;
    height: 100%;
}

/*.header__cta{
    border: 3px solid #7fc83c; 
    background-color: white; 
    color: #7fc83c;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    font-weight: 700;
}

.header__cta:hover{
    transform: scale(1.05);
}*/

.dropdown-menu{
    width: 300px;
    position: fixed;
    z-index: 100000;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    right: 35%;
    top: 60px;
    border: 1px solid #00975c;
}

.dropdown-menu a{
    color: #009858;
}
.dropdown-menu a:hover{
    color: var(--verde-claro);
}

.navbar__mob-list{
    align-items: center;
    justify-content: right;
    padding-right: 45px;
}

/* accordion button */
#checkbox-menu {
    position: absolute;
    opacity: 0;
}

.navbar__mob-list label{
    cursor: pointer;
    position: relative;
    display: block;
    height: 22px;
    width: 30px;
}

#checkbox-menu:checked+label span:nth-child(1) {
    transform: rotate(-45deg);
    top: 8px;
}

.navbar__mob-list label span:nth-child(1) {
    top: 0;
}

#checkbox-menu:checked+label span:nth-child(3) {
    transform: rotate(45deg);
    top: 8px;
}

#checkbox-menu:checked+label span:nth-child(2) {
    opacity: 0;
}

.navbar__mob-list label span:nth-child(2) {
    top: 8px;
}

#checkbox-menu:checked+label span:nth-child(3) {
    transform: rotate(45deg);
    top: 8px;
}

.navbar__mob-list label span:nth-child(3) {
    top: 16px;
}

.navbar__mob-list label span {
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 30px;
    background-color: #007640;
    transition: all 0.25s ease-in-out;
}

.checkbox-menu:checked+label span:nth-child(3) {
    transform: rotate(45deg);
    top: 8px;
}
/* end accordion button */

.navbar__button{
    background-color: #000;
    border-radius: 5px;
    height: 45px;
    padding: 0 15px;
    transition: all 0.2s ease-in-out;
}

.navbar__button{
    padding: 0 15px;
}

.navbar__button p{
    font-weight: 700;
    font-size: 17px;
    color: var(--branco);
}

.navbar__button{
    text-decoration: none;
}

.navbar__button:hover{
    /*transform: scale(1.1);*/
    background-color: #000;
}

.navbar__button:hover p{
    color: var(--branco)!important;
}

.nav__mob-accordeon ul li{
    list-style: none;
    color: var(--verde-claro);
    font-weight: 700;
    width: 100%;
    padding: 10px 0;
    background-color: var(--branco);
    border: 5px solid var(--verde-padrao);
    margin: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav__mob-accordeon a{
    color: var(--verde-claro);
}

.nav__mob-accordeon li:hover, .nav__mob-accordeon li:hover a{
    color: var(--branco);
    background-color: var(--verde-claro);
}

.nav__mob-accordeon ul{
    padding-left: 0px!important;
    margin: 0px;
}

/* end navbar */

/* header */

.header__space{
    align-items: flex-start;
    justify-content: space-between;
    padding: 250px 30px 60px 30px;
    /*background-image: url(../img/header-bg.webp);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -150px 60px;
}

.header__left-text h1{
    line-height: 2.5rem;
}

.header__left-text p, .header__left-text h1{
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header__left-text h1{
    font-size: 40px;
}

.header__left-text p{
    font-size: 22px;
}

.header__form-style{
    background-color: var(--branco);
    width: 90%;
    padding: 10px 5px;
}

.header__form-style h2{
    background-color: #b0d751;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    font-size: 30px;
    font-weight: 500;
}

.header__form-style form label{
    color: var(--text-color);
}

.header__form-style form div{
    display: flex;
    flex-direction: column;
}

.header__form-style fieldset{
    border: 0;
}

input[type='text']{
    border: 1px solid #585b5e6e;
    border-radius: 5px;
    padding: 10px;
    color: var(--text-color);
    margin-bottom: 10px;
}

textarea:focus, input:focus, select:focus {
    box-shadow: 5px 5px 10px #007640;
    border: 1px solid #86B7FE;
    outline: 0;
} 

.header__form-style button{
    background-color: var(--verde-padrao);
    border-radius: 10px;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    border: 0;
}

.header__form-style button:hover{
    background-color: #00C282;
}

/*  end header */

/* vantagens */
.unimed__vantagens h2{
    color: var(--verde-padrao);
    font-weight: 500;
    font-size: 20px;
    margin: 0;
    padding: 15px 0 5px 0;
}

.unimed__vantagens{
    align-items: flex-start;
}

.unimed__vantagens div{
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}
/* end vantagens */

/* Planos */

.unimed__planos h2{
    font-weight: 700;
    font-size: 28px;
    padding: 20px 0;
}

.unimed__plan-img{
    border: 10px solid var(--verde-claro);
    border-radius: 100px;
    width: 100%;
}

.unimed__planos ul{
    padding: 10px 0 0 5px;
    margin-bottom: 45px;
}

.unimed__planos ul li{
    color: #212529;
    list-style: none;
}

.unimed__planos-cta{
    background-color: #00975c;
    padding: 10px 20px;
    border-radius: 5px;

}

.unimed__planos-cta:hover{
    background-color: var(--verde-borda);
    transition: all 0.25s ease-in-out;
}

.unimed__publi{
    background-color: var(--verde-claro);
    width: 100%;
}

.unimed__publi p{
    color: var(--branco);
    font-size: 26px;
    font-weight: 300;
    margin: 10px 0;
    text-align: center;
}

.unimed__publi h3{
    color: var(--branco);
    font-size: 30px;
    font-weight: 300;
    margin: 25px 0;
    line-height: 2.5rem;
    padding: 0 5px;
    text-align: center;
}

.unimed__publi-button{
    padding: 15px 50px;
    background-color: var(--verde-padrao);
    border: 1px solid var(--branco);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 20px 0;
    transition: all 0.35s ease-in-out;
}

.unimed__publi-button:hover{
    transform: scale(1.15);
    transition: all 0.25s ease-in-out;
}

@media(min-width:700px){
    .ajust-order{
        order: 2;
    }
    .ajust-order-2{
        order: 1;
    }
}

/* end Planos */

/* Tabela de Preços */

.unimed__precos{
    background-color: #f5f5f5;
    padding: 50px 20px;
}

.unimed__precos h2{
    text-align: center;
    color: var(--verde-padrao);
    font-weight: 700;
    font-size: 28px;
    line-height: 2.5rem;
}

.unimed__precos p{
    text-align: center;
}

.unimed__precos-card{
    background-color: var(--verde-claro);
    border-radius: 5px;
    padding: 20px;
    border: 1px solid #000;
    height: 250px;
    width: 300px;
}

.unimed__precos-card p, .unimed__precos-card strong{
    font-size: 18px;
    color: var(--branco);
    text-align: center;
    line-height: 1.2em;
    height: 40px;
    margin-top: 5px;
}

.unimed__precos-card a{
    background-color: var(--verde-borda);
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 0.25s ease-in-out;
}

.unimed__precos-card a:hover{
    transform: scale(1.1);
    transition: all 0.25s ease-in-out;
}

.unimed_precos-circle{
    background-color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;

}

/* End Tabela de Preços */

/* Programas */

.unimed__programas h2{
    text-align: center;
    color: var(--verde-padrao);
    font-weight: 500;
    font-size: 26px;
    line-height: 2.5rem;
}

.unimed__programas p strong{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color-light);
}

.unimed__programas-card{
    border-radius: 10px;
    border: 1px solid #66666679;
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.25);
}

.unimed__programas-card img{
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 100%;
}

.unimed__programas-card h3{
    color: var(--verde-claro);
}

.unimed__programas-card p{
    margin: 15px 0 25px 0;
}

.unimed__programas-card a{
    background-color: #00975c;
    padding: 10px 10px;
    border-radius: 5px;

}

.unimed__programas-card a:hover{
    background-color: var(--verde-borda);
    transition: all 0.2s ease-in-out;
}

/* end Programas */

/* Diferenciais */
.unimed__diferenciais-top h2{
    color: var(--verde-padrao);
    font-weight: 400;
    font-size: 28px;
    text-align: center;
}

.unimed__diferenciais h2{
    color: var(--verde-padrao);
    font-weight: 400;
    font-size: 28px;
    text-align: center;
}

.unimed__diferenciais{
    margin-top: 65px;
}

.accordeon-item-name{
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.accordeon-item-name-select{
    background-color: var(--verde-claro);
    border-radius: 10px 10px 0 0;
    transition: all 0.25s ease-in-out;
}

.accordeon-item-name-select strong{
    color: var(--branco);
}

.accordeon-item-name-select svg{
    transform: rotate(-180deg);
    transition: all 0.25s ease-in-out;
}

.accordeon-item-content{
    transition: all 0.25s ease-in-out;
    background-color: #f5f5f5;
    border-radius: 0 0 10px 10px;
}

.accordeon-item-name p{
    width: 90%;
}

.accordeon-item-name svg{
    width: 10%;
}

/* end Diferenciais */

/* footer */

footer{
    background-color: var(--verde-padrao);
}

footer .footer-logo img{
    width: 300px;
    height: 60px;
}

footer strong{
    font-size: 20px;
}

footer .social_item{
    background-color: var(--branco);
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .social_item:hover, footer .social_item:hover svg{
    fill: var(--branco);
    background-color: var(--verde-claro);
    transition: all 0.15s ease-in-out;
}

footer .footer-copy{
    background-color: #00C282 !important;
    padding: 10px 20px;
    width: 100%;
}

footer .footer-copy p, footer .footer-copy strong{
    color: #212529;
    text-align: center;
    line-height: 1.5rem;
    margin: 0;
}

/* end footer */

/* Desktop */
@media(min-width:700px){

    .d-none-desk{
        display: none;
    }

    .whatsapp-link img{
        width: 80px;
        height: 80px;
    }

    /* navbar */
    .navbar{
        justify-content: space-around;
    }

    .navbar__mob-list{
        display: none !important;
    }

    .navbar__desk-list{
        display: flex;
    }

    .navbar__desk-list a, .navbar__desk-list p{
        padding-right: 20px;
        font-weight: 700;
    }

    .navbar__desk-list a:hover, .navbar__desk-list p:hover{
        color: #000;
    }
    /* end navbar */

    /* Header */
    .header__space{
       /* background-image: url(../img/bannerunimed1.webp);*/
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 40% 75%;
		background-position-y: 65px;
    }

    .header__left-text p, .header__left-text h1{
        justify-content: left;
        text-align: left;
    }

    .header__left-text h1{
        font-size: 54px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .header__left-text p{
        font-size: 30px;
        line-height: 1.2em;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .header__form-style{
        width: 80%;
    }

    .header__left-text{
        padding: 0px 450px 0 450px;
        align-items: flex-start;
        justify-content: space-around !important;
        height: 100%;
        width: 100%;
        margin-top: -35px;
    }

    /* End Header */

    /*  Planos  */
    .unimed__publi h3{
        font-size: 45px;
    }

    .unimed__precos-card{
        width: 200px;
    }
    /*  End Planos  */

    /* Preços */
    .unimed__precos h2{
        font-size: 30px;
    }
    /* end preços */

    /* Programas */
    .unimed__programas-cards{
        width: 370px;
    }

    .unimed__programas-card-top p{
        height: 300px;
        padding-top: 10px;
    }
    .unimed__programas-card-bottom p{
        height: 200px;
        padding-top: 10px;
    }

    .unimed__programas-card h3{
        height: 40px;
    }
    


    /* end Programas */

    /* footer */

    footer .footer-contact{
        padding-top: 30px;
    }
    /* end footer */
}

/* cookie */

.cookies-content {
    z-index: 100;
    position: fixed;
    bottom: 6%;
    left: 3%;
 }

 .content__msg span{
    color: var(--text-color);
    background-color: #faf7f7;
 }
 
 .content_cookie {
    width: 360px;
    height: 180px;
    box-shadow: 0 0 10px #292929;
    border-radius: 5px;
    padding: 1.5em;
    line-height: 26px;
    background-color: #faf7f7;
    font-size: 13px;
    opacity: .8;
 
 }
 
 .content__msg a {
    font-weight: bolder;
    color: #009858;
 }
 
 .content__action {
    display: flex;
    justify-content: center;
    align-items: center;
 
 }
 
 .content__button {
    border-radius: 5px;
    background-color: #009858;
    padding: .4em;
    margin-top: -0.3em;
    font-weight: 600;
    display: inline-block;
    width: 150px;
    text-align: center;
    color: #fff;
    font-family: 'MohrRoundedBold', 'Poppins', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;
    font-size: 17px;
 }
 
 .sumir {
    display: none;
 }
 
 .content_img {
    display: flex;
    justify-content: center;
    gap: 2em;
    align-items: center;
    flex-direction: row;
 }
 
 .cookie-img {
    align-self: flex-start;
 }
 
 #alturaimg {
 height: 37px;
     width: 37px;
 }
 
 @media screen and (max-width:590px) {
    .cookies-content{
       bottom: 18%;
    }
 
    .content_cookie {
       width: 220px;
       height: auto;
       padding: .6em;
       opacity: .8;
       
    }
 
    .content_img {
       flex-wrap: wrap;
       gap: 0;
       text-align: center;
    }
 
    .content__msg {
       margin-top: -2px;
    }
 
    #alturaimg {
       height: 50px !important;
       width: 50px !important;
    }
    
 
 }
 
 /* cookie fim */

 .nav__mob--cta{
    color: #00975c!important;
    background-color: white;
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 5px;
 }

 .nav__mob--container{
    background-color: #007640;
    width: 100%;
 }
 
 #caixa-texto {
  height: 60px;
  width: 100%;
  background-color: #5d5d5d;	
  color: #FFF;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

 /* *************** */
 
 .bg-primary-banner {
    --bs-bg-opacity: 1;
    background-color: #f49e00 !important;
}

.btn-style-banner {
    padding: 1em 2em;
    border: 1px solid white;
    border-radius: 15px;
    font-weight: bold;
    font-size: 18px !important;
}

.text-white{
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

button {
    transition: 1s all;
}

.button-decoration:hover {
    transform: scale(1.1);
}



/**************************************************************************/

/* Layout responsivo da seção principal */
.header__space {
    background-color: #007640;
    background-position: -75px 1px;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: flex-start;
    justify-content: center;
    padding: 175px 30px 0px 30px;
    display: flex;
    flex-direction: column; /* MOBILE: empilha os elementos (imagem + formulário) */
}

/* DESKTOP: coloca imagem e formulário lado a lado */
@media (min-width: 700px) {
    .header__space {
        background-position: 75% 5%;
        flex-direction: row;
    }
}

/* Lado esquerdo: texto + imagem */
.header__left-text {
    display: flex;
    flex-direction: column;
    padding: 0 0px 0 0px;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

@media (min-width: 700px) {
    .header__left-text {
        padding: 0 0px 0 60px;
        width: 40%;
    }
}

/* Título e parágrafo */
.header__left-text h1 {
    font-size: 50px;
    line-height: 3.5rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.header__left-text p {
    font-size: 25px;
    line-height: 1.6;
    width: 100%;
    text-align: center;
}

@media (min-width: 700px) {
    .header__left-text h1,
    .header__left-text p {
        text-align: left !important;
        justify-content: left;
		margin-bottom: 45px;
    }
}

/* Imagem */
.header__cta img {
    width: 100%;
    max-width: 445px;
}

/* Lado direito: formulário */
.form-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 0px;
}

@media (min-width: 700px) {
    .form-col {
        width: 50%;
        padding-top: 0;
    }
}

/* Estilo do formulário */
.header__form-style {
    background-color: #b0d751;
    width: 100%;
    padding: 15px 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.308);
}

@media (min-width: 700px) {
    .header__form-style {
        width: 80%;
    }
}

/* Campos do formulário */
.header__form-style form div {
    display: flex;
    flex-direction: column;
}

.mb-1 {
    margin-bottom: 10px;
}

input[type='text'] {
    border: 1px solid #585b5e6e;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    color: #4b4b4b !important;
}

/* Botão */
#submitButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px !important;
    background-color: #000;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    border: 0;
    margin-top: 15px;
    color: #FFF !important;
}

/* Outros ajustes */
button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

.header__form-style fieldset {
    border: 0;
    padding: 0.35em 0.75em .625em;
    width: 100%;
}

.col {
    width: 100%;
}

.d-flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.centralize {
    justify-content: center;
    align-items: center;
}

/* Controle de colunas */
.col-50-flex {
    width: 100%;
	color: #fff;
}

@media (min-width: 700px) {
    .col-50-flex {
        width: 50%;
		color: #fff;
    }
}

.header__form-style button:hover {
    background-color: #333333 !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: #FFF !important;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.308);
}

.buttonhamb label span {
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 30px;
    background-color: #00995d;
    transition: all 0.25s 
	ease-in-out;
}

.bg-cinco {
    --bs-bg-opacity: 1;
    background-color: #5c2787 !important;
}


@media screen and (max-width:500px) {
.header__left-text p {
    font-size: 25px;
    line-height: 1.6;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 35px;
}

.cta {
    background-color: #5c2787;
    padding: 30px 20px !important;
    margin-top: 45px !important;
}

.posicao-texto{
	margin-top: 40px !important;
}

.posicao-texto2{
	margin-top: 40px !important;
}

.posicao-texto3{
	margin-top: 40px !important;
}

.row .card {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-bottom: 30px;
}

.botao-mob{
   display:block !important;	
}

.navbar__button {
    background-color: #000;
    border-radius: 5px;
    height: 45px;
    padding: 0 15px;
    transition: all 0.2s ease-in-out;
    width: 225px;
    margin-left: 90px;
}

.tamanhoimg{
  width:400px;	
}

}

@media screen and (max-width:390px) {
	.navbar__button {
    background-color: #000;
    border-radius: 5px;
    height: 45px;
    padding: 0 15px;
    transition: all 0.2s ease-in-out;
    width: 225px;
    margin-left: 66px;
}

.tamanhoimg{
  width:330px;	
}

}

.posicao-texto{
	margin-top: 95px;
}

.posicao-texto2{
	margin-top: 85px;
}

.posicao-texto3{
	margin-top: 35px;
}

.cta {
    background-color: #5c2787;
    padding: 45px 20px;
    margin-top: 35px;
}

.cta a {
    background-color: var(--primary);
    border: 1px solid var(--white);
   /*  padding: 15px 25px;*/
    border-radius: 25px;
    /* transition: all 0.3s 
ease-in-out; */
}

.cta :where(p, strong, a) {
    color: #fff;
    text-align: center;
}


    .cta strong {
        font-size: 40px;
    }

.cta p {
    font-size: 20px;
}

.cta strong {
    font-weight: 400;
}

/*************************************************/

.borda-caixa{
border: var(--bs-card-border-width) solid var(--bs-card-border-color);
border-radius: var(--bs-card-border-radius);
box-shadow: 0px 0px 20px 0px rgba(20, 39, 82, 0.1);
align-items: center;	
}

.botao-mob{
   display:none;	
}