.hosting_sales_hero {
    padding: 85px 0 70px;
    background: #fff;
}

.hosting_sales_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hosting_sales_media {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(2,118,172,.25), transparent 32%),
        linear-gradient(135deg, #edf3ff, #f8fbff);
    border: 1px solid #dce5ef;
}

.hosting_dashboard {
    position: absolute;
    left: 9%;
    top: 13%;
    width: 72%;
    background: rgba(255,255,255,.96);
    border: 1px solid #dce5ef;
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(15,23,42,.12);
    overflow: hidden;
}

.dashboard_top {
    height: 46px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.dashboard_top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
}

.dashboard_top span:nth-child(2) {
    background: #facc15;
}

.dashboard_top span:nth-child(3) {
    background: #ef4444;
}

.dashboard_head {
    padding: 28px;
}

.dashboard_head strong {
    display: block;
    color: #071827;
    font-size: 30px;
    margin-bottom: 6px;
    font-family: 'MVO';
    font-weight: 100;
}

.dashboard_head small {
    color: #64748b;
}

.dashboard_body {
    padding: 0 28px 32px;
}

.dash_line {
    height: 16px;
    border-radius: 999px;
    background: #e8f3fb;
    margin-bottom: 14px;
}

.w90 { width: 90%; }
.w80 { width: 80%; }
.w65 { width: 65%; }
.w50 { width: 50%; }

.dash_box {
    height: 120px;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(2,118,172,.12), transparent),
        #f8fbff;
    border: 1px solid #e2e8f0;
    margin: 22px 0;
}

.uptime_card {
    position: absolute;
    right: 7%;
    top: 34%;
    width: 180px;
    height: 180px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #dce5ef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00588f;
    box-shadow: 0 25px 60px rgba(15,23,42,.14);
}

.uptime_card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 12px solid #d9ecfb;
    border-top-color: #0276ac;
    transform: rotate(35deg);
}

.uptime_card strong {
    position: relative;
    font-size: 24px;
    z-index: 2;
}

.uptime_card span {
    position: relative;
    z-index: 2;
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

.hosting_sales_label {
    display: inline-block;
    color: #00588f;
    font-weight: 100;
    margin-bottom: 22px;
}

.hosting_sales_content h1 {
    color: #071827;
    font-size: 45px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 600;
}

.hosting_sales_content > p {
    color: #334155;
    font-size: 19px;
    line-height: 1.7;
    margin: 0 0 28px;
    font-weight: 100;
}

.hosting_hover_list {
    display: grid;
    gap: 12px;
    margin: 28px 0 30px;
}

.hosting_hover_item {
    position: relative;
    width: fit-content;
}

.hosting_hover_item button {
    border: 0;
    background: transparent;
    padding: 0;
    color: #071827;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.hosting_hover_item button i {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #eaf8fc;
    color: #00588f;
    display: grid;
    place-items: center;
    font-size: 15px;
}

.hosting_hover_card {
    position: absolute;
    left: -380px;
    top: 50%;
    width: 340px;
    transform: translateY(-50%) translateX(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    border: 1px solid #dce5ef;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
    transition: .25s ease;
    z-index: 20;
}

.hosting_hover_card::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border-top: 1px solid #dce5ef;
    border-right: 1px solid #dce5ef;
    transform: translateY(-50%) rotate(45deg);
}

.hosting_hover_item:hover .hosting_hover_card {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.hover_card_icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #d9ecfb;
    color: #00588f;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.hosting_hover_card h3 {
    margin: 0 0 12px;
    color: #071827;
    font-size: 22px;
    line-height: 1.25;
}

.hosting_hover_card p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.hosting_sales_actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hosting_sales_actions span {
    color: #475569;
    font-size: 14px;
}

/* responsivo */

@media (max-width: 1100px) {
    .hosting_sales_container {
        grid-template-columns: 1fr;
    }

    .hosting_hover_card {
        left: 0;
        top: calc(100% + 14px);
        transform: translateY(0);
    }

    .hosting_hover_card::after {
        display: none;
    }

    .hosting_hover_item:hover .hosting_hover_card {
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .hosting_sales_hero {
        padding: 55px 0;
    }

    .hosting_sales_content h1 {
        font-size: 38px;
    }

    .hosting_sales_media {
        min-height: 420px;
    }

    .hosting_dashboard {
        width: 86%;
        left: 7%;
    }

    .uptime_card {
        right: 5%;
        top: 48%;
        width: 140px;
        height: 140px;
    }

    .hosting_sales_actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hosting_hover_item {
        width: 100%;
    }

    .hosting_hover_item button {
        text-align: left;
    }

    .hosting_hover_card {
        width: 100%;
    }
}

.btn_azul:hover {
    text-decoration: none;
    color: #fff;
    background-color: #0276ac;
}

.mvo_planos_section {
    padding: 110px 0 0 0;
    background: #fff;
}

.mvo_planos {
    margin-top: 140px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.mvo_plano {
    position: relative;
    background: #fff;
    border: 1px solid #dce5ef;
    border-radius: 24px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    min-height: 760px;
    transition: .25s ease;
}

.mvo_plano:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, .08);
    border-color: #bcd3e5;
}

.mvo_plano h3 {
    min-height: 78px;
    margin: 0 0 22px;
    color: #071827;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 600;
}

.plano_economia {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.plano_economia span {
    background: #fff1b8;
    color: #5c4400;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 600;
}

.plano_economia del {
    color: #071827;
    font-size: 14px;
}

.plano_preco {
    display: flex;
    align-items: flex-end;
    color: #071827;
    font-size: 44px;
    font-weight: 600;
    line-height: .9;
    margin-top: 8px;
}

.plano_preco span {
    font-size: 40px;
    margin-right: 2px;
}

.plano_preco small {
    font-size: 15px;
    font-weight: 600;
    margin-left: 4px;
    margin-bottom: 5px;
}

.plano_obs {
    margin: 8px 0 22px;
    color: #334155;
    font-size: 14px;
}

.btn_plano {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    width: 100%;
    height: 58px;
    background: #071827;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 100;
    transition: .2s ease;
}

.btn_plano:hover {
    background: #0276ac;
    transform: translateY(-2px);
    text-decoration: none;
    color: #FFF;
}

.plano_resumo {
    display: grid;
    gap: 12px;
    padding: 0 0 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 18px;
}

.plano_resumo div,
.mvo_plano ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #071827;
    font-size: 15px;
    line-height: 1.4;
}

.plano_resumo i,
.mvo_plano ul li i {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    color: #00588f;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.mvo_plano h4 {
    color: #071827;
    font-size: 16px;
    margin: 0 0 12px;
}

.mvo_plano ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.plano_destaque {
    border: 2px solid #0276ac !important;
    box-shadow: 0 24px 60px rgba(2, 118, 172, .12);
    transform: translateY(-12px);
    border-radius: 0 0 24px 25px !important;
}

.plano_destaque:hover {
    transform: translateY(-18px);
}

.plano_destaque .btn_plano {
    background: #0276ac;
}

.plano_destaque .btn_plano:hover {
    background: #00588f;
}

.plano_tag {
    position: absolute;
    left: -2px;
    right: -2px;
    top: -42px;
    height: 42px;
    background: #0276ac;
    color: #fff;
    border-radius: 22px 22px 0 0;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 1250px) {
    .mvo_planos {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 24px;
    }

    .plano_destaque {
        transform: none;
    }

    .plano_destaque:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 700px) {
    .mvo_planos_section {
        padding: 70px 0;
    }

    .mvo_planos {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .mvo_plano {
        min-height: auto;
    }

    .mvo_plano h3 {
        min-height: auto;
        font-size: 26px;
    }

    .plano_preco {
        font-size: 40px;
    }

    .plano_preco span {
        font-size: 34px;
    }
}

.plano_features_hover_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.plano_feature_hover {
    position: relative;
}

.plano_feature_hover button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #071827;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;

    cursor: pointer;
}

.plano_feature_hover button > i {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;

    border: 1px solid #dce5ef;
    border-radius: 8px;

    color: #00588f;
    background: #fff;

    display: grid;
    place-items: center;

    font-size: 14px;
}

.plano_feature_hover button span {
    border-bottom: 1px dashed #94a3b8;
}

.plano_feature_card {
    position: absolute;
    left: calc(100% + 18px);
    top: 50%;

    width: 330px;

    transform: translateY(-50%) translateX(12px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: #fff;
    border: 1px solid #dce5ef;
    border-radius: 22px;

    padding: 24px;

    box-shadow: 0 28px 70px rgba(15, 23, 42, .16);

    transition: .25s ease;

    z-index: 100;
}

.plano_feature_card::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;

    width: 16px;
    height: 16px;

    background: #fff;

    border-left: 1px solid #dce5ef;
    border-bottom: 1px solid #dce5ef;

    transform: translateY(-50%) rotate(45deg);
}

.plano_feature_hover:hover .plano_feature_card {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.feature_card_icon {
    width: 58px;
    height: 58px;

    border-radius: 18px;

    background: #d9ecfb;
    color: #00588f;

    display: grid;
    place-items: center;

    font-size: 24px;

    margin-bottom: 18px;
}

.plano_feature_card h4 {
    margin: 0 0 12px;

    color: #071827;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.plano_feature_card p {
    margin: 0;

    color: #475569;

    font-size: 15px;
    line-height: 1.7;
}

/* Evita cortar o card dentro dos planos */
.mvo_planos,
.mvo_plano {
    overflow: visible;
}

/* Ajuste para cards da direita aparecerem para o lado esquerdo */
.mvo_plano:nth-child(3) .plano_feature_card,
.mvo_plano:nth-child(4) .plano_feature_card {
    left: auto;
    right: calc(100% + 18px);
}

.mvo_plano:nth-child(3) .plano_feature_card::before,
.mvo_plano:nth-child(4) .plano_feature_card::before {
    left: auto;
    right: -8px;

    border-left: 0;
    border-bottom: 0;

    border-right: 1px solid #dce5ef;
    border-top: 1px solid #dce5ef;
}

/* Mobile */
@media (max-width: 900px) {
    .plano_feature_card {
        position: static;
        width: 100%;

        transform: none;

        margin-top: 12px;

        display: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .plano_feature_card::before {
        display: none;
    }

    .plano_feature_hover:hover .plano_feature_card {
        display: block;
        transform: none;
    }

    .mvo_plano:nth-child(3) .plano_feature_card,
    .mvo_plano:nth-child(4) .plano_feature_card {
        right: auto;
        left: auto;
    }
}

.mvo_planos_section,
.mvo_planos {
    position: relative;
    overflow: visible !important;
}

.mvo_plano {
    position: relative;
    overflow: visible !important;
    z-index: 1;
}

.mvo_plano:hover,
.mvo_plano:has(.plano_feature_hover:hover) {
    z-index: 999;
}

.plano_feature_hover {
    position: relative;
    z-index: 20;
}

.plano_feature_card {
    z-index: 9999 !important;
}

.billing_toggle {
    width: fit-content;
    margin: 45px auto 45px;
    padding: 8px;
    background: #f1f8fd;
    border: 1px solid #dce5ef;
    border-radius: 999px;
    display: flex;
    gap: 6px;
}

.billing_toggle button {
    position: relative;
    border: 0;
    background: transparent;
    color: #00588f;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer !important;
    transition: .2s ease;
}

.billing_toggle button.active {
    background: #0276ac;
    color: #fff;
    box-shadow: 0 10px 25px rgba(2,118,172,.18);
}

.billing_toggle button span {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #071827;
    color: #fff;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    white-space: nowrap;
}

.mvo_planos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.mvo_plano {
    position: relative;
    background: #fff;
    border: 1px solid #dce5ef;
    border-radius: 24px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    min-height: inherit;
    transition: .25s ease;
    overflow: visible;
}

.mvo_plano:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, .08);
    border-color: #bcd3e5;
}

.mvo_plano h3 {
    min-height: 78px;
    margin: 0;
    color: #071827;
    font-size: 28px;
    line-height: 1.18;
    text-align: center;
}

.plano_economia {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    min-height: 28px;
    justify-content: center;
}

.plano_economia span {
    background: #fff1b8;
    color: #5c4400;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 600;
}

.plano_economia del {
    color: #071827;
    font-size: 14px;
}

.plano_preco {
    display: flex;
    color: #071827;
    font-size: 44px;
    font-weight: 600;
    line-height: .9;
    margin-top: 8px;
    align-items: flex-end;
    justify-content: center;
}

.plano_preco span {
    font-size: 40px;
    margin-right: 2px;
}

.plano_preco strong {
    font-size: 44px;
    line-height: .9;
}

.plano_preco small {
    font-size: 15px;
    font-weight: 600;
    margin-left: 4px;
    margin-bottom: 5px;
}

.plano_obs {
    margin: 8px 0 22px;
    color: #334155;
    font-size: 14px;
    min-height: 38px;
    text-align: center;
}

.btn_plano {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    width: 100%;
    height: 58px;
    background: #071827;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 100;
    transition: .2s ease;
}

.btn_plano:hover {
    background: #0276ac;
    transform: translateY(-2px);
}

.plano_resumo {
    display: grid;
    gap: 12px;
    padding: 0 0 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 18px;
}

.plano_resumo div,
.mvo_plano ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #071827;
    font-size: 15px;
    line-height: 1.4;
}

.plano_resumo i,
.mvo_plano ul li i {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    color: #00588f;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.mvo_plano h4 {
    color: #071827;
    font-size: 16px;
    margin: 0 0 12px;
}

.mvo_plano ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

@media (max-width: 1250px) {
    .mvo_planos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .billing_toggle {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 18px;
    }

    .billing_toggle button {
        flex: 0 0 auto;
    }

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

    .mvo_plano {
        min-height: auto;
    }
}

.plano_incluso {
    
}

.plano_incluso_btn {
    width: 100%;
    border: 0;
    background: #f1f8fd;
    color: #00588f;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 100;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plano_incluso_btn i {
    transition: .25s ease;
}

.plano_incluso_content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .35s ease;
}

.plano_incluso.active .plano_incluso_content {
    max-height: 700px;
    opacity: 1;
    padding-top: 18px;
}

.plano_incluso.active .plano_incluso_btn i {
    transform: rotate(180deg);
}

.plano_incluso.active .plano_incluso_content {
    overflow: visible;
}

.plano_incluso,
.plano_incluso_content,
.plano_features_hover_list,
.plano_feature_hover {
    overflow: visible !important;
}

.mvo_plano {
    overflow: visible !important;
    z-index: 1;
}

.mvo_plano:hover,
.mvo_plano:has(.plano_feature_hover:hover) {
    z-index: 999;
}

.plano_feature_card {
    position: absolute;
    left: calc(100% + 20px);
    top: 50%;
    width: 330px;
    transform: translateY(-50%) translateX(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;

    background: #fff;
    border: 1px solid #dce5ef;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
    transition: .25s ease;
}

.plano_feature_hover {
    position: relative;
}

.plano_feature_hover:hover .plano_feature_card {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.enhance_logo_inline {
    width: 67px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

.painel_enhance_hover button span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.enhance_feature_card {
    width: 380px;
}

.enhance_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.enhance_card_top img {
    max-width: 115px;
    height: auto;
}

.enhance_card_top span {
    background: #d9ecfb;
    color: #00588f;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 100;
}

.enhance_card_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.enhance_card_features div {
    background: #f5faff;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    padding: 11px 12px;
    color: #071827;
    font-size: 13px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 8px;
}

.enhance_card_features i {
    color: #00588f;
}

.plano_info_ilimitado {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(2,118,172,.06),
        rgba(2,118,172,.02)
    );
    border: 1px solid rgba(2,118,172,.15);
}

.plano_info_icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

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

    border-radius: 12px;
    background: rgba(2,118,172,.12);
    color: rgb(2,118,172);
    font-size: 18px;
}

.plano_info_content strong {
    display: block;
    margin-bottom: 6px;
    color: #071827;
    font-size: 14px;
    font-weight: 700;
}

.plano_info_content p {
    margin: 0;
    color: #5f6b7a;
    font-size: 13px;
    line-height: 1.7;
}
.plano_obs_ilimitado {
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px dashed #dce5ef;

    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
}

.mvo_suporte_humanizado {
    padding: 100px 0;
    background: #fff;
}

.suporte_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.suporte_visual {
    position: relative;
    min-height: 520px;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.95), transparent 30%),
        linear-gradient(135deg, #d9ecfb, #f8fbff);
    border: 1px solid #dce5ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suporte_badge {
    position: absolute;
    left: 50px;
    bottom: 45px;
    background: #0276ac;
    color: #fff;
    padding: 16px 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(2,118,172,.25);
}

.suporte_badge i {
    font-size: 22px;
}

.suporte_label {
    display: block;
    color: #00588f;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
    margin-bottom: 18px;
}

.suporte_content h2 {
    color: #071827;
    font-size: 48px;
    line-height: 1.12;
    margin: 0 0 22px;
}

.suporte_content > p {
    color: #334155;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.suporte_checks {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    gap: 18px;
}

.suporte_checks li {
    color: #334155;
    font-size: 17px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.suporte_checks i {
    color: #16a34a;
    margin-top: 3px;
}

.suporte_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.suporte_cards a {
    min-height: 130px;
    padding: 22px;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    text-decoration: none;
    color: #071827;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .25s ease;
}

.suporte_cards a:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15,23,42,.08);
    border-color: #bcd3e5;
}

.suporte_cards i {
    width: 48px;
    height: 48px;
    background: #eaf8fc;
    color: #0276ac;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.suporte_cards strong {
    font-size: 15px;
    line-height: 1.3;
}

@media (max-width: 1000px) {
    .suporte_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .mvo_suporte_humanizado {
        padding: 70px 0;
    }

    .suporte_visual {
        min-height: 440px;
    }

    .chat_card {
        width: 86%;
    }

    .suporte_content h2 {
        font-size: 34px;
    }

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

.enhance_real_mockup {
    height: 560px;
    border-radius: 30px;
    overflow: hidden;
    background: #eef2f6;
    border: 1px solid #dce5ef;
    display: grid;
    grid-template-columns: 92px 1fr;
    box-shadow: 0 35px 90px rgba(15,23,42,.12);
}

.enhance_mock_sidebar {
    background: #171717;
    padding: 26px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.enhance_mock_sidebar strong {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    font-family: 'MVO';
    font-weight: 100;
}

.enhance_mock_sidebar span {
    width: 42px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.enhance_mock_sidebar span.active {
    background: #0276ac;
}

.enhance_mock_panel {
    margin: 0;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15,23,42,.08);
}

.enhance_mock_top {
    height: 72px;
    background: #f4f5f7;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enhance_mock_top div {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #334155;
    font-size: 14px;
}

.enhance_mock_top i {
    color: #00588f;
}

.enhance_mock_tabs {
    height: 58px;
    padding: 0 26px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid #edf2f7;
}

.enhance_mock_tabs span {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.enhance_mock_tabs span.active {
    color: #0276ac;
    position: relative;
}

.enhance_mock_tabs span.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 3px;
    background: #22c55e;
    border-radius: 999px;
}

.enhance_mock_site {
    margin: 24px 26px;
    padding: 18px;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    gap: 20px;
    align-items: center;
    box-shadow: 0 12px 35px rgba(15,23,42,.06);
}

.mock_preview {
    height: 96px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d9ecfb, #0276ac);
    padding: 16px;
}

.mock_preview div,
.mock_preview::before,
.mock_preview::after {
    content: "";
    display: block;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    margin-bottom: 10px;
}

.mock_preview div { width: 82%; }
.mock_preview::before { width: 55%; }
.mock_preview::after { width: 35%; }

.mock_site_info small {
    color: #16a34a;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.mock_site_info strong {
    color: #071827;
    font-size: 26px;
}

.enhance_mock_site button {
    border: 0;
    background: #0276ac;
    color: #fff;
    border-radius: 10px;
    padding: 14px 22px;
    font-weight: 600;
}

.enhance_mock_actions {
    margin: 0 26px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.enhance_mock_actions div {
    padding: 18px 8px;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    gap: 10px;
}

.enhance_mock_actions div:last-child {
    border-right: 0;
}

.enhance_mock_actions i {
    display: block;
    color: #00588f;
    font-size: 20px;
    margin-bottom: 0;
}

.enhance_mock_actions span {
    font-size: 13px;
    color: #071827;
    font-weight: 600;
}

.enhance_mock_bottom {
    margin: 24px 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.enhance_mock_bottom > div {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
}

.enhance_mock_bottom h4 {
    margin: 0 0 16px;
    font-size: 17px;
    color: #071827;
}

.enhance_mock_bottom strong {
    display: block;
    font-size: 18px;
    color: #071827;
    margin-bottom: 6px;
}

.enhance_mock_bottom span,
.enhance_mock_bottom p {
    color: #64748b;
    font-size: 13px;
    margin: 7px 0;
}

@media (max-width: 700px) {
    .enhance_real_mockup {
        grid-template-columns: 1fr;
        height: auto;
    }

    .enhance_mock_sidebar {
        display: none;
    }

    .enhance_mock_panel {
        margin: 20px;
    }

    .enhance_mock_tabs {
        overflow-x: auto;
    }

    .enhance_mock_site,
    .enhance_mock_bottom {
        grid-template-columns: 1fr;
    }

    .enhance_mock_actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mvo_brasil_advantage{
    padding:90px 0;
    background:#fff;
}

.advantage_header{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
}

.advantage_header span{
    display:inline-block;
    background:rgba(2,118,172,.08);
    color:#0276ac;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    font-size:13px;
}

.advantage_header h2{
    margin:20px 0;
    font-size:48px;
    color:#081827;
}

.advantage_header p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.advantage_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.advantage_card{
    background:#fff;
    border:1px solid #dbe7f1;
    border-radius:22px;
    padding:30px;
    transition:.3s;
}

.advantage_card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(2,118,172,.08);
}

.advantage_card i{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#eef8fd;
    color:#0276ac;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:20px;
}

.advantage_card h3{
    font-size:22px;
    margin-bottom:12px;
}

.advantage_card p{
    color:#64748b;
    line-height:1.7;
}

.mvo_domain_modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.mvo_domain_modal.active {
    display: flex;
}

.mvo_domain_overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 47, .45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mvo_domain_box {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: #fff;
    border: 1px solid #dce5ef;
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 35px 90px rgba(15, 23, 42, .25);
    animation: mvoModalIn .3s ease forwards;
}

@keyframes mvoModalIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(.96);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.mvo_domain_close {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f1f8fd;
    color: #00588f;
    cursor: pointer;
}

.mvo_domain_badge {
    display: inline-flex;
    background: #d9ecfb;
    color: #00588f;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.mvo_domain_box h3 {
    color: #071827;
    font-size: 34px;
    margin: 0 0 14px;
    font-weight: 600;
}

.mvo_domain_box p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.mvo_domain_options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

.mvo_domain_options button {
    border: 1px solid #dce5ef;
    background: #fff;
    color: #071827;
    border-radius: 16px;
    padding: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mvo_domain_options button i {
    color: #00588f;
}

.mvo_domain_options button.active {
    background: #0276ac;
    color: #fff;
    border-color: #0276ac;
}

.mvo_domain_options button.active i {
    color: #fff;
}

.mvo_domain_search_box {
    display: grid;
    grid-template-columns: 1fr 135px;
    border: 1px solid #dce5ef;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.mvo_domain_search_box input {
    border: 0;
    outline: 0;
    padding: 0 18px;
    height: 58px;
    font-size: 16px;
}

.mvo_domain_search_box button {
    border: 0;
    background: #071827;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.mvo_domain_search_box button:hover {
    background: #0276ac;
}

.mvo_domain_result {
    margin-top: 18px;
    min-height: 28px;
    font-size: 15px;
    font-weight: 700;
}

.mvo_domain_result.success {
    color: #16a34a;
}

.mvo_domain_result.error {
    color: #dc2626;
}

.mvo_domain_result.loading {
    color: #00588f;
}

.mvo_domain_cart {
    margin-top: 22px;
    height: 58px;
    border-radius: 14px;
    background: #0276ac;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mvo_domain_cart.disabled {
    opacity: .45;
    pointer-events: none;
}

@media (max-width: 650px) {
    .mvo_domain_box {
        padding: 30px 22px;
    }

    .mvo_domain_options,
    .mvo_domain_search_box {
        grid-template-columns: 1fr;
    }

    .mvo_domain_search_box button {
        height: 54px;
    }
}

.mvo_domain_price_box {
    display: none;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #dce5ef;
    border-radius: 16px;
    background: #f8fbff;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mvo_domain_price_box.active {
    display: flex;
}

.mvo_domain_price_box span {
    display: block;
    color: #071827;
    font-weight: 600;
    margin-bottom: 4px;
}

.mvo_domain_price_box strong {
    color: #0276ac;
    font-size: 22px;
}

.mvo_domain_price_box button {
    border: 0;
    background: #0276ac;
    color: #fff;
    height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.mvo_domain_price_box button.added {
    background: #16a34a;
}

@media (max-width: 650px) {
    .mvo_domain_price_box {
        flex-direction: column;
        align-items: stretch;
    }

    .mvo_domain_price_box button {
        width: 100%;
    }
}