.jersey-25-regular {
  font-family: "Jersey 25", serif;
  font-weight: 400;
  font-style: normal;
}



html {
  box-sizing: border-box !important;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
:root {
  --no-black: #232222;
  --no-purple: #BA62F5;
  --no-green: #4FFFA1;
  --white: #FFFFFF;
  --grey: #555555;
}

body {
  font-family: "Lexend Exa", serif;
  font-style: normal;
  font-weight: 200;
  color: var(--white);
  background-color: var(--no-black);
}

a {
  text-decoration: none;
}
.logo {
  font-family: "Jersey 25", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.40px;
  text-transform: uppercase;
  font-size: 28px;
}

h1 {
  font-family: "Jersey 25", serif;
  font-weight: 400;
  font-style: normal;
}

main {
  width: 100%;
  height: 100vh;
  text-align: center ;
}
.main-pad {
  padding: 0px 150px;
}
.navbar {
  width: 100%;
  height: 75px;
  display: flex;
  border-bottom: 2px solid var(--grey);
  justify-content: space-between;
  align-items: center;
}
.n-links {
  display: flex;
  gap: 12px;
}
.hero-container {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 30px;
}
.hero-wrap p:nth-child(1) {
  font-size: 26px;
  line-height: 48px;
}
.hero-title {
  font-family: "Jersey 25", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: var(--no-purple);
  letter-spacing: 1.3px;
  font-size: 140px;
}
.destaque {
  font-size: 34px;
  font-family: "Jersey 25", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  border: 5px dashed white;
  padding: 4px 12px; 
  pointer-events: none;
}
.email-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  position: relative;
  margin-top: 50px;
}
.hero-email {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  background-color: var(--grey);
  border-radius: 50px;
  padding: 14px 80px 14px 35px;
}
.email-icon {
  position: absolute;
  background-color: var(--no-purple);
  padding: 15px 15px;
  border-radius: 50px;
  right: 0;
}
@media(max-width:1200px) {
  .main-pad {
    padding: 0px 90px;
  }
  .hero-container {
    align-items: flex-start;
  }
  .hero-title {
    letter-spacing: 0.5px;
    font-size: 110px;
  }
  .destaque {
    font-size: 26px;
    color: var(--white);
    border: 5px dashed white;
    padding: 3px 12px; 
  }

}

@media(max-width:900px) {
  .main-pad {
    padding: 0px 70px;
  }
  .hero-title {
    letter-spacing: 0.3px;
    font-size: 70px;
  }

 
}
@media(max-width:700px) {
  .hero-title {
    letter-spacing: 0.3px;
    font-size: 60px;
    white-space: nowrap;
  }

 
}

@media(max-width:480px) {
  .main-pad {
    padding: 0px 20px;
  }
  .navbar {
    height: 65px;
  }
  .hero-title {
    letter-spacing: 0.2px;
    font-size: 46px;
  }
  .hero-email {
    font-size: 14px;
    padding: 10px 55px 10px 20px;
  }
  .email-icon {
    padding: 12px 12px;
  }
  .logo {
    letter-spacing: 0.8px;
    font-size: 20px;
  }
  .hero-wrap p:nth-child(1) {
    font-size: 20px;
    line-height: 38px;
  }
  .destaque {
    font-size: 26px;
    color: var(--white);
    border: 3px dashed white;
    padding: 3px 6px; 
  }
  .email-icon svg {
    width: 20px;
    height: auto;
    padding: 0;
  }
 
}

