#floating-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000; /* Garante que o botão fique acima de outros elementos */
  }

  #main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Cor e opacidade desejadas */
    border-radius: 50%; /* Formato circular */
  }
  
  #main-button {
    /* background-color: #e1d9ad; opacity: 0.5;  Remova esta linha */ 
    border: none;
    border-radius: 50%; 
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease; 
  }
  
  #main-button img {
    width: 45px; 
    max-width: none; 
    position: relative; 
    z-index: 1; 
  }
  
  #main-button:hover {
    transform: scale(1.1); /* Aumenta o tamanho do botão ao passar o mouse */
  }
  
  #menu-options {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* Esconde as opções inicialmente */
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  #menu-options li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
  }
  
  #menu-options li:last-child {
    border-bottom: none;
  }
  
  #menu-options a {
    text-decoration: none;
    color: #333;
    display: block;
  }














* {margin: 0; padding: 0; font-size: 100%; border: none; outline: none; font-weight: 300; box-sizing: border-box; font-family: 'Lato', sans-serif;}
body {background-color: #f5f5f5;}
a {text-decoration: none;}
ul {list-style: none;}
img {max-width: 100%;}
/* CABE�ALHO 


*/

    
.logo {width: 76px; height: 103px; float: left; background: url(../img/logo.png) center center/76px no-repeat; font-size: 0;}
.btn-menu {width: 50px; height: 50px; float: right; text-align: center; color: #fff; border-radius: 50px; cursor: pointer; background: linear-gradient(to right, #283A7C, #A8FF36); margin: 2% 2%;}
.menu {display: none; width: 100%; height: 100%; position: fixed; background-color: rgba(0,0,0,0.9); top: 0; left: 0;}
.btn-close {font-size: 3em; color: #fff; float: right; cursor: pointer; margin-right: 5%;}
.menu ul {width: 100%; float: left; text-align: center;}
.menu li {padding:1.5%}
.menu li a {font-size: 2em; color: #fff; padding: 1.5% 3%;}
.menu li a:hover {border: 1.5px solid #A8FF36;}
