.topbar-call {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    background-color: #0A7AFF;
    border: 0px;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
}

.topbar-call:hover {
    background-color: #0357bd;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
}

.container {

    width: 100%;
    max-width: 1280px;

    margin: auto;

    padding-left: 25px;
    padding-right: 25px;

}

/******************************************************
TOPBAR DESKTOP
******************************************************/

.topbar {

    width: 100%;

    background: #0E2E50;

    color: white;

    font-size: 14px;

    display: grid;
    grid-template-columns: 80% 20%;

}

.topbar .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 42px;

}

.topbar-left {

    display: flex;

    gap: 28px;

    align-items: center;

}

.topbar-left span {

    display: flex;

    align-items: center;

    gap: 8px;

}

.topbar-right {

    display: flex;

    align-items: center;

    gap: 18px;

}

.topbar-right a {

    color: white;

    transition: .25s;

}

.topbar-right a:hover {

    color: #38bdf8;

}

/******************************************************
HEADER
******************************************************/

.header {

    width: 100%;

    position: sticky;

    top: 0;

    background: white;

    z-index: 500;

    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);

}

.nav {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 82px;

}

.logo-header {

    display: flex;

    align-items: center;

    gap: 14px;

}

.logo-header img {

    height: 56px;

}

.logo-text {

    display: flex;

    flex-direction: column;

}

.logo-text strong {

    color: #0E2E50;

    font-size: 24px;

}

.logo-text small {

    color: #777;

}

/******************************************************
DESKTOP MENU
******************************************************/

.menu {

    display: flex;

    align-items: center;

    gap: 36px;

}

.menu>li {

    position: relative;

}

.menu>li>a {

    font-size: 15px;

    font-weight: 600;

    color: #233142;

    transition: .25s;

    display: block;

    padding: 30px 0;

}

.menu>li>a:hover {

    color: #0A7AFF;

}

/******************************************************
DROPDOWN
******************************************************/

.dropdown {

    position: absolute;

    left: 0;

    top: 100%;

    width: 260px;

    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .14);

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: .25s;

}

.menu li:hover .dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.dropdown a {

    display: block;

    padding: 16px 22px;

    color: #34495e;

    border-bottom: 1px solid #ececec;

    transition: .25s;

}

.dropdown a:hover {

    background: #0A7AFF;

    color: white;

}

.dropdown a:last-child {

    border: none;

}

/******************************************************
CTA BUTTON
******************************************************/

.cta {

    /*  background:#0A7AFF; */

    /*     color:white; */
    color: #0A7AFF;
    border: 2px solid #0A7AFF !important;
    padding: 14px 28px;

    border-radius: 10px;

    font-weight: 700;

    transition: .25s;

}

.cta:hover {
    color: white;
    background: #065fd4;

}

/******************************************************
MOBILE
******************************************************/

.mobile-header {

    display: none;

}

#menu-toggle {

    display: none;

}

.hamburger {

    display: flex;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

}

.hamburger span {

    width: 30px;

    height: 3px;

    background: #0E2E50;

    border-radius: 20px;

}

.mobile-menu {

    max-height: 0;

    overflow: hidden;

    background: white;

    transition: .35s;

}

#menu-toggle:checked~.mobile-menu {

    max-height: 1000px;

}

.mobile-menu ul {

    display: flex;

    flex-direction: column;

}

.mobile-menu a {

    display: block;

    padding: 18px 25px;

    border-bottom: 1px solid #ececec;

    font-weight: 600;

}

/******************************************************
MOBILE DROPDOWN
******************************************************/

.mobile-submenu {

    display: none;

    background: #f7f7f7;

}

.mobile-menu input {

    display: none;

}

.mobile-menu label {

    display: block;

    padding: 18px 25px;

    border-bottom: 1px solid #ececec;

    cursor: pointer;

    font-weight: 600;

}

.mobile-menu input:checked+label+.mobile-submenu {

    display: block;

}

.mobile-submenu a {

    padding-left: 45px;

    font-size: 14px;

}

/******************************************************
RESPONSIVE
******************************************************/
/******************************************************
HERO
******************************************************/

.background-hero {

    background:
        linear-gradient(rgba(14, 46, 80, .72), rgba(14, 46, 80, .72)),
        url("/assets/background.png") center/cover;

    color: white;

    padding: 110px 0;

}

.hero-content {

    max-width: 650px;

}

.hero-tag {

    display: inline-block;

    padding: 8px 18px;

    background: #0A7AFF;

    border-radius: 40px;

    margin-bottom: 25px;

    font-size: 14px;

    font-weight: 600;

}

.background-hero h1 {

    font-size: 56px;

    line-height: 1.1;

    margin-bottom: 25px;

}

.background-hero p {

    font-size: 19px;

    line-height: 1.8;

    opacity: .95;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    align-items: center;

    flex-wrap: wrap;

}

.hero-phone {

    padding: 14px 26px;

    border: 2px solid white;

    border-radius: 40px;

    font-weight: 700;

    transition: .25s;

}

.hero-phone:hover {

    background: white;

    color: #0E2E50;

}

.mobile-cta {

    padding: 25px;

}

.mobile-cta .cta {

    display: block;

    text-align: center;

}

@media(max-width:991px) {

    .background-hero {

        padding: 70px 0;

    }

    .background-hero h1 {

        font-size: 36px;

    }

    .background-hero p {

        font-size: 16px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-phone {

        text-align: center;

    }

}

@media(max-width:991px) {

    .topbar {

        display: none;

    }

    .header {

        display: none;

    }

    .mobile-header {

        display: block;

        background: white;

        position: sticky;

        top: 0;

        z-index: 999;

        box-shadow: 0 2px 15px rgba(0, 0, 0, .08);

    }

    .mobile-top {

        height: 72px;

        display: flex;

        justify-content: space-between;

        align-items: center;

    }

    .mobile-logo img {

        height: 50px;

    }

}

@media(min-width:992px) {

    .mobile-header {

        display: none;

    }

}

/* ==========================================================
   BLOG DROPDOWN
========================================================== */

.has-dropdown {
    position: relative;
}

.dropdown {

    position: absolute;

    top: 100%;
    left: 0;

    width: 360px;
    max-height: 450px;

    overflow-y: auto;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .25s;

    padding: 8px;

    z-index: 999;

}

.has-dropdown:hover .dropdown {

    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

/* Scroll */

.dropdown::-webkit-scrollbar {
    width: 8px;
}

.dropdown::-webkit-scrollbar-thumb {
    background: #d7d7d7;
    border-radius: 20px;
}

.dropdown-category {

    border-bottom: 1px solid #ececec;

}

.dropdown-category:last-child {

    border-bottom: none;

}

.category-title {

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;

    cursor: pointer;

    padding: 12px 14px;

    font-weight: 600;

    color: #123A55;

    user-select: none;

    border-radius: 8px;

    transition: .2s;

}

.category-title:hover {

    background: #f4f7fb;

}

.arrow {

    transition: .25s;

    font-size: 12px;

}

/* começa fechado */

.dropdown-submenu {

    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;

    margin-left: 12px;

    border-left: 2px solid #dbe5f0;

}

/* abre */

.dropdown-category.open .dropdown-submenu {

    max-height: 220px;

    overflow-y: auto;

}

/* scroll da categoria */

.dropdown-submenu::-webkit-scrollbar {

    width: 6px;

}

.dropdown-submenu::-webkit-scrollbar-thumb {

    background: #d6d6d6;

    border-radius: 20px;

}

.dropdown-category.open .arrow {

    transform: rotate(90deg);

}

.article-link {

    display: block;

    padding: 10px 14px;

    color: #555;

    text-decoration: none;

    font-size: 14px;

    transition: .2s;

}

.article-link:hover {

    background: #eef5ff;

    color: #0F4AB8;

    border-radius: 6px;

}


/*  ######## BLOG DROPDOWN MOBILE ############### */
/* ===========================================
   BLOG MOBILE
=========================================== */

.mobile-category {

    border-top: 1px solid #ececec;

}

.mobile-category-toggle {

    display: none !important;

}

.mobile-category-title {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 45px;

    cursor: pointer;

    background: #f8f8f8;

    font-weight: 600;

    color: #123A55;

}

.mobile-category-title::after {

    content: "▶";

    font-size: 12px;

    transition: .25s;

}

.mobile-category-submenu {

    max-height: 0;

    overflow: hidden;

    transition: max-height .3s ease;

    background: white;

}

.mobile-category-toggle:checked+.mobile-category-title+.mobile-category-submenu {

    max-height: 250px;

    overflow-y: auto;

}

.mobile-category-toggle:checked+.mobile-category-title::after {

    transform: rotate(90deg);

}

.mobile-category-submenu a {

    display: block;

    padding: 14px 65px;

    font-size: 14px;

    color: #555;

    border-top: 1px solid #f0f0f0;

}

.mobile-category-submenu a:hover {

    background: #eef5ff;

    color: #0A7AFF;

}

/* scrollbar */

.mobile-category-submenu::-webkit-scrollbar {

    width: 5px;

}

.mobile-category-submenu::-webkit-scrollbar-thumb {

    background: #ccc;

    border-radius: 20px;

}