* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.underline-accent {
  text-decoration: underline;
  text-decoration-color: #4EE1A0;
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}

.link-underline {
  text-decoration: underline;
  text-decoration-color: #4EE1A0;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.btn {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 2.29px;
  color: #FFFFFF;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-contact {
  text-decoration: underline;
  text-decoration-color: #4EE1A0;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.btn-contact:hover {
  color: #4EE1A0;
}

.header {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  height: 415px;
}
.header__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.header__logo {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.33px;
  color: #FFFFFF;
}
.header__social {
  display: flex;
  gap: 1.5rem;
}
.header__social-link svg {
  width: 19.2px;
  height: 19.2px;
  fill: #FFFFFF;
  transition: fill 0.3s ease;
}
.header__social-link:hover svg {
  fill: #4EE1A0;
}
.header__elipse {
  background-image: url("../assets/elipse.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  height: 120px;
  left: -160px;
  top: 110px;
  width: 100%;
}
.header__image {
  position: absolute;
  margin-left: -1rem;
  width: -webkit-fill-available;
  top: 0;
}
.header__image img {
  width: fit-content;
  height: 383px;
  margin: 0 auto;
  padding-top: 8rem;
  background: linear-gradient(0deg, rgba(36, 36, 36, 0.7) 50%, rgba(36, 36, 36, 0.2) 100%);
  z-index: 2;
  position: relative;
}
.header__circumference-container {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  overflow: hidden;
}
.header__circumference {
  width: 130px;
  height: 130px;
  border: 1px solid white;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

@media (min-width: 768px) {
  .header {
    padding: 2rem 2rem;
    height: auto;
  }
  .header__top {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .header__logo {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.44px;
  }
  .header__social {
    display: flex;
  }
  .header__social svg {
    width: 24px;
    height: 24px;
  }
  .header__elipse {
    left: -200px;
  }
  .header__image {
    position: absolute;
    width: fit-content;
    right: 0;
  }
  .header__image img {
    width: fit-content;
    height: auto;
    margin: 0;
    padding-top: 6rem;
    z-index: 0;
  }
  .header__circumference-container {
    top: 438px;
  }
}
@media (min-width: 1024px) {
  .header {
    padding: 2rem 6rem;
  }
  .header__social {
    margin-right: 1rem;
  }
  .header__elipse {
    left: -90px;
  }
  .header__image {
    margin-right: 6rem;
  }
  .header__circumference-container {
    top: 375px;
    width: fit-content;
    left: -65px;
  }
}
.hero {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  text-align: center;
}
.hero__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.14px;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
.hero__description {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #D9D9D9;
  margin-bottom: 2rem;
  max-width: 100%;
}
.hero__contact {
  display: inline-block;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero {
    text-align: left;
    padding: 0 2rem;
    position: relative;
  }
  .hero__title {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -2.05px;
    margin-bottom: 4rem;
    max-width: 65%;
  }
  .hero__description {
    grid-column: 1/2;
    font-size: 18px;
    line-height: 28px;
    max-width: 445px;
  }
  .hero__contact {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 0 6rem;
  }
  .hero__image img {
    width: 445px;
  }
  .hero__title {
    font-size: 88px;
    max-width: 70%;
    line-height: 88px;
    letter-spacing: -2.5px;
    margin-bottom: 4rem;
  }
  .hero__description {
    margin-bottom: 4rem;
  }
}
.skills {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}
.skills__divider-top {
  color: #FFFFFF;
  margin-bottom: calc(2rem + 10px);
}
.skills__divider-bottom {
  color: #FFFFFF;
  margin-top: 4rem;
}
.skills__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.skills__item {
  text-align: center;
}
.skills__name {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.skills__experience {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #D9D9D9;
}

@media (min-width: 768px) {
  .skills {
    padding: 2rem 2rem;
  }
  .skills__divider-bottom {
    display: none;
  }
  .skills__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .skills__item {
    text-align: left;
  }
  .skills__name {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -1.5px;
  }
  .skills__experience {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 1024px) {
  .skills {
    padding: 4rem 6rem;
  }
  .skills__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.projects {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.projects__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.projects__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.14px;
  color: #FFFFFF;
}
.projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.projects__card {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.projects__image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.projects__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.projects__card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.projects__tags {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.projects__tag {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #D9D9D9;
}
.projects__links {
  display: flex;
  gap: 2rem;
}
.projects__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 2.29px;
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: #4EE1A0;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  transition: color 0.3s ease;
}
.projects__link:hover {
  color: #4EE1A0;
}

@media (min-width: 768px) {
  .projects {
    padding: 4rem 2rem;
  }
  .projects__title {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -2.05px;
  }
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects__card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .projects {
    padding: 4rem 6rem;
  }
  .projects__title {
    font-size: 88px;
    line-height: 88px;
    letter-spacing: -2.5px;
  }
  .projects__card {
    position: relative;
  }
  .projects__links {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  .projects__card:hover .projects__links {
    opacity: 1;
  }
  .projects__card:hover .projects__image img {
    opacity: 0.5;
  }
  .projects__image {
    position: relative;
  }
  .projects__image img {
    transition: opacity 0.3s ease;
  }
}
.contact {
  background-color: #242424;
  padding: 4rem 1rem;
  position: relative;
}
.contact__elipse {
  background-image: url("../assets/elipse.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  height: 120px;
  bottom: 60px;
  left: -50%;
  width: 100%;
}
.contact__container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.contact__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.14px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 1rem;
}
.contact__description {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #D9D9D9;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 100%;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact__field {
  display: flex;
  flex-direction: column;
}
.contact__label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.22px;
  color: #FFFFFF;
  opacity: 0.5;
  margin-left: 1rem;
}
.contact__input, .contact__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact__input:focus, .contact__textarea:focus {
  border-bottom-color: #4EE1A0;
}
.contact__input.valid, .contact__textarea.valid {
  border-bottom-color: #4EE1A0;
}
.contact__input.invalid, .contact__textarea.invalid {
  border-bottom-color: #FF6F5B;
}
.contact__textarea {
  min-height: 80px;
  resize: vertical;
}
.contact__error {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.17px;
  color: #FF6F5B;
  text-align: right;
  margin-top: 0.5rem;
  display: none;
}
.contact__field.invalid .contact__error {
  display: block;
}
.contact__submit {
  text-align: right;
}
.contact__submit button {
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 2.29px;
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: #4EE1A0;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.contact__submit button:hover {
  color: #4EE1A0;
}

@media (min-width: 768px) {
  .contact {
    padding: 4rem 8rem;
  }
  .contact__elipse {
    left: -330px;
    bottom: 0;
  }
  .contact__title {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -2.05px;
  }
  .contact__description {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 1024px) {
  .contact {
    padding: 4rem 6rem;
  }
  .contact__elipse {
    left: -200px;
  }
  .contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
  }
  .contact__title {
    font-size: 88px;
    line-height: 88px;
    letter-spacing: -2.5px;
    text-align: left;
  }
  .contact__description {
    text-align: left;
  }
}
.footer {
  background-color: #242424;
  padding: 2rem 1rem;
}
.footer__divider {
  color: #FFFFFF;
  max-width: 1300px;
  margin: 0 auto 2rem auto;
}
.footer__container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__logo {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.33px;
  color: #FFFFFF;
}
.footer__social {
  display: flex;
  gap: 2rem;
}
.footer__social-link svg {
  width: 19.2px;
  height: 19.2px;
  fill: #FFFFFF;
  transition: fill 0.3s ease;
}
.footer__social-link:hover svg {
  fill: #4EE1A0;
}

@media (min-width: 768px) {
  .footer {
    padding: 2rem 2rem;
  }
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer__logo {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.44px;
  }
  .footer__social-link svg {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 4rem 6rem;
  }
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}/*# sourceMappingURL=main.css.map */