
body {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    color: #F58634;
    text-align: center;
    margin-top: 30px;
}

h2 {
    color: #F58634;
    text-align: center;
    margin-top: 30px;
}

h4 {
    color: #F58634;
    text-align: center;
    margin-top: 30px;
    font-size: 28px;
    font-weight: bold;
}

#busca-container {
    text-align: center;
    margin: 20px 0 30px;
}

#busca-container input[type="text"] {
    padding: 10px;
    width: 50%;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#busca-container button {
    padding: 10px 20px;
    font-weight: bold;
    background: #F58634;
    color: white;
    border: none;
    border-radius: 6px;
    margin-left: 10px;
    cursor: pointer;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card {
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}

.card img {
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.card .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card h5 {
    font-size: 16px;
    margin: 5px 0;
    color: #222;
}

.card h6 {
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    color: #444;
    margin: 5px 0;
}

.card button {
    margin-top: auto;
    padding: 10px;
    background-color: white;
    color: #F58634;
    font-weight: bold;
    border: 2px solid #F58634;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.card button.remove-btn {
    background: #F58634;
    color: white;
}

#catalogo-container #orcamentoBox {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

#catalogo-container #orcamentoBox h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

#catalogo-container #orcamentoLista {
    margin-bottom: 25px;
    text-align: left;
}

#catalogo-container #orcamentoLista div {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

#catalogo-container #orcamentoBox input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

#catalogo-container #orcamentoBox button {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    background: white;
    color: #F58634;
    border: 2px solid #F58634;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

#catalogo-container #orcamentoBox button:hover {
    background: #F58634;
    color: white;
}



#verOrcamentoBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #F58634;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

#btnTopo {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: #F58634;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#btnTopo:hover {
    background-color: #d96b20;
}

#loading {
    font-size: 18px;
    color: #F58634;
}

