/* =========================
   ESCONDIDO NO DESKTOP
========================= */
.mobile-maintenance {
    display: none;
}

.whatsapp-float {
    display: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    html, body {
        margin: 0;
        padding: 0;
        height: 100vh;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    /* ESCONDE SITE ORIGINAL */
    body > *:not(.mobile-maintenance):not(.whatsapp-float) {
        display: none !important;
    }

    /* FUNDO TOTAL */
   .mobile-maintenance {
    display: none;
}

@media (max-width: 768px) {

    body {
        margin: 0;
        padding: 0;
        height: 100vh;
        overflow: hidden;
    }

    html {
        height: 100vh;
    }

    body > *:not(.mobile-maintenance):not(.whatsapp-float) {
        display: none !important;
    }

    .mobile-maintenance {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;

        background: linear-gradient(135deg, #0a1a2f, #050d1a);
        color: #fff;

        align-items: center;
        justify-content: center;
        text-align: center;

        z-index: 9999;
        padding: 20px;
        box-sizing: border-box;
    }

    .maintenance-box {
        width: 100%;
        max-width: 400px;
    }
}

    /* CONTEÚDO CENTRAL */
    .maintenance-box {
        width: 100%;
        max-width: 400px;
        animation: fadeIn 0.6s ease;
    }

    .maintenance-box h1 {
        font-size: 28px;
        margin-bottom: 15px;
        color: white;
        font-weight: 300;
    }

    .maintenance-box p {
        font-size: 16px;
        margin-bottom: 10px;
        color: #ccc;
    }

    .maintenance-box span {
        display: block;
        margin-top: 25px;
        font-size: 13px;
        color: #ccc;
        letter-spacing: 1px;
    }

    /* =========================
       BOTÃO WHATSAPP INDUSTRIAL
    ========================= */
    .btn-whatsapp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        margin-top: 25px;
        padding: 14px 22px;

        background:  #003366;
        color: #fff;

        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;

        border-radius: 6px;
        border: 1px 


    }

    

    .btn-whatsapp svg {
        width: 18px;
        height: 18px;
        fill: white;
    }

    /* =========================
       BOTÃO FLUTUANTE LIMPO
    ========================= */
    .whatsapp-float {
        display: flex !important;
        position: fixed;
        bottom: 20px;
        right: 20px;

        width: 55px;
        height: 55px;

        background: #0077cc;
        color: #fff;

        align-items: center;
        justify-content: center;

        border-radius: 50%;
        text-decoration: none;

        font-size: 22px;

        z-index: 10000;

        box-shadow: none;
        animation: none;
    }

    .whatsapp-float:hover {
        background: #0099ff;
    }

    /* =========================
       ANIMAÇÃO SUAVE
    ========================= */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
  
  }
  