/*
 * Xeguei — estilos aditivos da home, promoção e componentes novos.
 * NÃO altera main.css (compartilhado com as páginas store).
 */
:root {
    --xg-brand: #ff6a14;
    --xg-brand-dark: #e55f10;
    --xg-ink: #1f2430;
    --xg-muted: #67717f;
    --xg-soft: #f7f8fa;
    --xg-line: #e7e9ee;
}

.xg-xeguei section[id] {
    scroll-margin-top: 122px;
}

/* ===== Selos do hero ===== */
.xg-badges {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.xg-badges li {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    opacity: .95;
}

.xg-badges li i {
    margin-right: 6px;
}

/* ===== Passos (Como funciona) ===== */
.xg-step {
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 18px rgba(31, 36, 48, .05);
    transition: transform .25s ease;
}

.xg-step:hover {
    transform: translateY(-4px);
}

.xg-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--xg-brand);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 18px;
}

.xg-step h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.xg-step p {
    font-size: 15px;
    color: var(--xg-muted);
    margin: 0;
}

/* ===== Tabela comparativa ===== */
.xg-compare-wrap {
    overflow-x: auto;
}

.xg-compare {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(31, 36, 48, .05);
}

.xg-compare th,
.xg-compare td {
    padding: 16px 18px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid var(--xg-line);
    color: var(--xg-ink);
}

.xg-compare tbody th {
    font-weight: 600;
    background: var(--xg-soft);
    white-space: nowrap;
}

.xg-compare thead th {
    background: var(--xg-soft);
    font-weight: 700;
}

.xg-compare thead th.xg-destaque {
    background: var(--xg-brand);
    color: #fff;
}

.xg-compare td.xg-destaque {
    color: var(--xg-brand-dark);
    font-weight: 600;
}

.xg-compare tbody tr:last-child th,
.xg-compare tbody tr:last-child td {
    border-bottom: 0;
}

/* ===== Regras de promoção ===== */
.xg-regras {
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 6px 18px rgba(31, 36, 48, .05);
}

.xg-regras ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.xg-regras li {
    position: relative;
    padding: 8px 0 8px 30px;
    font-size: 15px;
    color: var(--xg-muted);
}

.xg-regras li i {
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--xg-brand);
}

/* ===== FAQ (accordion Bootstrap 5) ===== */
.xg-faq .accordion-item {
    border: 1px solid var(--xg-line);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.xg-faq .accordion-button {
    font-weight: 600;
    color: var(--xg-ink);
    background: #fff;
    box-shadow: none;
}

.xg-faq .accordion-button:not(.collapsed) {
    color: var(--xg-brand-dark);
    background: #fff7f2;
}

.xg-faq .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255, 106, 20, .25);
}

.xg-faq .accordion-body {
    color: var(--xg-muted);
    font-size: 15px;
}

/* ===== Links do footer ===== */
.xg-footer-links {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.xg-footer-links li {
    margin-bottom: 6px;
}

.xg-footer-links a {
    color: #eee;
    font-size: 14px;
}

.xg-footer-links a:hover {
    color: var(--xg-brand);
}

/* ===== Banner de consentimento de cookies (LGPD) ===== */
.xg-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(31, 36, 48, .18);
    padding: 20px;
    max-width: 520px;
    margin: 0 auto;
}

.xg-consent p {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--xg-ink);
    line-height: 1.5;
}

.xg-consent a {
    color: var(--xg-brand-dark);
    text-decoration: underline;
}

.xg-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.xg-consent-accept {
    background: var(--xg-brand);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
}

.xg-consent-accept:hover {
    background: var(--xg-brand-dark);
}

.xg-consent-reject {
    background: #fff;
    color: var(--xg-ink);
    border: 1px solid var(--xg-line);
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
}

.xg-consent-reject:hover {
    background: var(--xg-soft);
}

/* ===== Acessibilidade: foco visível ===== */
a.btn:focus-visible,
.xg-consent-accept:focus-visible,
.xg-consent-reject:focus-visible {
    outline: 3px solid rgba(255, 106, 20, .5);
    outline-offset: 2px;
}

/* ===== Imagens fluidas (anti-overflow no mobile) ===== */
.hero-image img,
.info-image img {
    max-width: 100%;
    height: auto;
}

/* =====================================================================
   HEADER FLUTUANTE EM "PÍLULA" (estilo premium, identidade Xeguei)
   Ativado por .xg-xeguei no <body>. Aditivo: não afeta páginas
   sem essa classe.
   ===================================================================== */
.xg-xeguei .header.navbar-area,
.xg-xeguei .header.navbar-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px 0;
    background: transparent;
    box-shadow: none;
}

.xg-xeguei .header .nav-inner {
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 10px 34px rgba(31, 36, 48, .10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow .3s ease;
}

.xg-xeguei .header.navbar-area.sticky .nav-inner {
    box-shadow: 0 6px 20px rgba(31, 36, 48, .14);
}

.xg-xeguei .header .navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.xg-xeguei .header .navbar-brand {
    width: 96px;
    min-width: 96px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.xg-xeguei .header .navbar-brand img {
    width: 78px;
    height: 46px;
    object-fit: contain;
    object-position: left center;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

.xg-xeguei .header.sticky .navbar-brand img,
.xg-xeguei .header:not(.sticky) .navbar-brand img {
    content: url("../images/logo/logo.png");
    opacity: 1 !important;
    visibility: visible !important;
}

/* Links centrais */
.xg-xeguei .header .navbar-nav {
    margin: 0 auto !important;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
}

.xg-xeguei .header .navbar-nav .nav-item {
    margin-right: 0;
}

.xg-xeguei .header .navbar .navbar-nav .nav-item a {
    color: var(--xg-ink);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 40px;
    transition: color .2s ease, background .2s ease;
    white-space: nowrap;
}

.xg-xeguei .header .navbar .navbar-nav .nav-item a:hover,
.xg-xeguei .header .navbar .navbar-nav .nav-item a.active {
    color: var(--xg-brand);
    background: var(--xg-soft);
}

/* Botões à direita */
.xg-xeguei .header .xg-nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.xg-xeguei .header .xg-nav-cta .xg-link-entrar {
    color: var(--xg-ink);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .2s ease;
}

.xg-xeguei .header .xg-nav-cta .xg-link-entrar:hover {
    background: var(--xg-soft);
}

.xg-xeguei .header .xg-nav-cta .xg-btn-testar {
    background: var(--xg-brand);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}

.xg-xeguei .header .xg-nav-cta .xg-btn-testar:hover {
    background: var(--xg-brand-dark);
    transform: translateY(-1px);
}

.xg-xeguei .header .xg-nav-cta .xg-btn-testar i {
    margin-left: 6px;
    font-size: 14px;
}

.xg-xeguei .header .mobile-menu-btn .toggler-icon {
    background-color: var(--xg-ink);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .xg-xeguei .header .nav-inner {
        padding-left: 18px;
    }

    .xg-xeguei .header .navbar {
        gap: 8px;
    }

    .xg-xeguei .header .navbar-brand {
        width: 82px;
        min-width: 82px;
    }

    .xg-xeguei .header .navbar-brand img {
        width: 68px;
    }

    .xg-xeguei .header .navbar-nav {
        gap: 0;
    }

    .xg-xeguei .header .navbar .navbar-nav .nav-item a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .xg-xeguei .header .xg-nav-cta {
        gap: 6px;
    }

    .xg-xeguei .header .xg-nav-cta .xg-link-entrar {
        font-size: 14px;
        padding: 10px 10px;
    }

    .xg-xeguei .header .xg-nav-cta .xg-btn-testar {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* Mobile / tablet: menu colapsado vira painel branco */
@media (max-width: 991px) {
    .xg-xeguei .header.navbar-area,
    .xg-xeguei .header.navbar-area.sticky {
        padding: 28px 0 16px !important;
    }

    .xg-xeguei .header.navbar-area .container {
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .xg-xeguei .header.navbar-area .row,
    .xg-xeguei .header.navbar-area .col-lg-12 {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .xg-xeguei .header .nav-inner {
        border-radius: 28px;
        padding: 8px 10px 8px 20px;
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        margin: 0 auto;
    }

    .xg-xeguei .header .navbar-brand {
        width: 82px;
        min-width: 82px;
        height: 42px;
    }

    .xg-xeguei .header .navbar-brand img {
        width: 68px;
        height: 42px;
    }

    .xg-xeguei .header .navbar-collapse {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--xg-line);
        border-radius: 20px;
        padding: 16px 18px;
        box-shadow: 0 14px 40px rgba(31, 36, 48, .14);
    }

    .xg-xeguei .header .navbar-nav {
        margin: 0 !important;
        gap: 2px;
    }

    .xg-xeguei .header .navbar .navbar-nav .nav-item a {
        display: block;
        padding: 10px 14px;
    }

    /* CTA fica sempre visível ao lado do logo: mostra só o botão principal */
    .xg-xeguei .header .xg-nav-cta .xg-link-entrar {
        display: none;
    }

    .xg-xeguei .header .xg-nav-cta .xg-btn-testar {
        padding: 10px 18px;
    }
}

@media (max-width: 400px) {
    .xg-xeguei .header.navbar-area .container {
        padding-left: 0;
        padding-right: 0;
    }

    .xg-xeguei .header .nav-inner {
        padding: 7px 16px 7px 15px;
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    .xg-xeguei .header .navbar-collapse {
        left: 12px;
        right: 12px;
    }

    .xg-xeguei .header .xg-nav-cta .xg-btn-testar {
        padding: 9px 14px;
        font-size: 14px;
    }

    .xg-xeguei .header .navbar-brand img {
        width: 58px;
        height: 38px;
    }

    .xg-xeguei .header .navbar-brand {
        width: 70px;
        min-width: 70px;
        height: 38px;
    }
}

@media (max-width: 767px) {
    .xg-xeguei .header .mobile-menu-btn {
        margin-left: auto;
        order: 3;
    }

    .xg-xeguei .header .xg-nav-cta {
        display: none;
    }

    .xg-xeguei .header.navbar-area,
    .xg-xeguei .header.navbar-area.sticky {
        padding: 10px 0 6px !important;
    }

    .xg-xeguei .header .nav-inner {
        padding: 7px 18px 7px 16px;
    }
}

/* =====================================================================
   HERO CENTRALIZADO CLARO (estilo premium)
   Ativado por .xg-hero-light na <section class="hero-area">.
   ===================================================================== */
.xg-hero-light {
    background: linear-gradient(180deg, #fff 0%, var(--xg-soft) 100%) !important;
    padding: 190px 0 90px 0;
    text-align: center;
    overflow: hidden;
}

@media (max-width: 767px) {
    .xg-hero-light {
        padding: 92px 0 34px 0;
    }
}

.xg-hero-light .hero-content {
    text-align: center !important;
    max-width: 860px;
    margin: 0 auto;
}

.xg-hero-light .hero-content h1 {
    color: var(--xg-ink) !important;
    text-shadow: none !important;
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: -.5px;
}

@media (max-width: 991px) {
    .xg-hero-light .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .xg-hero-light .hero-content h1 {
        font-size: 29px;
        line-height: 1.08;
    }
}

.xg-hero-light .hero-content h1 span,
.xg-hero-light .hero-content h1 em {
    display: inline;
    color: var(--xg-brand);
    font-style: italic;
    font-weight: 800;
}

.xg-hero-light .hero-content p {
    color: var(--xg-muted) !important;
    font-size: 18px;
    line-height: 1.6;
    max-width: 640px;
    margin: 22px auto 0;
}

.xg-hero-light .hero-content .button {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

@media (max-width: 767px) {
    .xg-hero-light .hero-content p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.55;
    }

    .xg-hero-light .hero-content .button {
        margin-top: 18px;
        gap: 8px;
    }
}

.xg-hero-light .hero-content .button .btn {
    background: var(--xg-brand);
    color: #fff;
    margin: 0;
}

.xg-hero-light .hero-content .button .btn:hover {
    background: var(--xg-brand-dark);
    color: #fff;
}

.xg-hero-light .hero-content .button .btn.btn-alt {
    background: #fff !important;
    color: var(--xg-ink) !important;
    border: 1px solid var(--xg-line);
}

.xg-hero-light .hero-content .button .btn.btn-alt:hover {
    background: var(--xg-soft) !important;
    color: var(--xg-brand) !important;
}

/* Selos centralizados e escuros no hero claro */
.xg-hero-light .xg-badges {
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .xg-hero-light .xg-badges {
        margin-top: 16px;
        gap: 7px;
    }
}

.xg-hero-light .xg-badges li {
    color: var(--xg-muted);
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.xg-hero-light .xg-badges li i {
    color: var(--xg-brand);
}

/* Imagem/mockup abaixo do hero centralizado */
.xg-hero-light .xg-hero-media {
    margin-top: 54px;
}

.xg-hero-light .xg-hero-media img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

/* ===== Carrossel de logos de clientes ===== */
.xg-clientes-carousel {
    background: #fff;
    overflow: hidden;
    padding: 88px 0 82px;
}

.xg-clientes-heading {
    max-width: 660px;
}

.xg-clientes-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--xg-muted);
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 999px;
    padding: 9px 17px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.xg-clientes-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--xg-brand);
    flex: 0 0 auto;
}

.xg-clientes-heading h2 {
    color: var(--xg-ink);
    font-family: "Inter", sans-serif;
    font-size: 50px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
}

.xg-clientes-heading h2 em {
    color: var(--xg-brand);
    display: inline;
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-weight: 800;
}

.xg-clientes-text {
    color: var(--xg-muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 470px;
    margin: 0 0 8px;
}

.xg-logo-marquee {
    margin-top: 56px;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.xg-logo-track {
    display: flex;
    width: max-content;
    animation: xg-logo-marquee 34s linear infinite;
}

.xg-logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.xg-logo-card {
    width: 154px;
    height: 128px;
    border-radius: 12px;
    background: #f7f8fa;
    border: 1px solid var(--xg-line);
    box-shadow: 0 8px 24px rgba(31, 36, 48, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
}

.xg-logo-card-featured {
    width: 190px;
    height: 160px;
}

.xg-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

.xg-logo-card-featured img {
    padding: 0;
}

@keyframes xg-logo-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .xg-clientes-carousel {
        padding: 72px 0 72px;
    }

    .xg-clientes-heading h2 {
        font-size: 40px;
    }

    .xg-clientes-text {
        margin-top: 22px;
    }

    .xg-logo-marquee {
        margin-top: 42px;
    }
}

@media (max-width: 767px) {
    .xg-clientes-carousel {
        padding: 56px 0 58px;
    }

    .xg-clientes-kicker {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }

    .xg-clientes-heading h2 {
        font-size: 32px;
    }

    .xg-clientes-text {
        font-size: 16px;
    }

    .xg-logo-card {
        width: 118px;
        height: 98px;
    }

    .xg-logo-card-featured {
        width: 146px;
        height: 122px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xg-logo-track {
        animation: none;
    }
}

/* ===== Funcionalidades em painel/carrossel ===== */
.xg-features-showcase {
    background: #fff;
    padding: 96px 0;
}

.xg-features-intro {
    max-width: 920px;
    margin: 0 auto 42px;
    text-align: center;
}

.xg-features-intro h2 {
    color: var(--xg-ink);
    font-size: 46px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
}

.xg-features-intro p {
    color: var(--xg-muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 18px auto 0;
    max-width: 760px;
}

.xg-feature-panel {
    position: relative;
    min-height: 980px;
    background: linear-gradient(135deg, #ff6a14 0%, #f05a24 45%, #ff7a1a 100%);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(255, 106, 20, .22);
    overflow: hidden;
    padding: 56px 72px 34px;
}

.xg-feature-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(8, 24, 40, .16), transparent 34%),
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, .18), transparent 32%);
    pointer-events: none;
}

.xg-feature-slide {
    position: absolute;
    inset: 56px 72px 112px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(28px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
    z-index: 1;
}

.xg-feature-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.xg-feature-head {
    text-align: center;
    color: #fff;
}

.xg-feature-label {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    padding: 8px 18px;
    color: rgba(255, 255, 255, .92);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.xg-feature-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin-right: 10px;
}

.xg-feature-head h3 {
    color: #fff;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
    margin-top: 20px;
}

.xg-feature-head h3 em {
    display: inline;
    font-style: italic;
    font-weight: 800;
}

.xg-feature-head p {
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.6;
    max-width: 620px;
    margin: 24px auto 0;
}

.xg-feature-body {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .95fr);
    align-items: center;
    gap: 42px;
    margin-top: 54px;
}

.xg-feature-visual {
    position: relative;
    height: 500px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .96);
    border-radius: 22px;
    box-shadow: 0 24px 54px rgba(8, 24, 40, .24);
    overflow: hidden;
    transform: rotate(1.5deg);
}

.xg-feature-visual-phone {
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.xg-feature-screen {
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
    object-fit: cover;
    object-position: top left;
}

.xg-feature-screen-phone {
    width: auto;
    max-width: min(78%, 390px);
    height: 100%;
    object-fit: contain;
    object-position: center;
    border: 12px solid #fff;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 28px 64px rgba(8, 24, 40, .28);
}

.xg-screen-whatsapp {
    transform: rotate(-2deg);
}

.xg-screen-cardapio {
    transform: rotate(-2deg);
}

.xg-screen-pagamento {
    transform: rotate(-2deg);
}

.xg-screen-entrega {
    transform: rotate(-2deg);
}

.xg-screen-impressao {
    transform: rotate(-2deg);
}

.xg-feature-screen-contain {
    object-fit: contain;
    object-position: center;
    padding: 22px;
}

.xg-feature-benefits {
    display: grid;
    gap: 16px;
}

.xg-feature-benefits div {
    position: relative;
    min-height: 112px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(8, 24, 40, .10);
    padding: 22px 82px 22px 24px;
    color: #fff;
}

.xg-feature-benefits h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.xg-feature-benefits p {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.45;
}

.xg-feature-benefits i {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 22px;
}

.xg-benefit-qr {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
}

.xg-benefit-qr svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xg-feature-link {
    align-self: center;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    font-weight: 800;
    margin-top: auto;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.xg-feature-link:hover {
    color: #fff;
}

.xg-feature-arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    touch-action: manipulation;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
}

.xg-feature-arrow:hover {
    background: rgba(255, 255, 255, .24);
    transform: translateY(calc(-50% - 2px));
}

.xg-feature-prev {
    left: 32px;
}

.xg-feature-next {
    right: 32px;
}

.xg-feature-tabs {
    position: absolute;
    left: 72px;
    right: 72px;
    bottom: 28px;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    z-index: 5;
}

.xg-feature-tabs button {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    touch-action: manipulation;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.xg-feature-tabs button:hover,
.xg-feature-tabs button.is-active {
    background: #fff;
    color: var(--xg-brand);
    transform: translateY(-2px);
}

.xg-tab-icon {
    width: 25px;
    height: 25px;
    display: block;
    margin: 0 auto;
    color: currentColor;
}

.xg-tab-icon-catalogo,
.xg-tab-icon-qrcode,
.xg-tab-icon-entrega {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xg-tab-icon-pedidos {
    fill: currentColor;
}

.xg-tab-icon-entrega {
    width: 29px;
    height: 29px;
}

.xg-chat-phone {
    position: absolute;
    left: 50%;
    top: 38px;
    width: 245px;
    height: 330px;
    transform: translateX(-50%);
    border: 10px solid #10131b;
    border-radius: 34px;
    background: #f5efe7;
    padding: 52px 16px 18px;
    box-shadow: 0 20px 40px rgba(8, 24, 40, .22);
}

.xg-chat-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 42px;
    background: #14906d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 14px 14px 0;
}

.xg-chat-phone span,
.xg-chat-phone button {
    display: block;
    max-width: 175px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: #354052;
    font-size: 11px;
    line-height: 1.35;
    padding: 9px 11px;
    margin-bottom: 9px;
}

.xg-chat-phone .is-client {
    margin-left: auto;
    background: #dcf8c6;
}

.xg-chat-phone button {
    background: var(--xg-brand);
    color: #fff;
    font-weight: 700;
}

.xg-float-note {
    position: absolute;
    right: 28px;
    top: 80px;
    background: #fff;
    color: var(--xg-ink);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(8, 24, 40, .14);
    padding: 14px 18px;
    font-weight: 800;
}

.xg-admin-window,
.xg-kanban,
.xg-checkout,
.xg-dashboard {
    position: absolute;
    left: 44px;
    right: 44px;
    top: 46px;
    bottom: 46px;
    background: #f7f8fa;
    border: 1px solid #e7e9ee;
    border-radius: 18px;
    padding: 24px;
    color: var(--xg-ink);
}

.xg-admin-window span,
.xg-kanban span,
.xg-checkout span {
    display: block;
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 12px;
    font-weight: 700;
}

.xg-product-row {
    margin-top: 22px;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
}

.xg-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.xg-kanban b {
    align-self: start;
    color: var(--xg-brand);
}

.xg-checkout strong,
.xg-dashboard strong {
    display: block;
    color: var(--xg-brand);
    font-size: 30px;
    margin-top: 20px;
}

.xg-printer {
    position: absolute;
    left: 72px;
    top: 72px;
    width: 220px;
    height: 128px;
    border-radius: 24px;
    background: #10131b;
    box-shadow: 0 18px 34px rgba(8, 24, 40, .22);
}

.xg-receipt {
    position: absolute;
    left: 130px;
    top: 165px;
    width: 260px;
    min-height: 190px;
    background: #fff;
    border-radius: 0 0 14px 14px;
    padding: 24px;
    color: var(--xg-ink);
    box-shadow: 0 18px 34px rgba(8, 24, 40, .12);
}

.xg-receipt span,
.xg-receipt strong {
    display: block;
    margin-top: 12px;
}

.xg-dashboard div {
    display: inline-block;
    width: 27%;
    height: 92px;
    margin: 32px 3% 0 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 106, 20, .18), rgba(255, 106, 20, .72));
}

.xg-route {
    position: absolute;
    left: 70px;
    right: 70px;
    top: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--xg-ink);
    font-weight: 800;
}

.xg-route i {
    flex: 1;
    height: 4px;
    border-top: 4px dashed var(--xg-brand);
    margin: 0 18px;
}

.xg-route span {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 16px;
    padding: 16px 20px;
}

.xg-status-card {
    position: absolute;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    background: var(--xg-brand);
    color: #fff;
    border-radius: 16px;
    padding: 18px 26px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(255, 106, 20, .28);
}

/* ===== Provas de clientes ===== */
.xg-clientes-provas {
    background: #fff;
    overflow: hidden;
    padding: 96px 0;
}

.xg-clientes-provas-title {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.xg-clientes-provas-title h2 {
    color: var(--xg-ink);
    font-size: 44px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
}

.xg-clientes-provas-title p {
    color: var(--xg-muted);
    font-size: 18px;
    line-height: 1.7;
    margin-top: 16px;
}

.xg-clientes-print-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 14px 0 34px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.xg-clientes-print-track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: max-content;
    animation: xg-clientes-print-marquee 52s linear infinite;
}

.xg-cliente-print {
    width: 260px;
    flex: 0 0 260px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(8, 24, 40, .14);
    overflow: hidden;
    transform: translateZ(0);
}

.xg-cliente-print img {
    width: 100%;
    display: block;
}

@keyframes xg-clientes-print-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 11px));
    }
}

@media (hover: hover) and (pointer: fine) {
    .xg-logo-marquee:hover .xg-logo-track,
    .xg-clientes-print-carousel:hover .xg-clientes-print-track {
        animation-play-state: paused;
    }
}

@media (max-width: 1199px) {
    .xg-feature-panel {
        min-height: 1040px;
        padding-left: 54px;
        padding-right: 54px;
    }

    .xg-feature-slide {
        left: 54px;
        right: 54px;
    }
}

@media (max-width: 991px) {
    .xg-clientes-provas-title h2 {
        font-size: 36px;
    }

    .xg-cliente-print {
        width: 230px;
        flex-basis: 230px;
    }

    .xg-feature-panel {
        min-height: 1360px;
        padding: 46px 28px 34px;
    }

    .xg-feature-slide {
        inset: 46px 28px 112px;
    }

    .xg-feature-body {
        grid-template-columns: 1fr;
    }

    .xg-feature-head h3 {
        font-size: 40px;
    }

    .xg-feature-tabs {
        left: 28px;
        right: 28px;
    }

    .xg-feature-visual-phone {
        height: 520px;
    }

    .xg-feature-screen-phone {
        max-width: min(84%, 360px);
        border-width: 10px;
    }
}

@media (max-width: 767px) {
    .xg-clientes-provas {
        padding: 68px 0;
    }

    .xg-clientes-provas-title {
        margin-bottom: 30px;
    }

    .xg-clientes-provas-title h2 {
        font-size: 30px;
    }

    .xg-clientes-provas-title p {
        font-size: 16px;
    }

    .xg-clientes-print-carousel {
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    }

    .xg-clientes-print-track {
        gap: 16px;
        animation-duration: 44s;
    }

    .xg-cliente-print {
        width: 210px;
        flex-basis: 210px;
        border-radius: 18px;
    }

    .xg-features-showcase {
        padding: 64px 0;
    }

    .xg-features-intro h2 {
        font-size: 32px;
    }

    .xg-features-intro p {
        font-size: 16px;
    }

    .xg-feature-panel {
        min-height: 1240px;
        border-radius: 22px;
        padding: 34px 18px 28px;
    }

    .xg-feature-slide {
        inset: 34px 18px 100px;
    }

    .xg-feature-head h3 {
        font-size: 30px;
    }

    .xg-feature-head p {
        font-size: 15px;
    }

    .xg-feature-body {
        gap: 22px;
        margin-top: 32px;
    }

    .xg-feature-visual {
        height: 330px;
        transform: none;
    }

    .xg-feature-visual-phone {
        height: 400px;
    }

    .xg-feature-screen-phone {
        max-width: min(88%, 280px);
        border-width: 8px;
        border-radius: 26px;
    }

    .xg-feature-screen-contain {
        padding: 14px;
    }

    .xg-feature-benefits div {
        min-height: auto;
        padding: 18px 68px 18px 18px;
    }

    .xg-feature-arrow {
        top: 250px;
        width: 42px;
        height: 42px;
    }

    .xg-feature-prev {
        left: 18px;
    }

    .xg-feature-next {
        right: 18px;
    }

    .xg-feature-tabs {
        left: 18px;
        right: 18px;
        gap: 7px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 2px;
    }

    .xg-feature-tabs button {
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
    }

    .xg-admin-window,
    .xg-kanban,
    .xg-checkout,
    .xg-dashboard {
        left: 18px;
        right: 18px;
        top: 34px;
        bottom: 34px;
        padding: 18px;
    }

    .xg-chat-phone {
        width: 218px;
        height: 286px;
        top: 18px;
    }

    .xg-float-note {
        right: 12px;
        top: 50px;
        font-size: 12px;
    }
}

/* ===== Integrações ===== */
.xg-integracoes {
    background: #fff;
    overflow: visible;
    padding: 110px 0;
}

.xg-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--xg-muted);
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 999px;
    padding: 9px 17px;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.xg-section-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--xg-brand);
    flex: 0 0 auto;
}

.xg-integracoes-content h2 {
    color: var(--xg-ink);
    font-size: 48px;
    line-height: 1.17;
    font-weight: 800;
    letter-spacing: 0;
}

.xg-integracoes-content h2 em {
    color: var(--xg-brand);
    display: inline;
    font-style: italic;
    font-weight: 800;
}

.xg-integracoes-content p {
    color: var(--xg-muted);
    font-size: 18px;
    line-height: 1.75;
    margin-top: 28px;
    max-width: 560px;
}

.xg-integracoes-orbita {
    position: relative;
    width: min(620px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
}

.xg-orbita-ring,
.xg-orbita-line {
    position: absolute;
    inset: 50%;
    pointer-events: none;
}

.xg-orbita-ring {
    border: 1px dashed rgba(255, 106, 20, .28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: xg-orbita-pulse 4.5s ease-in-out infinite;
}

.xg-orbita-ring-1 {
    width: 42%;
    height: 42%;
}

.xg-orbita-ring-2 {
    width: 68%;
    height: 68%;
}

.xg-orbita-line {
    width: 64%;
    height: 1px;
    border-top: 1px dashed rgba(255, 106, 20, .32);
    transform-origin: 0 0;
}

.xg-line-1 {
    transform: rotate(0deg) translateX(-50%);
}

.xg-line-2 {
    transform: rotate(45deg) translateX(-50%);
}

.xg-line-3 {
    transform: rotate(90deg) translateX(-50%);
}

.xg-line-4 {
    transform: rotate(135deg) translateX(-50%);
}

.xg-orbita-centro {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 50%;
    box-shadow: 0 16px 44px rgba(31, 36, 48, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: xg-integracao-float 4.6s ease-in-out infinite;
}

.xg-orbita-centro img {
    width: 112px;
    height: auto;
}

.xg-integracao-card {
    position: absolute;
    width: 138px;
    min-height: 126px;
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 36, 48, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 4;
    padding: 16px 12px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    animation: xg-integracao-float 5.5s ease-in-out infinite;
    appearance: none;
}

.xg-integracao-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--xg-line);
    box-shadow: 0 8px 16px rgba(31, 36, 48, .08);
    color: var(--xg-brand);
    overflow: hidden;
}

.xg-integracao-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.xg-integracao-icon i {
    color: #25d366;
    font-size: 28px;
    line-height: 1;
}

.xg-integracao-card strong {
    color: var(--xg-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

.xg-integracao-card small {
    color: var(--xg-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

.xg-integracao-card:hover,
.xg-integracao-card:focus-visible,
.xg-integracao-card.is-active {
    border-color: rgba(255, 106, 20, .45);
    box-shadow: 0 16px 36px rgba(255, 106, 20, .16);
    outline: none;
    z-index: 9998;
}

.xg-integracao-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    width: 260px;
    transform: translate(-50%, 8px);
    background: #fff;
    border: 1px solid var(--xg-line);
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(31, 36, 48, .16);
    color: var(--xg-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0;
    text-align: left;
    padding: 14px 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 9999;
}

.xg-integracao-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-right: 1px solid var(--xg-line);
    border-bottom: 1px solid var(--xg-line);
    transform: translate(-50%, -6px) rotate(45deg);
}

.xg-integracao-tooltip b {
    display: block;
    color: var(--xg-ink);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
}

.xg-integracao-card.is-active .xg-integracao-tooltip,
.xg-integracao-card:focus-visible .xg-integracao-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.xg-pos-1 {
    left: 50%;
    top: 2%;
    transform: translateX(-50%);
}

.xg-pos-2 {
    right: 7%;
    top: 15%;
}

.xg-pos-3 {
    right: 2%;
    top: 47%;
}

.xg-pos-4 {
    right: 20%;
    bottom: 2%;
}

.xg-pos-5 {
    left: 20%;
    bottom: 2%;
    transform: none;
}

.xg-pos-6 {
    left: 2%;
    top: 47%;
}

.xg-pos-7 {
    left: 7%;
    top: 15%;
}

@keyframes xg-orbita-pulse {
    0%,
    100% {
        opacity: .55;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04);
    }
}

@keyframes xg-integracao-float {
    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -8px;
    }
}

@media (max-width: 991px) {
    .xg-integracoes {
        padding: 82px 0;
    }

    .xg-integracoes-content {
        text-align: center;
        margin-bottom: 44px;
    }

    .xg-integracoes-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .xg-integracoes-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .xg-integracoes {
        padding: 64px 0;
    }

    .xg-integracoes-content h2 {
        font-size: 32px;
    }

    .xg-integracoes-content p {
        font-size: 16px;
    }

    .xg-integracoes-orbita {
        aspect-ratio: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    .xg-orbita-ring,
    .xg-orbita-line,
    .xg-orbita-centro {
        display: none;
    }

    .xg-integracao-card,
    .xg-pos-1,
    .xg-pos-2,
    .xg-pos-3,
    .xg-pos-4,
    .xg-pos-5,
    .xg-pos-6,
    .xg-pos-7 {
        position: static;
        width: 100%;
        min-height: 118px;
        transform: none;
        animation: none;
    }

    .xg-integracao-tooltip {
        left: 8px;
        right: 8px;
        bottom: calc(100% + 8px);
        width: auto;
        transform: translateY(8px);
    }

    .xg-integracao-card.is-active .xg-integracao-tooltip,
    .xg-integracao-card:focus-visible .xg-integracao-tooltip {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .xg-orbita-ring,
    .xg-orbita-centro,
    .xg-integracao-card {
        animation: none;
    }
}

/* ===== CTA final e footer premium ===== */
.xg-xeguei .call-action {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 255, 255, .22), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .14), transparent 26%),
        linear-gradient(135deg, #ff5f14 0%, #ff7a1a 58%, #f45112 100%);
}

.xg-xeguei .call-action::before,
.xg-xeguei .call-action::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.xg-xeguei .call-action::before {
    width: 280px;
    height: 280px;
    left: -90px;
    bottom: -140px;
    background: rgba(255, 255, 255, .12);
}

.xg-xeguei .call-action::after {
    width: 220px;
    height: 220px;
    right: -70px;
    top: -110px;
    border: 1px solid rgba(255, 255, 255, .22);
}

.xg-xeguei .call-action .container {
    position: relative;
    z-index: 1;
}

.xg-xeguei .call-action .cta-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.xg-xeguei .call-action .cta-content h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
}

.xg-xeguei .call-action .cta-content p {
    max-width: 620px;
    margin: 0 auto;
    padding: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.65;
}

.xg-xeguei .call-action .cta-content .button {
    margin-top: 28px;
}

.xg-xeguei .call-action .cta-content .button .btn {
    background: #fff;
    color: var(--xg-brand);
    border-radius: 999px;
    padding: 15px 30px;
    box-shadow: 0 18px 36px rgba(31, 36, 48, .18);
}

.xg-xeguei .call-action .cta-content .button .btn:hover {
    color: #fff;
    background: var(--xg-ink);
    transform: translateY(-2px);
}

.xg-xeguei .xg-footer {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 106, 20, .12), transparent 30%),
        linear-gradient(180deg, #10141d 0%, #080d14 100%);
}

.xg-xeguei .xg-footer .footer-top {
    padding: 58px 0 24px;
}

.xg-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr .95fr .9fr;
    gap: 44px;
    align-items: start;
}

.xg-footer-brand,
.xg-footer-col {
    min-width: 0;
}

.xg-footer-logo {
    display: inline-flex;
    align-items: center;
    width: 88px;
    height: 54px;
    overflow: hidden;
}

.xg-footer-logo img {
    width: 88px;
    height: 54px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.xg-footer-brand p {
    max-width: 310px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.7;
}

.xg-footer-col h3 {
    margin: 4px 0 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.xg-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.xg-footer-links li {
    margin-bottom: 10px;
}

.xg-footer-links li:last-child {
    margin-bottom: 0;
}

.xg-footer-links a {
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.xg-footer-links a:hover {
    color: var(--xg-brand);
}

.xg-footer-social-title {
    margin-top: 28px !important;
}

.xg-footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.xg-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: background .2s ease, transform .2s ease, color .2s ease;
}

.xg-footer-social a:hover {
    color: #fff;
    background: var(--xg-brand);
    transform: translateY(-2px);
}

.xg-footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.xg-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 14px;
}

@media (max-width: 991px) {
    .xg-xeguei .call-action {
        padding: 62px 0;
    }

    .xg-xeguei .call-action .cta-content h2 {
        font-size: 34px;
    }

    .xg-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }
}

@media (max-width: 767px) {
    .xg-xeguei .call-action {
        padding: 52px 0;
    }

    .xg-xeguei .call-action .cta-content h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .xg-xeguei .call-action .cta-content p {
        font-size: 16px;
    }

    .xg-xeguei .call-action .cta-content .button {
        margin-top: 24px;
    }

    .xg-xeguei .call-action .cta-content .button .btn {
        width: auto;
        max-width: 100%;
        padding: 14px 24px;
    }

    .xg-xeguei .xg-footer .footer-top {
        padding: 44px 0 22px;
    }

    .xg-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .xg-footer-brand,
    .xg-footer-col,
    .xg-footer-bottom {
        text-align: left;
    }

    .xg-footer-brand p {
        max-width: none;
    }
}
