* {
    margin: 0;
    padding: 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background: rgba(0, 0, 0, 0), rgba(0, 0, 0, 0);
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
}

p {
    font-size: 16px;
    color: var(--text-light);
}

html, body {
    height: 100%;
}

.background {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: relative;
    z-index: 1000;
}

.left-space {
    width: 150px;
}

.header_top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: linear-gradient(90deg, #0019D1, #020E66);
    padding: 15px 30px;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.header_top a {
    position: relative;
}

.header_top a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.header_top a:hover::after {
    width: 100%;
}

.header_top:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.logo {
    justify-self: center;
}

.logo img {
    width: 180px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo img:hover {
    transform: scale(1.03);
    opacity: 0.9;
    border-bottom: none;
}

.logo a:hover {
    border-bottom: none;
    background: transparent;
}

.logo a::after {
    background: transparent;
}

.buttons {
    justify-self: end;
    display: flex;
    align-items: center;
}

.buttons ul {
    display: flex;
    gap: 12px;
    list-style: none;
}

.button_header {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.button_header:hover {
    background: #fff;
}

.button_header:hover a {
    color: #0019D1;
}

.header_top a {
    color: #fff;
    text-decoration: none;
}

.menu {
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.menu ul {
    display: flex;
    justify-content: center;
    background: #191919;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu>ul>li {
    position: relative;
    padding: 18px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.menu>ul>li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #0019D1;
    transition: 0.3s;
    transform: translateX(-50%);
}

.menu>ul>li:hover::before {
    width: 60%;
}

.menu>ul>li:hover {
    background: rgba(0, 25, 209, 0.15);
}

.submenu {
    position: absolute;
    z-index: 9999;
    overflow: hidden;
    top: 110%;
    left: 0;
    min-width: 240px;
    padding: 10px 0;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.submenu li a {
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.submenu li:hover {
    background: #0019D1;
    color: #fff;
    border-radius: 6px;
}

.submenu li {
    padding: 12px 20px;
    color: #ddd;
    cursor: pointer;
    transition: background 0.2s ease;
}

.menu>ul>li:hover>.submenu {
    border-top: 1px solid #0019D1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    text-align: center;
}

.menu li:hover .submenu {
    display: block;
}

.menu>ul>li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 30px;
    transition: 0.3s;
    color: white;
    cursor: pointer;
    justify-self: start;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.submenu.active {
    display: block;
}

@media (min-width: 769px) {
    .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #191919;
        min-width: 180px;
    }

    .menu li:hover .submenu {
        display: block;
    }
}

@media (max-width: 768px) {
    .header_top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 20px;
        position: relative;
    }

    .left-space {
        display: none;
    }

    .logo {
        order: 1;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo img {
        width: 160px;
    }

    .buttons {
        order: 2;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .buttons ul {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .menu-toggle {
        position: static;
        order: 3;
        margin-top: 5px;
        font-size: 28px;
    }

    .banner_text {
        display: none;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        justify-self: end;
    }

    .menu ul.active {
        display: flex;
    }

    .menu ul {
        width: 100%;
        text-align: center;
    }

    .menu>ul>li {
        width: 100%;
        padding: 16px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu>ul>li>a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .menu ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu ul.active {
        display: flex;
    }

    .menu>ul>li {
        width: 100%;
        text-align: center;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        pointer-events: auto;
        width: 100%;
        background: #111;
        text-align: center;
        padding: 0;
        min-width: unset !important;
    }

    .submenu.active {
        display: block;
    }

    .submenu li {
        padding: 14px 0;
        width: 100%;
        text-align: center;
    }

    .submenu a {
        display: block;
        width: 100%;
    }
}
.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}
.banner img{
    border-radius: 16px;
}

.blog_future {
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    background: #f4f6ff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.blog_content {
    max-width: 700px;
    text-align: center;
    background: linear-gradient(135deg, #0019D1, #020E66);
    color: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tag_novo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.blog_content h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.blog_content p {
    font-size: 16px;
    color: #dcdcff;
    margin-bottom: 20px;
}

.blog_diferenciais {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 25px;
}

.btn_aviso {
    display: inline-block;
    background: #fff;
    color: #0019D1;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.25s;
}

.btn_aviso:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.footer_content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 50px 60px;
    background: linear-gradient(180deg, #020E66, #000a4d);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer_content div {
    min-width: 200px;
}

.footer_content li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.25s ease;
}

.footer_content li:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer_content h3 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 6px;
    color: #fff;
}

.logo_footer {
    display: flex;
    align-items: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 20px;
}

.logo_footer img {
    width: 160px;
}

.localizacao a {
    text-decoration: none;
    color: #ccc;
    transition: all 0.25s ease;
}

.localizacao a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer_content ul {
    padding: 0;
}

.footer_content {
    gap: 40px;
}

.footer_bottom {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer_content {
        flex-direction: column;
        text-align: center;
    }

    .footer_content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer_content {
        padding: 30px 20px;
    }

    .logo_footer {
        justify-content: center;
    }

    .logo_footer {
        border-right: none;
        padding-left: 20px;
    }
}

.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-fixo img {
    width: 28px;
    height: 28px;
}

.whatsapp-fixo:hover {
    transform: scale(1.1);
}