



:root {
    --primary: #9c7c4c!important;
    --secondary: #445147!important;
    --light: #EFEFEF!important;
    --dark: #070707!important;
  }
  
    /*
  :root {
    --primary: #9c7c4c!important;
    --secondary: #445147!important;
    --light: #ffffff!important;
    --dark: #070707!important;
  }
  */
  
  
  
  .navbar-meu {
    background-color: #9c7c4c;
  }
  
  .navbar-meu a {
    color: white;
  }
  
  .navbar-meu-right a {
  
    color: white;
  }
  
  
  .navbar-meu-right small {
    color: white;
  }
  
  
  
  
  
  
  
  /*** Button ***/
  
  /*.btn-sm-square {
    background: white !important;
    color: #070707 !important;
  }*/
  
  .btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #9c7c4c !important;
  }
  
  .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: #9c7c4c !important;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
  }
  
  .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: #9c7c4c !important;
    border-radius: 100%;
    transition: all 200ms;
  }
  
  .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
  }
  
  .btn-primary {
    color: #fff !important;
    background-color: #9c7c4c !important;
    border-color: #9c7c4c !important
  }
  
  
  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: #9c7c4c !important;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: #9c7c4c !important;
    border: 15px solid #9c7c4c !important;
  }