/*------------------------------------------------------------------
    Template Name:  QuantumComp
    Version: 1.0
    Author: design-geeks
    [Responsive Stylesheet]
-------------------------------------------------------------------*/

/* Dispositivos Médios e Maiores (Tablets em paisagem e Desktops) */
@media (min-width: 769px) {
    .menu_mobile_button, .mobile_menu {
        display: none !important;
    }
}


/* Dispositivos Pequenos (Tablets em retrato e celulares grandes) */
@media (max-width: 768px) {

    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .hosting_taital {
        font-size: 2.4rem;
    }

    /* --- Menu Mobile --- */
    .nav-futuristic {
        display: none; /* Esconde o menu de desktop */
    }

    .header_section .container {
        display: flex;
        justify-content: flex-end; /* Alinha o botão do menu à direita */
    }

    .menu_mobile_button {
        display: block;
        background: none;
        border: none;
        color: #00ffff;
        font-size: 30px;
        cursor: pointer;
        z-index: 1002;
    }

    .mobile_menu {
        position: fixed;
        top: 0;
        right: -100%; /* Começa fora da tela */
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: #04091e;
        border-left: 2px solid #00ffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        transition: right 0.4s ease-in-out;
    }
    .mobile_menu.active {
        right: 0; /* Traz o menu para a tela */
    }

    .mobile_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .mobile_menu ul li {
        margin: 20px 0;
    }

    .mobile_menu ul li a {
        color: #cfcfcf;
        font-size: 1.5rem;
        font-weight: 600;
        padding: 10px;
        display: block;
    }

    .mobile_menu ul li a.active,
    .mobile_menu ul li a:hover {
        color: #00ffff;
    }

    /* --- Ajustes de Conteúdo --- */
    .layout_padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hosting_section .row {
        flex-direction: column-reverse; /* Inverte a ordem para imagem aparecer primeiro */
    }

    .hosting_section .col-md-6 {
        text-align: center;
    }
    .hosting_img {
        margin-bottom: 40px;
    }

    .service_box {
        margin-bottom: 30px;
    }

    .ai-container {
        padding: 20px;
    }
}


/* Dispositivos Extra Pequenos (Celulares) */
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hosting_taital {
        font-size: 2rem;
    }
    .hosting_text {
        font-size: 1rem;
    }

    .click_bt a {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .ai-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    .ai-button {
        width: 100%;
        border-radius: 30px;
    }
}