/* Estilos para o menu no mobile abaixo de 433px */
@media (max-width: 433px) {
    #botao-orcamento {
        bottom: 60px !important;
    }
}

/* Estilos para o menu no mobile até 781px */
@media (max-width: 781px) {
    #botao-orcamento {
        position: fixed;
        bottom: 30px; /* será sobrescrito por 60px em <= 433px */
        left: 50%;
        transform: translateX(-50%);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        z-index: 9998 !important;
        text-decoration: none;
        transition: background-color 0.3s, transform 0.2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }
}

/* Estilos para o menu acima de 782px */
@media (min-width: 782px) {
    #botao-orcamento {
        position: fixed;
        bottom: 15px;
        right: 1px;
        transform: translateX(-50%);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        z-index: 9998 !important;
        text-decoration: none;
        transition: background-color 0.3s, transform 0.2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }
}




#botao-orcamento {
  //background: linear-gradient(135deg, #0f88ff, #005eff);
  width: 170px;
  background: linear-gradient(135deg, #0d6efd, #00c3ff);
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.5), 0 0 30px rgba(0, 195, 255, 0.3);
  color: white;
  border: none;
  padding: 12px 24px;
  //border-radius: 8px;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  //box-shadow: 0 0 8px rgba(0, 136, 255, 0.4), 0 0 20px rgba(0, 136, 255, 0.1);
  text-transform: uppercase;
}

#botao-orcamento:hover {
  background: linear-gradient(135deg, #1cb0ff, #007bff);
  //box-shadow: 0 0 12px rgba(28, 176, 255, 0.6), 0 0 30px rgba(0, 123, 255, 0.2);
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.7), 0 0 40px rgba(0, 119, 255, 0.4);
  transform: translateX(-50%) scale(1.05);
}