/* ===========================================
   MANSUL ORÇAMENTO WIDGET
   =========================================== */

.mansul-orcamento {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    box-sizing: border-box;
}

.mansul-orcamento__titulo {
    margin: 0;
    line-height: 1.3;
}

.mansul-orcamento__botao {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mansul-orcamento__botao:hover {
    text-decoration: none;
}

/* ===========================================
   RESPONSIVO - Tablet Retrato e Mobile
   (até 768px)
   =========================================== */

@media (max-width: 768px) {
    .mansul-orcamento {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 5px;
    }

    .mansul-orcamento__titulo {
        flex: none;
        margin-right: 0;
        margin-bottom: 0 !important;
    }

    .mansul-orcamento__botao {
        flex-shrink: 0;
    }
}

/* ===========================================
   RESPONSIVO - Mobile pequeno
   (até 480px)
   =========================================== */

@media (max-width: 480px) {
    .mansul-orcamento {
        flex-direction: column;
        text-align: center;
    }

    .mansul-orcamento__titulo {
        margin-right: 0;
        margin-bottom: 15px !important;
    }

    .mansul-orcamento__botao {
        text-align: center;
    }
}
