@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,400&display=swap');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
  background-color: transparent;
}

header.ativo {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

header.ativo a {
  color: #1CA666;
}

header.ativo .navigation .navigation-items a {
  color: #1CA666;
}

header.ativo .navigation .navigation-items a:before {
  content: '';
  background: #1CA666;
}

header .brand {
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

header .navigation {
  position: relative;

}

header .navigation .navigation-items a {
position: relative;
color: #fff;
font-size: 1.2em;
text-decoration: none;
margin-left: 30px;
transition: 0.3s ease;
}


header .navigation .navigation-items a:before {
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
  width: 100%;
  
}

section {
  padding: 100px 200px;
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #1CA666;
}

.home:before {
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(40, 210, 120, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content {
  z-index: 888;
  color: #fff;
  width: 70%;
  margin-top: 50px;
  display: none;
}

.home .content.active {
  display: block;
}

.home .content h1 {
  font-size: 4em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 75px;
  margin-bottom: 40px;
}

.home .content h1 span {
  font-size: 1.2em;
  font-weight: 600;
}

.home .content p {
  margin-bottom: 65px;
}

.home .content a {
  background: #fff ;
  padding: 15px 35px;
  color: #1CA666;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 2px;
}

.home .media-icons {
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons a {
  color: #fff;
  font-size: 1.6em;
}

.home .media-icons a:not(:last-child) {
  margin-bottom: 20px;
}

.home .media-icons a:hover {
  transform: scale(1.3);
}

.home > picture > img {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation {
  z-index: 888;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(80px);
  margin-bottom: 12px;
  top: 95%;
  right: 50%;
}

.slider-navigation .nav-btn {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
  background: #1CA666;
}

.slider-navigation .nav-btn:not(:last-child) {
  margin-right: 20px;
}


.slider-navigation .nav-btn:hover {
  transform: scale(1.2);
}

.image-slide {
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.image-slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}  

html {
  scroll-behavior: smooth;
}

/* RESPONSIVIDADE REDES SOCIAIS*/

@media (max-width: 980px) {
  header {
    padding: 12px 20px;
    width: 100%;
    background-color: transparent;
  }

  section {
    padding: 100px 20px;
  }

  .home .media-icons {
    right: 15px;
  }

  header .navigation {
    display: none;
  }

  header .navigation.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
     }

  header .navigation .navigation-items a {
    color: #222;
    font-size: 1.2em;
    margin: 20px;
    }

    header .navigation .navigation-items a:before {
      background: #222;
      height: 5px;
    }

    header .navigation.active .navigation-items {
      background: #fff;
      width: 400px;
      max-width: 600px;
      margin: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-radius: 5px;
      box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }

  .menu-btn {
    background: url(../icons/menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;

  }

  .menu-btn.active {
    z-index: 999;
    background: url(../icons/close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }

  .teste {
    background: url(../icons/menu2.png);
    background-size: 40px;
    background-position: center;
    width: 40px;
    height: 40px;
    opacity: 0%;
  }

  header.ativo .teste {
    opacity: 100%;
  }

.menu-btn.active .teste{
   opacity: 0;
  }

  .slider-navigation {
    z-index: 888;
    display: flex;
    position: absolute;
    top: 95%;
    margin: 0px auto 12px 10%;
    justify-content: center;
    align-items: center;
    transform: translate(80px); 
    right: 50%;
  }

  .home .content h1 span {
    font-size: 0.9em;
    font-weight: 600;
  }

  .home .content h1 {
    font-size: 2em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 40px;
    margin-bottom: 40px;
  }

}