@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root {
    --primary: #3498db;
    --primary-dark: #0e4a72;
    --secondary: rgb(255, 132, 0);
    --secondary-dark: rgb(226, 117, 1);
    --tertiary: #a0a3a5;
    --quartenary: #45505b;

    --icon-whats: linear-gradient(227.07deg, #1abf4e 0.43%, #28b183 99.56%);    
}

* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

html,
body {
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
}

section {
    position: relative;
    padding: 40px;
}

.section-title {
    margin-bottom: 45px;
}

.section-title h2 {
    padding: 0;
    margin: 0 0 5px 0;
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1px;
    letter-spacing: 2px;
}

.section-title h2::after {
    position: absolute;
    content: "";
    width: 120px;
    height: 2px;
    display: inline-block;
    margin: 4px 10px;
    background: var(--primary);
}

.section-title p:nth-child(2) {
    margin: 7.5px 0;
    color: var(--primary);
    font-size: 36px;
    font-weight: 700;
}

.section-title p:nth-child(3) {
    padding: 0px 100px;
    text-align: center;
    color: var(--tertiary);
    font-size: 16px;
    font-style: italic;
}

.bt {
    padding: 8px 23px;
    font-size: 13px;
    font-weight: 600;
    border: 0;
    border-radius: 4px;
    transition: .3s;
}

.bt-primary {
    color: #fff;
    background: var(--primary);
}

.bt-primary:hover {
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary);
}

.bt-secondary {
    background: var(--secondary);
    color: #fff;
}

.bt-secondary:hover {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.bt-tertiary {
    background: var(--tertiary);
    color: #fff;
}

.bg-tertiary {
    background: rgba(255, 166, 0, 0.245);
}

.bg-quartenary {
    background: #daebfc44;
}

/* Buttons Fixed */
#backToTop {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 35px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 1px 1px 10px #000;
    color: #fff;
}

#btnWhatsapp {
    position: fixed;
    bottom: 20px;
    right: 35px;
    z-index: 99;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 50%;
    background: var(--icon-whats);
    box-shadow: 1px 1px 10px #000;
    color: #fff;
}

/* --------------------------- Header --------------------------- */
#header {
    position: fixed;
    margin-top: 25px;
    padding: 5px 0;
    z-index: 997;
    top: 0;
    left: 0;
    right: 0;
    transition: all 1s;
}

.header-white {
    margin-top: 0 !important;
    background: #ffffffef;
    box-shadow: 5px 2px 20px #00000088;
    transition: 3s;
}

.navbar-fixed-color li a {
    color: var(--quartenary) !important;
    font-weight: 600;
}

#header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .logo {
    width: 175px;
    height: 60px;
    transition: all 1s;
}

#header .logo-sm {
    display: none;
}


#header .navbar {
    position: relative;
    padding: 0;
}

#header .navbar ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
}

#header .navbar ul li {
    position: relative;
}

#header .navbar>ul>li {
    white-space: nowrap;
}

#header .navbar a,
#header .navbar a:focus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    transition: .3s;
}

#header .navbar>ul>li>a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    visibility: hidden;
    transition: all .3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all .3s ease-in-out 0s;
}

#header .navbar a:hover:before,
#header .navbar li:hover>a:before,
#header .navbar .active:before {
    visibility: visible;
    transform: scaleX(.7);
}

/* --------------------------- Menu Mobile --------------------------- */
#header .toggleMenu {
    display: none;
}

#header .toggleMenu ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

#header .toggleMenu ul li {
    padding: 17px 30px 0 30px;
}

#header .toggleMenu ul li i {
    font-size: 20px;
    color: rgb(255, 181, 45);
    text-shadow: 1px 1px 5px var(--secondary-dark);
    /* filter: drop-shadow(5px 5px 16px #fff); */
    transition: .5s;
}

#header .toggleMenu ul li i:hover,
#header .toggleMenu ul li a.active {
    font-size: 22px;
    filter: drop-shadow(5px 5px 3px #fff);
}

/* --------------------------- Home --------------------------- */
#home {
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    width: 100%;
    min-height: 100vh;
    background: url("../img/home/image01.jpg") center center;
    background-size: cover;
}

#home::before {
    position: absolute;
    content: "";
    inset: 0;
    background: rgba(0, 31, 84, 0.533);
}

#home h2 {
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 48px;
    color: #fff;
}

#home h2 span {
    color: var(--secondary);
    filter: drop-shadow(2px 2px 10px var(--secondary));
}

#home p {
    margin: 0 0 30px 0;
    font-size: 20px;
    color: #fff;
    opacity: .85;
}

#home .bt {
    display: inline-block;
}

#home .bt-icon {
    display: flex;
    align-items: center;
    margin-left: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    opacity: .9;
    transition: .5s;
}

#home .bt-icon i {
    padding: 3px;
    margin-right: 7.5px;
    color: var(--secondary);
    font-size: 18px;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    transition: .3s;
    line-height: 0;
    filter: drop-shadow(2px 2px 10px var(--secondary));
}

#home .bt:hover {
    border: 1px solid #fff;
}

#home .bt-icon:hover {
    color: var(--secondary);
    opacity: 1;
}

#home .bt-icon:hover i {
    color: #fff;
    border: 2px solid #fff;
}

/* --------------------------- Cards Services --------------------------- */
#card-servicos .card-item {
    position: relative;
    padding: 30px;
    height: 100%;
    background: #fff;
    transition: all ease-in-out .4s;
}

#card-servicos .card-item .card-icon {
    margin-bottom: 10px;
}

#card-servicos .card-item .card-icon i {
    color: var(--secondary);
    font-size: 36px;
    transition: .3s;
}

#card-servicos .card-item h4 {
    margin-bottom: 15px;
    font-size: 22px;
}

#card-servicos .card-item h4 a {
    color: var(--quartenary);
    transition: ease-in-out .3s;
}

#card-servicos .card-item p {
    line-height: 24px;
    text-align: justify;
    font-size: 14px;
    margin-bottom: 0;
}

#card-servicos .card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

#card-servicos .card-item:hover h4 a {
    color: var(--primary);
}

/* --------------------------- Leveduca --------------------------- */
#leveduca {
    padding: 0;
    margin-bottom: 30px;
}

#leveduca .container {
    padding: 80px 80px 25px 80px;
    border-radius: 15px;
}

#leveduca .row .leveduca-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#leveduca .row .leveduca-img {
    display: flex;
    align-items: center;
}

#leveduca .row h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--quartenary);
}

#leveduca .row h3 em {
    position: relative;
    font-style: normal;
}

#leveduca .row h3 em:after {
    position: absolute;
    content: "";
    height: 7.5px;
    left: 0;
    right: 0;
    bottom: 10px;
    background: var(--primary);
    z-index: -1;
    opacity: .75;
}

#leveduca .row p {
    margin-right: 40px;
    text-align: justify;
    color: var(--quartenary);
    font-size: 16px;
    opacity: .85;
}

#leveduca .bt {
    display: inline-block;
    align-self: self-start;
}

#leveduca .bt:hover {
    background: var(--primary);
    color: #fff;
    border: 0;
}

#leveduca .img {
    position: relative;
}

#leveduca .img:before {
    position: absolute;
    content: "";
    inset: 0;
    background: red;
    border-radius: 15px;
    transform: rotate(12deg);
    opacity: .3;
}

#leveduca .img:after {
    position: absolute;
    content: "";
    inset: 0;
    background: red;
    border-radius: 15px;
    transform: rotate(6deg);
    opacity: .75;
}

#leveduca .img img {
    position: relative;
    z-index: 3;
    border-radius: 15px;
}

/* --------------------------- Cursos Leveduca --------------------------- */
#cursoLeveduca {
    margin: 100px 0 0 0;
    height: 15vh;
}

#cursoLeveduca .swiper-wrapper {
    display: flex;
    align-items: center;
}

#cursoLeveduca .swiper-slide img {
    width: 200px;
    height: 120px;
    transition: 0.3s;
}

/* --------------------------- Preços --------------------------- */
#precos .card-preco {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 60px 20px;
    height: 100%;
    background: #fff;
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: 4px solid #fff;
}

#precos .card-preco .megas-preco {
    background: linear-gradient(#45505be1, #45505b), url("../img/precos/card-preco.jpg") center center;
    background-size: cover;
    text-align: center;
    padding: 40px;
    margin: -60px -40px 0;
}

#precos .megas-preco h3 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 36px;
}

#precos .megas-preco h4 {
    margin-bottom: 0;
    color: #fff;
    font-size: 30px;
}

#precos .megas-preco h4 sup {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
    margin-right: 5px;
}

#precos .megas-preco h4 span {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
}

#precos ul {
    padding: 30px 0;
    line-height: 20px;
    color: var(--quartenary);
    text-align: left;
    list-style: none;
}

#precos ul li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

#precos ul li i {
    padding-right: 3px;
    color: var(--secondary);
    font-size: 36px;
    line-height: 0;
}

#precos ul .x {
    color: var(--tertiary);
    opacity: .75;
    line-height: 30px;
}

#precos ul .x i {
    padding-left: 10px;
    padding-right: 11.5px;
    color: var(--tertiary);
    font-size: 20px;
}

#precos ul .x span {
    text-decoration: line-through;
}

#precos .destaque {
    border-color: var(--primary-dark);
}

#precos .destaque .megas-preco h4,
#precos .destaque .megas-preco h4 sup,
#precos .destaque .megas-preco h4 span {
    color: #fff;
}

#precos .destaque .megas-preco {
    background: linear-gradient(#013151bc, var(--primary-dark)), url("../img/precos/card-preco.jpg") center center;
    background-size: cover;
}

#precos .destaque ul li i {
    color: var(--primary-dark);
}

/* --------------------------- Slide streams --------------------------- */
#stream {
    margin: 10px 0 0 0;
    height: 27.5vh;
}

#stream .swiper-slide {
    display: flex;
    align-items: center;
}

#stream .swiper .swiper-slide img {
    width: 200px;
    height: 80px;
}


/* --------------------------- Combos --------------------------- */
#combos .tab-bg {
    background: #daebfc44;
    padding: 30px;
    border-radius: 10px;
}

#combos .nav-tabs {
    display: flex;
    border: 0;
}

#combos .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 20px;
    height: 100%;
    color: var(--quartenary);
    background: #fff;
    box-shadow: 5px 5px 25px #45505b38;
    border: 0;
    border-radius: 7.5px;
    cursor: pointer;
    transition: 0s;
}

#combos .nav-link i {
    font-size: 32px;
    line-height: 0;
}

#combos .nav-item:nth-child(1) i {
    color: cyan;
}

#combos .nav-item:nth-child(2) i {
    color: indigo;
}

#combos .nav-item:nth-child(3) i {
    color: teal;
}

#combos .nav-item:nth-child(4) i {
    color: red;
}

#combos .nav-item:nth-child(5) i {
    color: blue;
}

#combos .nav-item:nth-child(6) i {
    color: orange;
}

#combos .nav-link h4 {
    margin: 10px 0 0 0;
    color: var(--quartenary);
    font-size: 14px;
    font-weight: 600;
}

#combos .nav-link:hover {
    color: var(--primary);
}

#combos .nav-link.active {
    background: var(--quartenary) linear-gradient(#3498dbe7, #3498db47);
    transition: .3s;
}

#combos .nav-link.active h4 {
    color: #fff;
}

#combos .nav-link.active i {
    color: #fff;
}

#combos .tab-content {
    margin-top: 30px;
}

#combos .tab-pane.active {
    animation: fadeIn .5s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#combos .tab-pane h3 {
    color: var(--secondary);
    font-size: 26px;
    font-weight: 500;
}

#combos .tab-pane ul {
    padding: 0;
    list-style: none;
}

#combos .tab-pane p {
    display: flex;
    text-align: justify;
    color: #55585d;
    font-weight: 500;
    font-size: 13px;
}

#combos .tab-pane .card-combo ul li {
    display: flex;
    align-items: center;
    padding-bottom: 7.5px;
}

#combos .tab-pane ul li span {
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
}

#combos .tab-pane ul li em {
    color: #55585d;
    font-weight: 500;
    font-size: 13.5px;
}

#combos .tab-pane ul i {
    color: var(--primary);
    font-size: 20px;
}

#combos .card {
    margin-top: 30px;
    background: var(--secondary);
    border-radius: 7.5px;
    border: 5px solid #fff;
    box-shadow: 3px 5px 25px #45505b80;
}

#combos .card h3 {
    color: #fff;
    font-size: 20px;
}

#combos .card li {
    float: right;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
}

#combos .card li em {
    font-style: normal;
}

#combos .card li b {
    font-size: 18px;
}

#combos .pacotePlanos .listCombos ul {
    padding: 0;
    list-style: none;
}

#combos .pacotePlanos .listCombos li+li {
    margin-top: 15px;
}

#combos .pacotePlanos .listCombos li {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 12.5px 20px;
    background: var(--secondary-dark);
    border-radius: 10px;
}

#combos .pacotePlanos .listCombos li .list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

#combos .pacotePlanos .listCombos li .list-header i {
    color: #fff;
    font-size: 14px;
}

#combos .pacotePlanos .listCombos li .list-header a {
    position: relative;
    display: block;
    padding: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    outline: none;
    cursor: pointer;
}

#combos .pacotePlanos .listCombos li .list-header a.collapsed {
    color: var(--quartenary);
}

#combos .pacotePlanos .listCombos li .list-header a.collapsed:hover {
    color: var(--primary);
}

#combos .pacotePlanos .listCombos li .list-body p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    text-align: justify;
    color: var(--tertiary);
}

#combos .pacotePlanos .listCombos .list-body table {
    text-align: center;
    font-size: 14px;
    border: 2.5px solid #fff;
}

#combos .pacotePlanos .listCombos .list-body table th {
    color: #fff;
    background: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
    text-shadow: 1px 1px 5px #000;
}

#combos .pacotePlanos .listCombos .list-body table td {
    color: #fff;
    background: var(--primary);
    font-weight: 600;
    border: 0;
}

/* --------------------------- Banner Paramount --------------------------- */
#banner-paramount {
    padding: 40px 0;
}

#banner-paramount .banner-img {
    min-height: 400px;
    background: linear-gradient(#00000092, #00000052), url("../img/banners/paramount.jpg") center center;
    background-size: cover;
}

#banner-paramount .banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    margin: 0;
    height: 100%;
    background: linear-gradient(#00000052, #00000052), url("../img/banners/paramount2.jpg") center center;
    background-size: cover;
    color: #ffffffc9;
}

#banner-paramount .banner-text h3 {
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

#banner-paramount .banner-text ul {
    list-style: none;
    padding: 0;
}

#banner-paramount .banner-text ul li {
    padding-bottom: 10px;
    font-size: 14px;
}

#banner-paramount .banner-text ul i {
    padding-right: 4px;
    font-size: 16px;
    color: var(--secondary);
}

#banner-paramount .banner-text p {
    margin-bottom: 15px;
    text-align: center;
    font-size: 15px;
    font-style: italic;
}

#banner-paramount .banner-text .bt {
    display: flex;
    align-items: center;
    align-self: self-start;
}

#banner-paramount .banner-text .bt i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
}

/* --------------------------- Serviços --------------------------- */
#servicos .row {
    display: flex;
    justify-content: center;
}

#servicos .card-servico {
    margin: 25px 0;
}

#servicos .imagem-servico {
    border-radius: 8px;
    overflow: hidden;
}

#servicos .imagem-servico img {
    transition: .6s;
}

#servicos .detalhe-servico {
    position: relative;
    padding: 40px 30px;
    margin: -100px 30px 0 30px;
    height: 300px;
    text-align: center;
    background: #ffffffec;
    border-radius: 8px;
    box-shadow: 0px 0 25px #00000037;
    transition: all ease-in-out .3s;
}

#servicos .detalhe-servico .icon-servico {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -36px;
    left: calc(50% - 36px);
    margin: 0;
    margin-bottom: 20px;
    width: 72px;
    height: 72px;
    background: var(--primary);
    color: #fff;
    font-size: 28px;
    border: 6px solid #fff;
    border-radius: 50px;
    transition: ease-in-out .3s;
}

#servicos .detalhe-servico h3 {
    margin: 10px 0 15px 0;
    color: #222;
    font-size: 22px;
    font-weight: 700;
    transition: ease-in-out .3s;
}

#servicos .detalhe-servico p {
    margin-bottom: 0;
    text-align: justify;
    font-size: 14px;
    line-height: 24px;
}

#servicos .card-servico:hover .detalhe-servico h3 {
    color: var(--primary);
}

#servicos .card-servico:hover .icon-servico {
    background: #fff;
    border: 2px solid var(--primary);
}

#servicos .card-servico:hover .detalhe-servico .icon-servico i {
    color: var(--primary);
}

#servicos .card-servico:hover .imagem-servico img {
    transform: scale(1.2);
}

/* --------------------------- Empresa --------------------------- */
#empresa .imagem-empresa {
    position: relative;
    margin: 60px 0 0 60px;
    opacity: .75;
}

#empresa .imagem-empresa:before {
    position: absolute;
    content: "";
    z-index: -1;
    inset: -60px 0 0 -60px;
    background: url("../img/empresa/image02.webp") top left;
    background-repeat: no-repeat;
    opacity: .85;
    filter: grayscale(100%);
}

#empresa h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
    color: var(--quartenary);
    font-size: 26px;
    font-weight: 300;
}

#empresa .row div:nth-child(2) h3,
#empresa .row div:nth-child(2) ul li,
#empresa .row div:nth-child(2) .tab-content {
    padding-left: 25px;
}

#empresa .nav-pills {
    border-bottom: 1px solid #45505b2e;
}

#empresa .nav-pills li+li {
    margin-left: 40px;
}

#empresa .nav-pills .nav-link {
    margin-bottom: -2px;
    padding: 7.5px 0;
    background: none;
    color: var(--quartenary);
    font-size: 18px;
    font-weight: 400;
    border-radius: 0;
}

#empresa .nav-pills .nav-link.active {
    color: var(--secondary);
    font-weight: 600;
    border-bottom: 3px solid var(--secondary);
}

#empresa .tab-content .empresa-sub-item {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

#empresa .tab-content h4 {
    margin: 0;
    color: var(--quartenary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

#empresa .tab-content p:nth-child(1) {
    margin-top: 10px;
    color: var(--quartenary);
    font-size: 16px;
    font-style: normal;
}

#empresa .tab-content p {
    margin-top: 7.5px;
    color: var(--tertiary);
    font-size: 14.5px;
    font-style: italic;
}

#empresa .tab-content i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 22px;
    line-height: 0;
}

/* --------------------------- Contato --------------------------- */
#contato .informacoes {
    padding: 20px 10px 15px 18px;
    background: #fff;
    border-radius: 10px;
}

#contato .informacoes i {
    font-size: 20px;
    color: #3498db;
    float: left;
    width: 44px;
    height: 44px;
    background: #eaf4fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

#contato .informacoes h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #384046;
}

#contato .informacoes p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 12px;
    color: #65747f;
}

#contato .informacoes i:hover {
    background: #3498db;
    color: #fff;
}

#contato .formularioEmail {
    width: 100%;
    padding: 0 30px 30px 30px;
    border-radius: 4px;
}

#contato .formularioEmail .form-gruop {
    padding-bottom: 15px;
}

#contato .formularioEmail input,
#contato .formularioEmail select,
#contato .formularioEmail textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 10px;
}

#contato .formularioEmail input {
    height: 30px;
}

#contato .formularioEmail select {
    height: 32px;
}

#contato .formularioEmail select:hover {
    background-color: #009cea04;
}

#contato .bt {
    padding: 7px 30px;
}

/* --------------------------- Footer --------------------------- */
#footer {
    background-color: #3f6d94;
    padding: 0 0 30px 0;
    color: #364146;
    font-size: 14px;
}

#footer .footerTopo {
    background: #f7f8f9;
    padding: 60px 0 30px 0;
    border-top: 2px solid #e9ecee;
}

#footer .footerTopo .info-footer {
    margin-bottom: 30px;
}

#footer .footerTopo .info-footer h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2;
}

#footer .footerTopo .info-footer p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #576971;
}

#footer .footerTopo .rede-social a {
    font-size: 18px;
    display: inline-block;
    background: #e9ecee;
    color: #8a9ca5;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footerTopo .rede-social a:hover {
    background: #009cea;
    color: #fff;
    text-decoration: none;
}

#footer .footerTopo h4 {
    font-size: 16px;
    font-weight: 600;
    color: #364146;
    position: relative;
    padding-bottom: 12px;
}

#footer .footerTopo .links {
    margin-bottom: 30px;
}

#footer .footerTopo .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footerTopo .links ul i {
    padding-right: 2px;
    color: #009cea;
    font-size: 18px;
    line-height: 1;
    margin-left: -5px;
}

#footer .footerTopo .links ul li {
    padding: 7px 0;
    display: flex;
    align-items: center;
}

#footer .footerTopo .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

#footer .footerTopo .dropdown ul li {
    min-width: 200px;
}

#footer .footerTopo .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #545454;
}

#footer .footerTopo .dropdown ul a li {
    font-size: 12px;
}

#footer .footerTopo .dropdown ul a:hover,
#footer .footerTopo .dropdown ul .active:hover,
#footer .footerTopo .dropdown ul li:hover>a {
    color: #1eb4ff;
}

#footer .footerTopo .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

#footer .footerTopo .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

#footer .footerTopo .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

#footer .footerTopo .links ul li:first-child {
    padding-top: 0;
}

#footer .footerTopo .links ul a {
    color: #576971;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footerTopo .links ul a:hover {
    color: #009cea;
}

#footer .copyright {
    font-style: italic;
    text-align: center;
    padding-top: 30px;
    color: #fff;
}

#footer .copyright a {
    color: var(--secondary);
}