/* MineCloud — Páginas de hospedagem */

.hosting-hero {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}

.hosting-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 75% 15%, rgba(83, 82, 237, 0.16), transparent 55%),
        radial-gradient(ellipse 45% 35% at 5% 85%, rgba(83, 82, 237, 0.07), transparent 50%);
    pointer-events: none;
}

.hosting-hero--minecraft {
    position: relative;
    min-height: clamp(640px, 90vh, 920px);
    margin-top: calc(var(--header-height, 76px) * -1);
    padding: calc(var(--header-height, 76px) + 3rem) 0 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hosting-hero--minecraft::before {
    display: none;
}

.hosting-hero--minecraft::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--color-bg, #080d16));
    z-index: 2;
    pointer-events: none;
}

.minecraft-hero__media {
    position: absolute;
    inset: -6px;
    z-index: 0;
}

.minecraft-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
    filter: blur(1px) brightness(0.78) saturate(1.08);
    transform: scale(1.02);
}

.minecraft-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 90% 75% at 50% 42%, rgba(8, 13, 22, 0.35) 0%, rgba(8, 13, 22, 0.72) 55%, rgba(8, 13, 22, 0.9) 100%),
        linear-gradient(180deg, rgba(8, 13, 22, 0.65) 0%, transparent 28%, transparent 62%, rgba(8, 13, 22, 0.88) 100%);
    pointer-events: none;
}

.minecraft-hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

.minecraft-hero__layout {
    width: 100%;
    max-width: 52rem;
    display: flex;
    justify-content: center;
}

.minecraft-hero__content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.minecraft-hero__tag {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(83, 82, 237, 0.25);
    border: 1px solid rgba(139, 138, 255, 0.4);
    color: #d4d3ff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 4px 24px rgba(83, 82, 237, 0.2);
}

.minecraft-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #ffffff !important;
    margin: 0 0 1.25rem !important;
    max-width: 18ch;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.minecraft-hero__title span {
    background: linear-gradient(135deg, #a5a4ff 0%, #7b7aff 50%, #5352ed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.minecraft-hero__lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: #c5cee0;
    margin: 0 0 2rem;
    max-width: 46ch;
}

.minecraft-hero__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 36rem;
}

.minecraft-hero__feature {
    flex: 1 1 140px;
    max-width: 180px;
    padding: 1rem 0.85rem;
    border-radius: 14px;
    background: rgba(8, 13, 22, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.minecraft-hero__feature:hover {
    border-color: rgba(139, 138, 255, 0.35);
    transform: translateY(-2px);
}

.minecraft-hero__feature i {
    display: block;
    font-size: 1.5rem;
    color: #9b9aff;
    margin-bottom: 0.5rem;
}

.minecraft-hero__feature-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a8499;
    margin-bottom: 0.2rem;
}

.minecraft-hero__feature strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f4f6fb;
}

.minecraft-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
}

.minecraft-hero__actions .btn-home {
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

.minecraft-hero__price-hint {
    margin: 0;
    font-size: 0.9375rem;
    color: #9aa8c0;
}

.minecraft-hero__price-hint strong {
    color: #eef1f7;
    font-weight: 600;
}

/* Node.js hero — mesmo layout do Minecraft */
.hosting-hero--nodejs {
    position: relative;
    min-height: clamp(640px, 90vh, 920px);
    margin-top: calc(var(--header-height, 76px) * -1);
    padding: calc(var(--header-height, 76px) + 3rem) 0 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hosting-hero--nodejs::before {
    display: none;
}

.hosting-hero--nodejs::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--color-bg, #080d16));
    z-index: 2;
    pointer-events: none;
}

.hosting-hero__overlay--nodejs {
    background:
        radial-gradient(ellipse 90% 75% at 50% 42%, rgba(8, 13, 22, 0.4) 0%, rgba(8, 13, 22, 0.75) 55%, rgba(8, 13, 22, 0.92) 100%),
        linear-gradient(180deg, rgba(8, 13, 22, 0.65) 0%, transparent 28%, transparent 62%, rgba(8, 13, 22, 0.88) 100%) !important;
}

.hosting-hero__tag--nodejs {
    background: rgba(74, 143, 116, 0.18) !important;
    border-color: rgba(106, 168, 140, 0.35) !important;
    color: #b8d4c8 !important;
    box-shadow: none !important;
}

.hosting-hero__title--nodejs span {
    background: linear-gradient(135deg, #9ec4b4 0%, #6fa892 55%, #5a8f78 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hosting-hero--nodejs .minecraft-hero__feature i {
    color: #7aab96;
}

.btn-home--nodejs {
    background: linear-gradient(135deg, #5a8f78 0%, #4a7d68 100%) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

.btn-home--nodejs:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
}

.hosting-page--nodejs .plan:hover {
    border-color: rgba(106, 168, 140, 0.35);
}

.hosting-page--nodejs .plan-card--popular {
    border-color: rgba(106, 168, 140, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hosting-page--nodejs .plan-card__btn--primary {
    background: linear-gradient(135deg, #5a8f78 0%, #4a7d68 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.hosting-plans__grid--nodejs {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1199px) {
    .hosting-plans__grid--nodejs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .hosting-plans__grid--nodejs {
        grid-template-columns: 1fr;
    }
}

.btn-home--discord {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(88, 101, 242, 0.55);
    color: #eef1f7 !important;
}

.btn-home--discord:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.75);
    color: #fff !important;
    text-decoration: none;
}

.hosting-page .hosting-section#planos {
    padding-top: 2.5rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

.hosting-page .dashboard-menu {
    background: rgba(8, 13, 22, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

.hosting-page .site-header.is-scrolled .dashboard-menu {
    background: rgba(8, 13, 22, 0.97);
}

.hosting-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.hosting-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(83, 82, 237, 0.12);
    border: 1px solid rgba(83, 82, 237, 0.28);
    color: #c8c7ff;
    font-size: 0.8125rem;
    font-weight: 500;
}

.hosting-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #f4f6fb !important;
    margin: 0 0 1rem !important;
}

.hosting-hero__title span {
    background: linear-gradient(135deg, #8b8aff 0%, #5352ed 55%, #7c9cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hosting-hero__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #9aa8c0;
    max-width: 50ch;
    margin: 0 0 1.75rem;
}

.hosting-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hosting-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.8125rem;
    color: #9aa8c0;
}

.hosting-hero__meta-item strong {
    color: #eef1f7;
    font-weight: 600;
}

.hosting-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hosting-hero__visual img {
    width: min(100%, 400px);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hosting-section {
    padding: 4rem 0;
}

.hosting-section--alt {
    background: linear-gradient(180deg, rgba(12, 19, 34, 0.35) 0%, rgba(12, 19, 34, 0.8) 100%);
}

.hosting-section__head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.hosting-section__eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7b7aff;
}

.hosting-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #f4f6fb !important;
    margin: 0 0 0.75rem !important;
}

.hosting-section__desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #8b98ad;
    margin: 0;
}

.hosting-plans__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.hosting-plans__grid--network {
    grid-template-columns: repeat(4, 1fr);
}

.hosting-page .plan {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(21, 31, 54, 0.88);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hosting-page .plan:hover {
    border-color: rgba(83, 82, 237, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hosting-page .plan hr {
    background: rgba(83, 82, 237, 0.35);
    height: 1px;
    border: 0;
    margin: 1rem 0;
}

.hosting-page .plan-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

.hosting-page .plan-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0.85rem;
}

.hosting-page .plan-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.hosting-page .plan-country {
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hosting-page .plan-description {
    flex: 1;
    margin: 0;
    list-style: none;
    padding: 0;
}

.hosting-page .plan-description li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #9aa8c0;
    margin: 0.45rem 0;
}

.hosting-page .plan-description li i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1.05rem;
    color: #8b8aff;
}

.hosting-page--nodejs .plan-description li i {
    color: #7aab96;
}

.hosting-page .plan-description li span {
    flex: 1;
}

.plan-card {
    position: relative;
}

.plan-card__badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #6362ff 0%, #5352ed 100%);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(83, 82, 237, 0.4);
}

.hosting-page--nodejs .plan-card__badge {
    background: linear-gradient(135deg, #5a8f78 0%, #4a7d68 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.plan-card--popular {
    padding-top: 1.85rem;
    border-color: rgba(83, 82, 237, 0.45);
}

.plan-card__type {
    margin: -0.25rem 0 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7b7aff;
}

.hosting-page--nodejs .plan-card__type {
    color: #8fb8a6;
}

.plan-card__actions {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
}

.plan-card__btn {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    border: none;
}

.plan-card__btn--primary {
    background: linear-gradient(135deg, #6362ff 0%, #5352ed 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(83, 82, 237, 0.3);
}

.plan-card__btn--primary:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.plan-card__btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #9aa8c0;
}

.plan-card__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #eef1f7;
}

.plan-card__details-body {
    margin-top: 0.75rem;
    padding: 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #8b98ad;
}

.plan-card__details-body p {
    margin: 0 0 0.5rem;
}

.plan-card__details-body p:last-child {
    margin-bottom: 0;
}

.hosting-page .plan-price {
    text-align: center;
}

.hosting-page .plan-price-original {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.5rem;
    font-size: 0.875rem;
    line-height: 1.2;
}

.hosting-page .plan-price-original__label {
    color: #6d7a8f;
    font-weight: 500;
}

.hosting-page .plan-price-original__value {
    position: relative;
    display: inline-block;
    padding: 0 0.15rem;
    color: #8b98ad;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 99, 112, 0.9);
    text-decoration-thickness: 2px;
    opacity: 0.85;
}

.hosting-page .plan-price__current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.15rem;
    line-height: 1;
}

.hosting-page .plan-price .pricing-currency {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.35rem;
}

.hosting-page .plan-price .pricing-cost {
    color: #ffffff !important;
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.12);
}

.hosting-page .plan-price .pricing-period {
    color: #c5cdd9;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.1rem;
}

.hosting-page--nodejs .plan-price .pricing-cost {
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.hosting-faq {
    padding: 4rem 0 5rem;
}

.hosting-faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.hosting-faq__item {
    margin-bottom: 0.75rem;
    border-radius: 14px;
    background: rgba(21, 31, 54, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.hosting-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: #eef1f7;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hosting-faq__trigger:hover {
    background: rgba(83, 82, 237, 0.08);
}

.hosting-faq__trigger i {
    color: #8b8aff;
    font-size: 1.25rem;
    transition: transform 0.25s ease;
}

.hosting-faq__trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.hosting-faq__body {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #9aa8c0;
}

.hosting-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.hosting-feature--reverse .hosting-feature__content {
    order: 2;
}

.hosting-feature--reverse .hosting-feature__media {
    order: 1;
}

.hosting-feature__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #f4f6fb !important;
    margin: 0 0 1rem !important;
    line-height: 1.2 !important;
}

.hosting-feature__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #9aa8c0;
    margin: 0 0 1.5rem;
}

.hosting-feature__media img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
}

.hosting-feature__media {
    display: flex;
    justify-content: center;
}

@media (max-width: 1199px) {
    .hosting-plans__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 991px) {
    .hosting-hero--minecraft {
        min-height: clamp(580px, 85vh, 800px);
        padding: calc(var(--header-height, 76px) + 2rem) 0 3rem;
    }

    .minecraft-hero__title {
        max-width: none;
    }

    .minecraft-hero__features {
        flex-direction: column;
        align-items: center;
        max-width: 260px;
    }

    .minecraft-hero__feature {
        max-width: none;
        width: 100%;
    }

    .minecraft-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .minecraft-hero__actions .btn-home {
        width: 100%;
    }

    .hosting-hero__grid,
    .hosting-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hosting-hero__lead,
    .hosting-hero__meta {
        justify-content: center;
    }

    .hosting-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hosting-feature--reverse .hosting-feature__content,
    .hosting-feature--reverse .hosting-feature__media {
        order: unset;
    }
}

@media (max-width: 575px) {
    .hosting-plans__grid,
    .hosting-plans__grid--network {
        grid-template-columns: 1fr;
    }

    .hosting-hero {
        padding-top: 3rem;
    }
}

/* Botões compartilhados com a home */
.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-home--primary {
    background: linear-gradient(135deg, #6362ff 0%, #5352ed 100%);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(83, 82, 237, 0.35);
}

.btn-home--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(83, 82, 237, 0.45);
    opacity: 1;
    text-decoration: none;
}

.btn-home--ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #eef1f7 !important;
}

.btn-home--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff !important;
}

/* Home page */
.hosting-hero--home {
    position: relative;
    min-height: clamp(640px, 90vh, 920px);
    margin-top: calc(var(--header-height, 76px) * -1);
    padding: calc(var(--header-height, 76px) + 3rem) 0 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hosting-hero--home::before {
    display: none;
}

.hosting-hero--home::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--color-bg, #080d16));
    z-index: 2;
    pointer-events: none;
}

.home-hero__media {
    position: absolute;
    inset: -6px;
    z-index: 0;
}

.home-hero__img--single {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    display: block;
    filter: blur(1px) brightness(0.78) saturate(1.08);
    transform: scale(1.02);
}

.home-hero__layout {
    max-width: 56rem;
}

.home-hero__title {
    max-width: none !important;
}

.home-hero__title .home-hero__title-mc {
    background: linear-gradient(135deg, #c4c3ff 0%, #a5a4ff 45%, #7b7aff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #a5a4ff !important;
}

.home-hero__title .home-hero__title-node {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #b8f0d8 !important;
    color: #b8f0d8 !important;
    text-shadow: 0 0 28px rgba(106, 200, 160, 0.45), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.home-hero__tag {
    background: linear-gradient(135deg, rgba(83, 82, 237, 0.28) 0%, rgba(74, 143, 116, 0.2) 100%) !important;
    border-color: rgba(139, 138, 255, 0.35) !important;
    color: #d8e0f0 !important;
}

.home-hero__overlay {
    background:
        radial-gradient(ellipse 90% 75% at 50% 42%, rgba(8, 13, 22, 0.3) 0%, rgba(8, 13, 22, 0.72) 55%, rgba(8, 13, 22, 0.92) 100%),
        linear-gradient(180deg, rgba(8, 13, 22, 0.7) 0%, transparent 28%, transparent 62%, rgba(8, 13, 22, 0.9) 100%) !important;
}

.home-hero__price-hint strong:last-of-type {
    color: #b8d4c8;
}

.hosting-page--home .hosting-section#servicos {
    padding-top: 2.5rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

.home-stats {
    position: relative;
    z-index: 3;
    margin-top: -2.5rem;
    padding-bottom: 1rem;
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.home-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    background: rgba(21, 31, 54, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-stat:hover {
    border-color: rgba(139, 138, 255, 0.3);
    transform: translateY(-2px);
}

.home-stat i {
    font-size: 1.5rem;
    color: #8b8aff;
    margin-bottom: 0.5rem;
}

.home-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #f4f6fb;
    margin-bottom: 0.2rem;
}

.home-stat span {
    font-size: 0.8125rem;
    color: #8b98ad;
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.home-service-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(21, 31, 54, 0.88);
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.home-service-card--minecraft:hover {
    border-color: rgba(139, 138, 255, 0.35);
}

.home-service-card--nodejs:hover {
    border-color: rgba(106, 168, 140, 0.35);
}

.home-service-card__visual {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8, 13, 22, 0.2) 0%, rgba(8, 13, 22, 0.6) 100%);
}

.home-service-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.home-service-card__type {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b8aff;
}

.home-service-card--nodejs .home-service-card__type {
    color: #7aab96;
}

.home-service-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #f4f6fb !important;
    margin: 0 0 0.65rem !important;
}

.home-service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #9aa8c0;
    margin: 0 0 1rem;
}

.home-service-card__features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.home-service-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #c5d0e3;
}

.home-service-card__features li i {
    color: #7b7aff;
    font-size: 1.1rem;
}

.home-service-card--nodejs .home-service-card__features li i {
    color: #7aab96;
}

.home-service-card__price {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    color: #9aa8c0;
}

.home-service-card__price strong {
    color: #eef1f7;
    font-weight: 600;
}

.home-service-card__price--nodejs strong {
    color: #b8d4c8;
}

.home-service-card__btn {
    margin-top: auto;
    width: 100%;
}

.home-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.home-feature-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(21, 31, 54, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-feature-card:hover {
    border-color: rgba(139, 138, 255, 0.25);
    transform: translateY(-2px);
}

.home-feature-card i {
    display: block;
    font-size: 1.75rem;
    color: #8b8aff;
    margin-bottom: 0.75rem;
}

.home-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #f4f6fb !important;
    margin: 0 0 0.5rem !important;
}

.home-feature-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #9aa8c0;
}

.home-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.home-testimonial {
    padding: 1.75rem;
    border-radius: 16px;
    background: rgba(21, 31, 54, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-testimonial__stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 1rem;
    color: #f5c842;
    font-size: 1.1rem;
}

.home-testimonial blockquote {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #c5d0e3;
    font-style: normal;
}

.home-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.home-testimonial__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #6362ff 0%, #5352ed 100%);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.home-testimonial__avatar--alt {
    background: linear-gradient(135deg, #5a8f78 0%, #4a7d68 100%);
}

.home-testimonial__name {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #eef1f7;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
}

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

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

@media (max-width: 767px) {
    .home-services__grid,
    .home-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .home-stats__grid,
    .home-features__grid {
        grid-template-columns: 1fr;
    }
}

.home-cta {
    padding: 4rem 0 5rem;
}

.home-cta__box {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(83, 82, 237, 0.2) 0%, rgba(21, 31, 54, 0.95) 60%);
    border: 1px solid rgba(83, 82, 237, 0.3);
}

.home-cta__box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #f4f6fb !important;
    margin: 0 0 0.75rem !important;
}

.home-cta__box p {
    color: #9aa8c0;
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

/* Order drawer */
body.order-drawer-open {
    overflow: hidden;
}

.order-drawer {
    position: fixed;
    inset: 0;
    z-index: 1080;
    pointer-events: none;
}

.order-drawer.is-open {
    pointer-events: auto;
}

.order-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 18, 0.72);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.order-drawer.is-open .order-drawer__overlay {
    opacity: 1;
}

.order-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 420px);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #0d1424;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.order-drawer.is-open .order-drawer__panel {
    transform: translateX(0);
}

.order-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-drawer__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #f4f6fb;
}

.order-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #c5d0e3;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.order-drawer__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.order-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem 1.5rem;
}

.order-drawer__plan-card {
    padding: 1.15rem 1.1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.order-drawer__plan-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0 0.15rem;
}

.order-drawer__plan-image img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.order-drawer__plan-head {
    text-align: center;
}

.order-drawer__plan-name {
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #f4f6fb;
}

.order-drawer__plan-type {
    margin: 0.25rem 0 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8b8aff;
}

.order-drawer__plan-price {
    margin: 0 0 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.order-drawer__plan-price span {
    font-size: 1rem;
    color: #9aa8c0;
}

.order-drawer__plan-price small {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9aa8c0;
}

.order-drawer__plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.order-drawer__plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #c5d0e3;
}

.order-drawer__plan-features li i {
    color: #7b7aff;
    font-size: 1.05rem;
    line-height: 1.35;
}

.order-drawer__plan-placeholder {
    margin: 0;
    color: #9aa8c0;
    text-align: center;
}

.order-drawer__totals {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 0.65rem;
}

.order-drawer__total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #9aa8c0;
    font-size: 0.9375rem;
}

.order-drawer__total-row--main {
    color: #eef1f7;
    font-size: 1.05rem;
}

.order-drawer__total-row--main strong {
    font-size: 1.25rem;
    color: #fff;
}

.order-drawer__total-row--discount {
    color: #7ddea8;
}

.order-drawer__total-row--discount small {
    color: #9aa8c0;
    font-weight: 500;
}

.order-drawer__label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #eef1f7;
}

.order-drawer__coupon {
    margin-top: 1.25rem;
}

.order-drawer__coupon-row {
    display: flex;
    gap: 0.5rem;
}

.order-drawer__input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #eef1f7;
}

.order-drawer__input:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.order-drawer__coupon-btn {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(99, 98, 255, 0.45);
    background: rgba(99, 98, 255, 0.16);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.order-drawer__coupon-btn:hover:not(:disabled) {
    background: rgba(99, 98, 255, 0.24);
}

.order-drawer__coupon-btn:disabled {
    opacity: 0.7;
    cursor: default;
}

.order-drawer--coupon-applied .order-drawer__coupon-btn {
    border-color: rgba(74, 222, 128, 0.45);
    background: rgba(74, 222, 128, 0.14);
}

.order-drawer__hint.is-success {
    color: #7ddea8;
}

.order-drawer__hint.is-error {
    color: #ff8f8f;
}

.order-drawer__hint {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    color: #7d8aa3;
}

.order-drawer__payment {
    margin-top: 1.25rem;
}

.order-drawer__payment-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.order-drawer__payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 4.5rem;
    padding: 0.65rem 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #c5d0e3;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.order-drawer__payment-option i {
    font-size: 1.35rem;
}

.order-drawer__payment-option.is-active {
    border-color: rgba(99, 98, 255, 0.8);
    background: rgba(99, 98, 255, 0.12);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(99, 98, 255, 0.25);
}

.order-drawer__wallet {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: #c5d0e3;
}

.order-drawer__wallet strong {
    color: #fff;
}

.order-drawer__footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.order-drawer__submit {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #6362ff 0%, #5352ed 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 24px rgba(83, 82, 237, 0.35);
}

.order-drawer__submit:hover:not(:disabled) {
    opacity: 0.95;
    transform: translateY(-1px);
}

.order-drawer__submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 575.98px) {
    .order-drawer__panel {
        width: 100%;
    }

    .order-drawer__payment-options {
        grid-template-columns: 1fr;
    }
}
