@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Exo 2', sans-serif;
}

::-webkit-scrollbar { 
  display: none; 
}

html {
  scroll-behavior: smooth;
}

main {
  background-color: #333;
}

.header {
  background-color: #15191C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: 90px;
  padding: 2rem;
}

.logo {
  color: #F1D95C;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-menu {
  cursor: pointer;
}

@keyframes square-in-bottom-left {
  from {
    clip-path: inset(0 0 100% 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.menu-container {
  position: absolute;
  background-color:#15191c91;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 1rem;
  width: 200px;
  height: 200px;
  right: 0;
  z-index: 3;
  display: none;
  animation: 1s cubic-bezier(.25, 1, .30, 1) square-in-bottom-left both;
}

[transition-style="in:square:bottom-left"] {
  animation: 1s cubic-bezier(.25, 1, .30, 1) square-in-bottom-left both;
}

.menu-container-active {
  display: block;
}

.menu-container ul li{
  list-style: none;
  padding: 0.8rem;
  position: relative;
  margin-left: 2rem;
}

.menu-container ul li a{
  text-decoration: none;
  margin-left: 1rem;
  color: #F1D95C;
  font-size: 1rem;
  font-weight: bold;
  padding: .5rem;
}

.menu-container ul li a:hover {
  border-bottom: 1px solid #F1D95C;
}

.menu-container ul li a::before {
  content: url(./assets/portal.png);
  position: absolute;
  left: -0.2rem;
}

.hero {
  background-image: url('./assets/hero.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width:auto;
  height: 600PX;
  display: flex;
  justify-content: space-between;
}

.hero-container-1 {
  background-color: rgba(217, 217, 217, 0.31);
  width: 570px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-container-1-title {
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #F1D95C;
  font-weight: 600;
}

.hero-container-1-subtitle {
  text-transform: uppercase;
  font-size: 4.2rem;
  line-height: .8;
  color: #F1D95C;
  font-weight: 600;
}

.combo-box {
  text-align: center;
  margin-top: 5rem;
}

.btn-hero,
.atm-essential-btn,
.combo-box-btn {
  border-radius: 10px;
  margin-top: 2rem;
  padding: 20px 84px;
  background-color: #F1D95C;
  text-decoration: none;
  font-size: 2rem;
  color:#1D3140;
  font-weight: 600;
  text-transform: uppercase;
}

.combo-box-btn {
  font-size: 1rem;
  padding: 20px 27px;
}

.atm-essential-btn {
  padding: 10px;
}

.atm-essential-btn a {
  font-size: rem;
  padding: 0 auto !important;
  margin: 0 3.2rem;
  color: #1D3140;
  text-decoration: none;
}

.btn-hero:hover {
  transition: all 1s;
  background-color: #ffe600;
}

.hero-container-2 {
  background: rgba(217, 217, 217, 0.36);
  border-radius: 8px;
  width: 41vw;
  position: absolute;
  height: auto;
  left: 42rem;
  top: 307px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.hero-container-2-content p {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  line-height: 50px;
  text-align: center;
  color: #FFFFFF;
}

.bg-section2 {
  background-image: url(./assets/bg-section2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1d3140;
  font-weight: 500;
  justify-content: center;
}

#sobre {
  background-color: #fff;
}

.section2-contant {
  width: 40vw;
  font-size: 1.3rem;
  margin: 2.5rem auto;
}

.section2-contant p {
  margin-bottom: 1.8rem;
}

.red-span {
  color: red;
  font-weight: 600;
}

.message-box {
  background-color: #d9d9d97d;
  width: 40vw;
  height: auto;
  padding: 2rem;
  font-style: italic;
  border-radius: 8px;
  border: 1px solid #F1D95C;
}

.signature {
  font-weight: 600;
  font-style: normal;
  float: right; 
  margin-top: -1.5rem;
}

@media(max-width: 890px) {
  .section2-contant {
    width: 60vw;
    font-size: 1.3rem;
    margin: 2.5rem auto;
  }

  .message-box {
    width: 60vw;
  }
}

@media(max-width: 680px) {
  .logo {
    font-size: 1.2rem;
  }

  .bg-section2 {
    background-size: cover;
  }

  .section2-contant {
    width: 75vw;
    font-size: 1rem;
    margin: 1.5rem auto;
  }

  .message-box {
    width: 75vw;
    text-align: center;
  }

  .signature {
    float: none;
    text-align: center;
  }
}

.title-section {
  background-color: #151515;
  height: 90px;
  color: #F1D95C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}


.atm-essential-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 5rem;
}

.atm-essential-video {
  width: 100%;
}

.video-atm-essential {
  width:380px;
  height: 225px;
  margin-top: -5.5rem;
}

.atm-essential-logo img {
  width: 245px;
  height: 13.8rem;
}

.essential-beneficios-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 3.5rem auto;
    justify-content: center;
  }

.beneficio-essential {
  height: 70px;
  width: 780px;
  background-color: #7a7a7ad4;
  margin: 2rem auto;
}

.beneficio-essential p {
  text-align: center;
  color: #F1D95C;
  font-size: 2rem;
  font-weight: 600;
  padding-top: 0.7rem;
  position: relative;
}

.beneficio-essential p::before {
  content: url('./assets/portal.png');
  position: absolute;
  left: 1rem;
}

 h2{
  text-align: center;
  color: #f1d95c;
  font-size: 1.5rem;
  margin-top: 3rem;
}

.curso-container {
  background-color: #D9D9D9;
  width: 300px;
  height: 300px;
}

.wrapper {
  width: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid #f1d95c;
  margin-top: 32px;
  border-radius: 5px;
}

.card {
  width: auto;
  height: 200px;
  margin: 10px;
}

.card:hover {
  transform: scale(1.075);
  transition: .3s ease-in-out;
}

.card img {
  width: 100%;
  height: 100%;
}

.hotmart-fb .hotmart__button-checkout {
  margin: 0 15rem;
}

@media(max-width: 800px) {
  .essential-beneficios-container {
    width: 580px;
    margin: 2rem auto;
  }

  .beneficio-essential p {
    font-size: 1rem;
    padding-top: 1.7rem;
  }

  .beneficio-essential {
    width: 570px;
    margin: 1rem auto;
}
}

@media(max-width: 790px) {
  .wrapper {
    width: 556px;
    display: grid;
    grid-template-columns: 1fr;
  }
}


@media(max-width: 585px) {
  .atm-essential-video iframe {
    width: auto;
  }

  .essential-beneficios-container {
    width: auto;
  }
  
  .beneficio-essential {
    width: 300px;
    margin: 1rem auto;
  }

  .beneficio-essential p {
    font-size: .8rem;
    padding-top: 1.7rem;
}

  .beneficio-essential p::before {
    display: none;
  }

  .wrapper {
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
  }


}

#contato {
  background-color: #151515;
  color: #FFFFFF;
  margin-top: 5rem;
}

form {
  border: 2px solid #998b40;
  padding: 2rem;
  border-radius: 5px;
}

.form {
  background-image: url('./assets/hero.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
  opacity: .6;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.form-title {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.form-title h1 {
  text-align: center;
  color: #FFF;
  font-size: 2.5rem;
}

.form-nome,
.form-email,
.form-mensagem,
.form-submit {
  margin-bottom: 2rem;
}

.form-nome input,
.form-email input,
.form-assunto input {
  width:100%;
  padding:6px;
  height: 3rem;
  border-radius: 5px;
  border: 1px solid #ccc;
   
}

.form-mensagem textarea {
  resize: none;
  width: 100%;
  height: 6rem;
  margin-top: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 6px;
}

label {
  color: #f1d95c;
  font-weight: 600;
  font-size: 1.5rem;
}

.form-nome input:focus,
.form-email input:focus,
.form-assunto input:focus,
.form-mensagem textarea:focus {
  outline-color: #514067;
}

.form-submit {
  width:100%;
  height: 2rem;
  text-align: center;
  display: inline-blockgit;
}

.btn-form {
  background-color: #f1d95c;
  cursor: pointer;
  padding: 10px;
  color: #1d3140;
  border-radius: 5px;
  font-size: 1.5rem;
  outline: none;
  max-width: 100%;
  border: none;
  font-weight: 600;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 180px;
  bottom: 0;
  background-color: #151515;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 4px 4px 1px rgb(0 0 0 rgba(15, 15, 15, 0.8));
          box-shadow: 0px 4px 4px 1px rgb(0 0 0 rgba(15, 15, 15, 0.8));
  }
  
  .footer-container {
  padding-left: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  
  }
  
  .footer-logo {
  color: #fff;
  }
  
  .social-mida {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 0.5rem;
  padding-bottom: .5rem;;
  gap: 40px;
  }
  
  .top-btn {
  all: unset;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 2rem;
  height: 1.8rem;
  background-color:#f1d95c ;
  text-align: center;
  font-size: 1.5rem;
  font-weight:bolder;
  padding-top: 0.2rem;
  border-radius: 4px;
  color: #15191C;
  }
  
  .email-footer {
  color: #fff;
  text-decoration: none;
  }
  
  .copy-right {
  color:#4c4c4c;
  margin-top: .6rem;
  }
  

@media only screen and (min-width: 320px) and (max-width: 425px) {
  .logo {
    font-size: 1.1rem;
  }

  .hero-container-1-title {
    font-size: 1.5rem;
  }

  .hero-container-1-subtitle {
    font-size: 3rem;
  }
}

@media only screen and (min-width: 320px) and (max-width:989px) {
  .hero-container-1 {
    width: 100%;
  }

  .hero-container-2 {
    display: none;
  }
}

@media only screen and (min-width: 990px) and (max-width:1160px){
  .hero-container-2 {
    width: 32vw;
    left: 62vw;
  }

  .hero-container-2-content p {
    font-size: 1.2rem;
    line-height: 25px;
  }
}

@media only screen and (min-width: 1800px) and (max-width:3000px){
  .hero-container-2 {
    left: 54rem;
  }
}