.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: 'Roboto', sans-serif;
    
}
html {
    font-size: 18px;
    cursor: default;
}
.menu-atual::after {
    margin-top: 1px;
    display: block;
    content: "";
    border-radius: 3px;
    border: 1px solid #A25641;
    width: 100%!important;
    height:1px!important;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
}
.menu-atual {
    color: #A25641;
}

video {
    width: 100vw;
    height: 600px;
    margin: auto;
    overflow: hidden;
    object-fit: cover;
    position: absolute;
    z-index: -100000;
  }

  .bg-video {
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 600px;
    position: absolute;
}

  strong {
      font-weight: 700;
  }

  .whats-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    animation: move 3s infinite;
    z-index: 222;
  }
  
  @keyframes move {
    25%{
       transform: translateX(-10px);  }
    50%{
      transform: translateX(0px);  
    }
    75%{
      transform: translateX(10px); 
    }
    100%{
      transform: translateX(0px); 
    }
  }