:root {
    --verde-principal: #006d27;
    --verde-escuro: #004318;
    --verde-claro: #00b050;
    --cinza: #f6f6f6;
    --cinza-escuro: #efefef;
}

* { margin: 0px; padding: 0px; transition: .3s; }
html, body { font-family: 'open sans'; }

/* menu superior */
.menu-superior {
    position: relative;
    width: 100%;
    background-color: white;
    height: 106px;
}
.conteudo-menu-superior {
    position: relative;
    width: 100%;
    height: 106px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-superior img {
    position: relative;
}
.menu-superior img:hover {
    transform: scale(.9);
    transition: .3s;
}
.social {
    position: relative;
    width: 100%;
    /*display: flex;*/
    /*justify-content: space-between;*/
    margin: 0px;
    text-align: right;
    /*padding-right: 50px;*/
}
.social li {
    position: relative;
    height: 106px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}
.social li a {
    padding: 5px 10px;
    border-radius: 3px;
    transition: .3s;
}
.social li a:hover {
    color: white;
    -webkit-box-shadow: 0px 0px 20px -1px rgba(153,153,153,.5);
    -moz-box-shadow: 0px 0px 20px -1px rgba(153,153,153,.5);
    box-shadow: 0px 0px 20px -1px rgba(153,153,153,.5);
    transform: translateY(-5px);
}
.facebook {
    background-color: #3b5998;
    color: white;
}
.whatsapp {
    background-color: #25d366;
    color: white;
}
.twitter {
    background-color: #1da1f2;
    color: white;
}
.youtube {
    background-color: #c4302b;
    color: white;
}
.linkedin {
    background-color: #0072b1;
    color: white;
}
.instagram {
    background: rgb(235,75,59);
    background: -webkit-linear-gradient(bottom, rgba(235,75,59,1) 0%, rgba(227,38,71,1) 50%, rgba(185,19,121,1) 100%);
    background: -o-linear-gradient(bottom, rgba(235,75,59,1) 0%, rgba(227,38,71,1) 50%, rgba(185,19,121,1) 100%);
    background: linear-gradient(to top, rgba(235,75,59,1) 0%, rgba(227,38,71,1) 50%, rgba(185,19,121,1) 100%);
    color: white;
}
.botao {
    position: relative;
    width: 100%;
    text-align: right;
    margin: 0px;
}
.botao li {
    position: relative;
    height: 106px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}
.botao li a {
    color: var(--verde-escuro);
    font-size: 18px;
    font-weight: 600;
    margin-right: 20px;
}
.botao li a:hover {
    text-decoration: none;
    color: var(--verde-claro);
    transition: .3s;
}
.btn-menu-superior {
    margin-right: 0px !important;
    padding: 15px 40px;
    background-color: var(--verde-principal);
    color: white !important;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 39px -1px rgba(153,153,153,.5);
    -moz-box-shadow: 0px 0px 39px -1px rgba(153,153,153,.5);
    box-shadow: 0px 0px 39px -1px rgba(153,153,153,.5);
}
.btn-menu-superior:hover {
    background-color: var(--verde-claro);
    transition: .3s;
}

/* menu categoria */
.menu-categoria {
    position: relative;
    width: 100%;
    height: 90px;
    background-color: var(--verde-principal);
}
.conteudo-menu-categoria {
    position: relative;
    width: 100%;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-categoria ul {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0px;
}
.menu-categoria ul li {
    display: inline-flex;
    height: 90px;
    flex-direction: column;
    justify-content: center;
}
.menu-categoria ul li a {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: white;
    padding: 10px;
}
.menu-categoria ul li a:hover {
    text-decoration: none;
    background-color: var(--verde-claro);
    transition: .3s;
}
.btn-menu-categoria {
    padding: 10px 15px;
    background-color: var(--verde-escuro);
    color: white;
}
.btn-menu-categoria:hover {
    background-color: var(--verde-claro);
    cursor: pointer;
    transition: .3s;
}
.conteudo-search {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 5px;
}
.conteudo-search input {
    width: 80%;
    height: 50px;
    background-color: white;
    border: none;
    outline: none;
    padding-left: 10px;
    border-radius: 5px;
}
.conteudo-search input::placeholder {
    font-weight: 600;
    font-style: italic;
}
.conteudo-search button {
    width: 20%;
    border: none;
    outline: none;
    background-color: white;
    border-radius: 5px;
    color: var(--verde-principal);
}
.submenu {
    display: none;
}
.submenu ul {
    position: absolute;
    top: 100%;
    transform: translateX(-40%);
    display: block;
    width: 300px;
    z-index: 99;
}
.submenu ul li {
    display: flex !important;
    height: 60px;
    background-color: var(--verde-escuro);
    text-align: center;
    border-bottom: 1px solid black;
}
.submenu ul li a {
    padding: 17px;
}
.menu-categoria ul li:hover .submenu {
    display: block;
}

/* banner */
.banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: black;
}
.conteudo-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url('../img/img_banner01.jpg');
}
.btn-banner {
    position: absolute;
    width: 100%;
    top: 45%;
    z-index: 10;
}
.btn-banner-right, .btn-banner-left {
    background-color: var(--verde-principal);
    color: white;
    padding: 10px 20px;
    border-radius: 2px;
    cursor: pointer;
}
.btn-banner-right {
    position: absolute;
    right: 20px;
}
.btn-banner-left {
    position: absolute;
    left: 20px;
}
.btn-banner-right.swiper-button-disabled, .btn-banner-left.swiper-button-disabled {
    opacity: .5;
}
.btn-banner-right:hover, .btn-banner-left:hover {
    background-color: var(--verde-claro);
    transition: .3s;
}

/* categoria */
.categoria {
    position: relative;
    width: 100%;
    background-color: var(--cinza);
    padding: 40px 0px;
}
.categoria h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0px;
    margin-bottom: 20px;
}
.categoria ul {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0px;
}
.categoria ul li {
    position: relative;
    height: 70px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px 10px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: var(--verde-principal);
    -webkit-box-shadow: 0px 0px 39px -1px rgba(153,153,153,.5);
    -moz-box-shadow: 0px 0px 39px -1px rgba(153,153,153,.5);
    box-shadow: 0px 0px 39px -1px rgba(153,153,153,.5);
}
.categoria ul li a {
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    padding: 20px 50px;
}
.categoria ul li a:hover {
    text-decoration: none;
}
.categoria ul li:hover {
    background-color: var(--verde-claro);
    transition: .3s;
}

/* empresa */
.empresa {
    position: relative;
    width: 100%;
    background-color: white;
    padding: 40px 0px;
}
.empresa h1 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0px;
    padding-bottom: 30px;
}
.bloco-empresa {
    position: relative;
    width: 100%;
    background-color: white;
    -webkit-box-shadow: 0px 0px 39px -1px rgba(153,153,153,.2);
    -moz-box-shadow: 0px 0px 39px -1px rgba(153,153,153,.2);
    box-shadow: 0px 0px 39px -1px rgba(153,153,153,.2);
    border-radius: 20px;
    z-index: 10;
}
.bloco-empresa-header {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0px 20px;
}
.bloco-empresa-header-ods, .bloco-empresa-header-logo {
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bloco-empresa-header-ods {
    width: 30%;
}
.bloco-empresa-header-logo {
    width: 70%;
}
.bloco-empresa-header-logo img {
    width: 120px;
}
.bloco-empresa-header-ods img {
    width: 70px;
    margin-left: auto;
}
.bloco-empresa-conteudo {
    background-color: var(--cinza);
    padding: 10px 20px;
}
.bloco-empresa-conteudo h1 {
    margin: 0px;
    font-size: 18px;
    color: black;
    padding: 0px;
}
.bloco-empresa-conteudo p {
    margin: 0px;
    font-weight: 600;
    color: black;
    opacity: .7;
}
.bloco-empresa-footer-descricao {
    position: relative;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    display: none;
}
.bloco-empresa-footer-descricao-ativo {
    display: block !important;
    animation: aparecendo .3s;
}
.bloco-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    animation: meufade 2s;
}
.bloco-item-icone {
    width: 40px;
    height: 35px;
    background-color: var(--cinza);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bloco-item-icone img {
    width: 25px;
    margin: 0px auto;
}
.bloco-item-texto {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}
.bloco-item-texto p {
    margin: 0px;
    font-weight: 600;
    color: #333;
}
.bloco-empresa-footer-btn {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    z-index: 10;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.bloco-empresa-footer-btn:hover {
    background-color: #ccc;
    transition: .3s;
    cursor: pointer;
}
.bloco-empresa-footer-btn p {
    margin: 0px;
    font-weight: 600;
    color: #0061e4;
}
.bloco-interacao {
    position: relative;
    width: 100%;
    margin-top: 15px;
    z-index: 1;
}
.bloco-interacao ul {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 10px 0px;
}
.bloco-interacao ul li {
    list-style: none;
    display: inline-flex;
    font-weight: 600;
    align-items: center;
}
.bloco-interacao ul li span:not(.qtdFavorito) {
    padding: 5px 10px;
    border-radius: 50%;
    background-color: var(--cinza-escuro);
    margin-right: 10px;
    transition: .3s;
}
.bloco-interacao ul li:nth-child(1) span:not(.qtdFavorito) {
    background-color: #fce5e6;
    color: #ff1a23;
}
.bloco-interacao ul li:nth-child(2) span {
    background-color: #e5f7ed;
    color: #00b050;
}
.bloco-interacao ul li span:hover {
    transform: scale(.9);
    cursor: pointer;
}
.empresa .social {
    z-index: -1;
    text-align: right;
    padding: 0px;
    display: none;
}
.social-ativo {
    display: block !important;
}
.empresa .social li {
    height: 50px;
    animation: deslocamento .5s;
}

/* footer */
.footer {
    position: relative;
    width: 100%;
    background-color: var(--verde-principal);
    height: 100px;
}
.conteudo-footer {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer h1 {
    margin: 0px;
    font-size: 16px;
    color: #000000;
    text-align: center;
}
.footer ul {
    position: relative;
    width: 100%;
    margin: 0px;
    text-align: center;
}
.footer ul li {
    display: inline-flex;
    height: 100px;
    flex-direction: column;
    justify-content: center;
    padding: 0px 10px;
}
.footer ul li a {
    color: white;
}
.footer ul li a:hover {
    text-decoration: none;
    opacity: .8;
}

/*menu responsivo*/
.menu-responsivo {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: var(--verde-principal);
    display: none;
}
.menu-responsivo-ativo {
    position: relative;
    height: auto;
    transition: .3s;
    display: block !important;
}
.conteudo-menu-responsivo {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-responsivo .conteudo-search, .menu-responsivo .conteudo-search input, .menu-responsivo .conteudo-search button {
    background-color: transparent;
    color: white;
}
.menu-responsivo .conteudo-search button {
    width: 10%;
}
.menu-responsivo .conteudo-search input::placeholder {
    color: white;
    font-weight: 400;
}
.btn-menu-responsivo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--verde-escuro);
}
.btn-menu-responsivo span {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
}
.btn-menu-responsivo span::after {
    content: '';
    width: 20px;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 7px;
}
.btn-menu-responsivo span::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: white;
    position: absolute;
    top: -7px;
}
.btn-menu-responsivo.toggle span {
    background-color: transparent;
}
.btn-menu-responsivo.toggle span::after {
    top: 0;
    transform: rotate(45deg);
    transition: .3s;
}
.btn-menu-responsivo.toggle span::before {
    top: 0;
    transform: rotate(-45deg);
    transition: .3s;
}
.menu-responsivo ul {
    position: relative;
    width: 100%;
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 20px;
    display: none;
}
.menu-responsivo ul li {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
}
.menu-responsivo ul li a {
    width: 100%;
    padding: 20px 0px;
    background-color: var(--verde-escuro);
    color: white;
    margin: 0px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
}
.menu-responsivo ul li a:hover {
    text-decoration: none;
    background-color: var(--verde-claro);
}

/* social mobile */
.social-mobile {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: var(--verde-principal);
    z-index: 99;
    -webkit-box-shadow: 0px 0px 39px -1px rgba(0,0,0,.25);
    -moz-box-shadow: 0px 0px 39px -1px rgba(0,0,0,.25);
    box-shadow: 0px 0px 39px -1px rgba(0,0,0,.25);
    display: none;
}
.social-mobile-ativo {
    position: fixed !important;
    bottom: 0px;
    animation: aparecendoSocial .3s;
}
.social-mobile ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0px;
    text-align: center;
}
.social-mobile ul li {
    height: 50px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
} 
.social-mobile ul li a {
    padding: 10px 20px;
    color: white;
}
.social-mobile ul li a:hover {
    background-color: var(--verde-escuro);
}


@keyframes aparecendo {
    0% {
        height: 0px;
    }
    100% {
        height: 250px;
    }
}
@keyframes aparecendoSocial {
    0% {
        height: 0px;
    }
    100% {
        height: 50px;
    }
}
@keyframes meufade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes deslocamento {
    0% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0px);
    }
}

@media screen and (max-width: 780px) {
    /*menu superior*/
    .conteudo-menu-superior img {
        width: 100%;
    }

    /*menu categoria*/
    .menu-categoria {
        display: none;
    }
    .menu-responsivo, .social-mobile {
        display: block;
        height: auto !important;
    }
    .botao {
        display: none !important;
    }

    /*banner*/
    .banner, .conteudo-banner {
        height: 150px;
    }
    .btn-banner {
        top: 40%;
    }
    .btn-banner-right {
        right: 0px;
    }
    .btn-banner-left {
        left: 0px;
    }

    /*categoria*/
    .categoria {
        padding: 20px 0px;
    }
    .categoria h1 {
        font-size: 20px;
        margin-bottom: 0px;
    }
    .categoria ul li {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 10px;
    }
    .categoria ul li a {
        padding: 0px;
    }

    /*empresas*/
    .bloco-interacao {
        margin-bottom: 20px;
    }

    /*footer*/
    .footer, .conteudo-footer {
        height: auto;
    }
    .footer h1 {
        padding-top: 20px;
        padding-bottom: 10px;
        text-align: center;
    }
    .fooer ul {
        display: flex;
        justify-content: space-between;
        text-align: center;
    }
    .footer ul li {
        padding: 0px;
        height: auto;
        padding: 20px 8px;
    }
}


.linhaPadrao:nth-child(even) {
    background-color: #ccc;
}

.linhaPadrao:nth-child(odd) {
    background-color: #FFFFFF;
}

.linhaCategoria {
    cursor: pointer;
    text-align: left;
    padding: 5px;
    margin-bottom: 1px;
    background-color: #DeDeDe;
}
.primeiraLinha {

    background-color: #00b050;
    color: #FFFFFF !important;
}

.ocultar {
    display: none !important;
}

.barra {
    position: relative;
    width: 100%;
/*    height: 100%;*/
    text-align: center;
    background-color: #edf3f9;
    padding: 40px 0px;
}
.barra h1 {
    color: #333;
    font-family: 'open sans';
    font-weight: 600;
}

.formulario {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 0px;
    background-color: white;
}
.conteudo-formulario {
    position: relative;
    width: 75%;
    margin: 0px auto;
    padding: 40px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.37);
    -moz-box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.37);
    box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.37);
}
.formulario-texto {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
}
.formulario-texto h1 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0px;
    text-transform: uppercase;
}
.formulario-texto p {
    font-size: 17px;
    color: #797979;
    text-align: center;
    font-weight: 400;
}
.formulario-texto i {
    font-size: 19px;
    color: var(--verde-principal);
}
.formulario-texto img {
    width: 70px;
    margin-bottom: 10px;
}
.formulario-texto span {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--verde-escuro);
    font-weight: 700;
    margin: 0px;
}
.formulario-input label {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 5px;
    margin-top: 25px;
}
.formulario-input p {
    font-weight: 500;
    color: red;
    display: none;
    margin: 0px;
}
.erro-input {
    border: 1px solid red !important;
}
.formulario-input input, .formulario-input select {
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 7px;
    outline: none;
    padding-left: 10px;
    border: 1px solid rgba(0,0,0,.2);
    -webkit-box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.1);
    transition: all .3s;
}
.formulario-input textarea {
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 7px;
    outline: none;
    padding-left: 10px;
    padding-top: 10px;
    border: 1px solid rgba(0,0,0,.2);
    -webkit-box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.1);
    transition: all .3s;
}
.formulario-input input[type="button"], .formulario-input input[type="submit"], .formulario-input button {
    padding: 0px;
    background-color: var(--verde-principal);
    color: white;
    margin-top: 25px;
    width: 40%;
    font-size: 19px;
    font-weight: 500;
    height: 65px;
    transition: all .3s;
    border: none;
    border-radius: 7px;
    outline: none;
}
.formulario-input input:hover, .formulario-input textarea:hover, .formulario-input select:hover {
    border-bottom: 4px solid var(--verde-claro);
    -webkit-box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.18);
    -moz-box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.18);
    box-shadow: 0px 0px 37px -7px rgba(0,0,0,0.18);
}
.formulario-input input[type="button"]:hover, .formulario-input input[type="submit"]:hover, .formulario-input button:hover,
.formulario-input input[type="button"]:focus, .formulario-input input[type="submit"]:focus, .formulario-input button:focus {
    border: none;
    background-color: var(--verde-claro);
}



.alerta-erro {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    text-align: center;
}
.alerta-erro p {
    background-color: #E53935;
    padding: 15px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    margin: 0px;
}

.alerta-sucesso {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    text-align: center;
}
.alerta-sucesso p {
    background-color: #4CAF50;
    padding: 15px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    margin: 0px;
}

@media screen and (max-width: 780px) {
    .conteudo-formulario {
        width: 100%;
        box-shadow: none;
        padding: 0px;
    }
    .formulario-texto h1 {
        font-size: 30px;
    }
    .formulario-input input[type="button"], .formulario-input input[type="submit"], .formulario-input button {
        width: 100%;
    }

    .alerta-erro, .alerta-sucesso {
        width: 90%;
        margin: 0px auto;
    }
    .alerta-erro p, .alerta-sucesso p {
        padding: 5px;
    }
}

.listagem .bloco-empresa-header-ods, .listagem .bloco-empresa-header-logo {
    width: 50%;
}
.listagem .bloco-empresa-header-ods h1 {
    padding-bottom: 0px;
    text-align: right;
    font-size: 20px;
}
.bloco-ods ul {
    list-style: none;
}
.bloco-ods ul li {
    display: contents;
}
.bloco-ods ul li img {
    width: 80px;
}


@media screen and (max-width: 780px) {
    .listagem .bloco-empresa-header-ods h1 {
        font-size: 16px;
    }
    .listagem .bloco-empresa-header-logo {
        width: 30%;
    }
    .listagem .bloco-empresa-header-ods {
        width: 70%;
    }
    .listagem .bloco-empresa-header-logo img {
        width: 100%;
    }
}

.btn-password {
    position: absolute;
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50px;
    margin: 0px auto;
    text-align: center;
    bottom: 0px;
    right: 0px;
    background-color: #dcdcdc;
    color: #575757;
    border: 1px solid #ccc;
}
.divSenha {
    position: relative;
}

.wrapper{
    position: relative;
    background: #fff;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.2);
    margin-top: 20px;
}
.wrapper .label {
    padding-bottom: 10px;
}
.wrapper label {
    margin-top: 0px;
}
.wrapper .option{
    background: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    padding: 20px 10px;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
}
.wrapper .option .dot{
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
}
.wrapper .option .dot::before{
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: var(--verde-claro);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}
input[type="radio"]{
    display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2{
    border-color: var(--verde-claro);
    background: var(--verde-claro);
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot{
    background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before{
    opacity: 1;
    transform: scale(1);
}
.wrapper .option span{
    font-size: 18px;
    color: #808080;
    padding-left: 10px;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span{
    color: white;
}

@media screen and (max-width: 780px) {
    .conteudo-formulario {
        width: 100%;
        box-shadow: none;
        padding: 0px;
    }
    .formulario-texto h1 {
        font-size: 30px;
    }
    .formulario-input input[type="button"], .formulario-input input[type="submit"], .formulario-input button {
        width: 100%;
    }

    .alerta-erro, .alerta-sucesso {
        width: 90%;
        margin: 0px auto;
    }
    .alerta-erro p, .alerta-sucesso p {
        padding: 5px;
    }
}

.divisao {
    position: relative;
    width: 100%;
    padding: 40px 0px;
    background: white;
}
.divisao-texto {
    padding-top: 40px;
}
.divisao-texto h1 {
    text-align: center;
    font-size: 20px;
}
.divisao-cadastro {
    text-align: center;
    background-color: #f2fbf6;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.divisao-cadastro .divisao-texto {
    padding: 0px;
}

.formulario-input a {
    font-weight: 600;
    font-size: 17px;
    color: black;
    padding-left: 20px;
}

.plano {
    position: relative;
    width: 100%;
    padding: 40px 0px;
    background: white;
}
.plano .col-md-4 {
    padding-left: 0px;
    padding-right: 0px;
}
.conteudo-plano {
    position: relative;
    width: 100%;
    padding: 10px !important;
    /*border: 1px solid #cecece;*/
}
.conteudo-plano-titulo {
    position: relative;
    width: 100%;
    padding: 20px 0px;
    border: 1px solid #cecece;
}
.conteudo-plano-titulo h1 {
    text-transform: uppercase;
    font-size: 18px;
    margin: 0px;
    text-align: center;
    color: #848484;
}
.conteudo-plano-preco {
    background-color: #f1af58;
    text-align: center;
    padding: 30px 0px;
}
.conteudo-plano-preco h1 {
    text-transform: uppercase;
    font-size: 40px;
    margin: 0px;
    text-align: center;
    font-weight: 700;
    color: white;
}
.conteudo-plano-descricao {
    position: relative;
    width: 100%;
    border-left: 1px solid #cecece;
    border-right: 1px solid #cecece;
    min-height: 150px;
    padding: 10px;
}
.conteudo-plano-descricao ul {
    display: block;
    margin: 0px;
    width: 100%;
    list-style: none;
}
.conteudo-plano-descricao ul li {
    display: block;
    border-bottom: 1px solid #cecece;
    padding: 15px 0px;
    text-align: center;
    font-weight: 500;
    font-size: 17px;
}
.conteudo-plano-descricao ul li:last-child{
    border-bottom: none;
}
.conteudo-plano-btn {
    position: relative;
    width: 100%;
    padding: 20px 0px;
    border: 1px solid #cecece;
    text-align: center;
}
.conteudo-plano-btn button {
    padding: 0px;
    background-color: #f1af58;
    color: white;
    width: 70%;
    font-size: 19px;
    font-weight: 500;
    height: 65px;
    transition: all .3s;
    border: none;
    border-radius: 7px;
    outline: none;
}
/*.conteudo-plano-btn button:hover {
    border: none;
    background-color: var(--verde-claro);
}*/
@media screen and (max-width: 780px){
    .conteudo-plano {
        margin-top: 20px;
    }
}

@-moz-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}
@-webkit-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}
@-o-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}
@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

@media screen and (max-width: 780px) {
    .conteudo-formulario {
        width: 100%;
        box-shadow: none;
        padding: 0px;
    }
    .formulario-texto h1 {
        font-size: 30px;
    }
    .formulario-input input[type="button"], .formulario-input input[type="submit"], .formulario-input button {
        width: 100%;
    }

    .alerta-erro, .alerta-sucesso {
        width: 90%;
        margin: 0px auto;
    }
    .alerta-erro p, .alerta-sucesso p {
        padding: 5px;
    }

    .divisao-cadastro {
        padding: 20px;
        margin-top: 40px;
    }
    .divisao-cadastro .btn-formulario {
        margin-top: 10px;
    }
    .divisao-cadastro .divisao-texto h1 {
        font-size: 18px;
    }

    .formulario-input a {
        text-align: center;
        padding-left: 0px;
    }

    .divisao {
        padding-top: 0px;
    }
}





input[type="radio"]{
    display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2{
    border-color: var(--verde-claro);
    background: var(--verde-claro);
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot{
    background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before{
    opacity: 1;
    transform: scale(1);
}
.wrapper .option span{
    font-size: 18px;
    color: #808080;
    padding-left: 10px;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span{
    color: white;
}

.cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
}
.cbx:not(:last-child) {
    margin-right: 6px;
}
.cbx:hover {
    background: rgba(0,119,255,0.06);
}
.cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}
.cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
}
.cbx:hover span:first-child {
    border-color: #07f;
}
.inp-cbx {
    position: absolute;
    visibility: hidden;
}
.inp-cbx:checked + .cbx span:first-child {
    background: #07f;
    border-color: #07f;
    animation: wave 0.4s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}
.inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
}
@media screen and (max-width: 640px) {
    .cbx {
        width: 100%;
        margin-bottom: 4px;
        display: inline-block;
    }
}
@-moz-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}
@-webkit-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}
@-o-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}
@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

@media screen and (max-width: 780px) {
    .conteudo-formulario {
        width: 100%;
        box-shadow: none;
        padding: 0px;
    }
    .formulario-texto h1 {
        font-size: 30px;
    }
    .formulario-input input[type="button"], .formulario-input input[type="submit"], .formulario-input button {
        width: 100%;
    }

    .alerta-erro, .alerta-sucesso {
        width: 90%;
        margin: 0px auto;
    }
    .alerta-erro p, .alerta-sucesso p {
        padding: 5px;
    }
}

.divPadrao {
    box-sizing: border-box;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: top;
}
.divPaiImagem {
    width: 200px;
    height: 250px;
    float: left;
    text-align: center;
    margin: 10px;
    border: 1px solid #E6E6E6;
    padding: 5px;
}

.divFilhoImagem {
    width: 100%;
    height: 180px;
    background-size: cover;
    text-align: center !important;
    padding: 10px !important;

}

.divFilhoImagem img {
    max-height: 100%;
    max-width: 100%;
}

.bloco-sidebar-conteudo ul {
    list-style-type: none;
}

.bloco-sidebar-conteudo ul li {
    background-color: var(--verde-claro);
    margin-top: 2px;
    padding: 5px;
    color: #FFFFFF;
    border-radius: 5px;
}
.bloco-sidebar-conteudo ul li:hover {
    
    background-color: var(--verde-escuro);
}
.bloco-sidebar-conteudo ul li a {
    color: #FFFFFF;
}
.botaoPadrao3 {
    background-color: var(--verde-principal);
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    margin: 10px;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
}

.botaoPadrao3:hover {
    background-color: var(--verde-claro);
}

.swiper-banner-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}