.elementor-5185 .elementor-element.elementor-element-21f4711{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:40px 40px;--row-gap:40px;--column-gap:40px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-5185 .elementor-element.elementor-element-ea8f0c3 img{width:26%;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-5185 .elementor-element.elementor-element-2c19875 .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:63px;font-weight:800;color:var( --e-global-color-accent );}.elementor-5185 .elementor-element.elementor-element-71b68fd{text-align:center;}.elementor-5185 .elementor-element.elementor-element-71b68fd .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:37px;font-weight:400;color:#EBEBEB;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-5185 .elementor-element.elementor-element-2868b05 .elementor-button{background-color:#FFFFFF00;border-style:solid;border-width:1px 1px 1px 1px;}.elementor-5185 .elementor-element.elementor-element-2868b05 .elementor-button:hover, .elementor-5185 .elementor-element.elementor-element-2868b05 .elementor-button:focus{background-color:var( --e-global-color-primary );color:var( --e-global-color-accent );border-color:var( --e-global-color-primary );}.elementor-5185 .elementor-element.elementor-element-2868b05 .elementor-button:hover svg, .elementor-5185 .elementor-element.elementor-element-2868b05 .elementor-button:focus svg{fill:var( --e-global-color-accent );}/* Start custom CSS for container, class: .elementor-element-21f4711 *//* ==============================
   MAXXI MONTAGENS
   PÁGINA DE MANUTENÇÃO
   ============================== */

.maxxi-manutencao {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #082B4C;
    padding: 50px 25px;
}

/* Elementos decorativos */

.maxxi-manutencao::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -280px;
    right: -150px;
}

.maxxi-manutencao::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -400px;
    left: -250px;
}

/* Conteúdo */

.maxxi-manutencao .elementor-container {
    position: relative;
    z-index: 2;
}

/* Logo */

.maxxi-logo img {
    width: 220px;
    max-width: 70%;
    height: auto;
    margin-bottom: 35px;
}

/* Título */

.maxxi-titulo {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/* Linha vermelha */

.maxxi-titulo::after {
    content: "";
    display: block;
    width: 65px;
    height: 5px;
    background: #E31E24;
    margin: 25px auto;
}

/* Texto */

.maxxi-texto {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.7;
}

/* Botão */

.maxxi-botao .elementor-button {
    margin-top: 30px;
    padding: 16px 30px;
    background: #E31E24;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.maxxi-botao .elementor-button:hover {
    background: #FFFFFF;
    color: #082B4C;
    transform: translateY(-2px);
}

/* Indicador */

.maxxi-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.maxxi-status::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #E31E24;
    border-radius: 50%;
    animation: maxxi-pulse 1.8s infinite;
}

@keyframes maxxi-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==============================
   CELULAR
   ============================== */

@media (max-width: 767px) {

    .maxxi-manutencao {
        min-height: 100svh;
        padding: 35px 20px;
    }

    .maxxi-logo img {
        width: 170px;
        margin-bottom: 30px;
    }

    .maxxi-titulo {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .maxxi-titulo::after {
        width: 50px;
        height: 4px;
        margin: 20px auto;
    }

    .maxxi-texto {
        font-size: 16px;
        line-height: 1.6;
    }

    .maxxi-botao .elementor-button {
        width: 100%;
        padding: 15px 20px;
    }

    .maxxi-status {
        font-size: 10px;
        letter-spacing: 1px;
    }
}/* End custom CSS */