/* css/mobile.css */
@media screen and (max-width: 767px) {

    /* Increase hero height and push texts/buttons lower  */
    .section.start {
        min-height: 95vh !important;
        display: flex;
        align-items: flex-end;
    }

    .section.start .horizontal-header.start-section {
        margin-top: auto !important;
        margin-bottom: 2rem !important;
        position: relative;
        z-index: 20;
    }

    .section.start h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    /* Ensure the container allows bottom alignment if it's flex or grid */
    .section.start .w-layout-grid.grid._100-height {
        align-content: end !important;
        padding-bottom: 2rem !important;
    }

    /* Footer layout reordering: Redes sociais above Navegação */
    .w-layout-grid.grid.footer {
        display: flex !important;
        flex-direction: column !important;
    }

    .grid.footer>img.logo.footer {
        order: 1;
        margin-bottom: 24px !important;
    }

    .grid.footer>.footer-leftside {
        order: 2;
        margin-bottom: 24px !important;
    }

    .grid.footer>.footer-wrapper.other {
        order: 3;
        margin-bottom: 24px !important;
    }

    .grid.footer>.footer-wrapper.navigation {
        order: 4;
        margin-bottom: 24px !important;
    }

    .grid.footer>.footer-bottom {
        order: 5;
    }
}

@media screen and (max-width: 991px) {

    /* Fix mobile dots showing up as "..." in areas pages */
    .dot.mobile-off,
    .line-menu.mobile-off,
    .vertical-line.mobile-off {
        display: none !important;
    }

    /* Set area pages menu hamburger to footer color */
    .hamburger .menu-line:not(.white) {
        background-color: #1b2951 !important;
    }
}

/* Remove Webflow badge from all pages */
.w-webflow-badge,
.w-webflow-badge * {
    display: none !important;
    visibility: hidden !important;
}

/* Background branco para alternar seções */
.bg-white {
    background-color: #FFFFFF !important;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-float-btn svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}