@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cabecalho{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    backdrop-filter: blur(10px);

    z-index: 1000;
}

.grupo_esquerda,
.grupo_direita{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.grupo_esquerda{
    gap: 30px;
}

.grupo_direita{
    gap: 12px;
}

.cabecalho_logo{
    width: 120px;
    height: 62px;
    object-fit: contain;
    margin-left: 20px;
}

.cabecalho_elementos{
    text-decoration: none;
    color: #1a1f2b;
    font-family: "Inter", "sans-serif";
    font-weight: 400;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.cabecalho_elementos:hover{
    color: #0145f2;
}

.cabecalho_logo_click{
    display: inline-flex;
    align-items: center;
}

.cabecalho_elemento_comecar{
    font-family: "Inter", "sans-serif";
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid rgba(1,69,242,0.18);
    border-radius: 10px;
    background: linear-gradient(135deg,#0145f2,#2563eb);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(1,69,242,0.16);
    transition:
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.cabecalho_elemento_comecar:hover{
    background: linear-gradient(135deg,#013bd1,#1d4ed8);
    box-shadow: 0 10px 24px rgba(1,69,242,0.20);
    transform: translateY(-1px);
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: vantara-page-exit 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

::view-transition-new(root) {
    animation: vantara-page-enter 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes vantara-page-exit {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(var(--vantara-page-exit-x, -18px)) scale(0.992);
    }
}

@keyframes vantara-page-enter {
    from {
        opacity: 0;
        transform: translateX(var(--vantara-page-enter-x, 18px)) scale(0.992);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none !important;
    }

    * {
        scroll-behavior: auto !important;
    }
}

html.vantara_page_reveal body {
    animation: vantara-page-enter 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
    html.vantara_page_reveal body {
        animation: none !important;
    }
}







