@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Poppins",sans-serif;
    box-sizing: border-box;
  }

  body {
    background-color: #fff;
    background: transparent url(../img/ead-pattern.png) repeat;
        
  }

  html {
    scroll-behavior: smooth;
}
  

/* NAVBAR */

.navbar {
    position: absolute;
    background-color: #a6464677;
    width: 100%;
    padding: 10px 0;
    top: 0;
    z-index: 999;
    transition: .3s linear;
  }
  
  .inner-width{
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
  }
  
  .navbar .inner-width{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggler{
    background: none;
    width: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
    z-index: 999;
    display: none;
  }
  
  .menu-toggler span{
    display: block;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    position: relative;
    transition: .3s linear;
  }
  
  .navbar-menu a{
    position: relative;
    color: rgb(233, 233, 233);
    font-size: 15px;
    font-weight: 500;
    margin-left: 30px;
    transition: .2s linear;
  }

  .navbar-menu a:after {
    content: "";
    position: absolute;
    width: 0;
    background-color: #fff;
    height: 3px;
    left: 0;
    bottom: -5px;
    transition: 0.3s ease;
  }
  
  .navbar-menu a:hover:after{
    width: 100%;
  }

  .navbar ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  li {
    list-style: none;
  }
  
  .navbar .menu-btn i {
    color: #fff;
    cursor: pointer;
    display: none;
  }

  .logo img {
    width: 150px;
  }

  /* BG HEADER */

  header {
    position: relative;
  }

  .bg-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bg-header {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    top: 0%;
    left: 0;
  }

  /* HEADER CONTENT */


  .header-content {
    position: relative;
    height: 77vh;
  }

  .header-content .container {
    display: flex;  
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .header-content .container-text {
    position: relative;
    text-align: center;
    margin-bottom: -100px;
  }


  .text-header h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    text-shadow: 0 3px 3px rgb(0 0 0 / 10%);
  }

  .text-header p {
    color: #fff;
    font-size: 18px;
    padding: 15px 0;

  }

  .home-divider img {
    width: 100%;
    margin-bottom: -1px;
    vertical-align: middle;
    border-style: none;
  }

  .text-header #teste-ja {
    width: 170px;
    margin: auto;
    display: block;
    margin-top: 15px;
}

  /* BUTTON CSS */

/* CSS */
.button-57 {
  position: relative;
  overflow: hidden;
  border: none;
  color: #18181a;
  display: inline-block;
  font-size: 17px;
  line-height: 15px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-top: 10px;
  width: 300px;
  border-radius: 3px;
}

.button-57 span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-57 span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
}

.button-57:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a64646;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-57:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}



  @media only screen and (max-width: 780px) {

    /* NAVBAR */
    .navbar {
        position: relative;
        background-color: #a64646;
      }

      .navbar .menu-btn i {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
      }
    
      .navbar-menu ul {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: #a64646;
        height: 100vh;
        width: 100%;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
      }
    
      .navbar-menu ul.open {
        left: 0;
      }
    
      .navbar-menu ul li {
        width: 100%;
        margin: 35px 0;
      }
    
      .navbar-menu ul li a {
        font-size: 23px;
      }

      .text-header h1 {
        font-size: 40px;
      }

      .text-header p {
        font-size: 20px;
      }


  }