@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

:root {
  --primary-orange: #fc6625;
  --primary-background: #0d0d0d;
  --secondary-background: #171718;
  --text-color: #d3d3d3;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--secondary-background);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 9vh;
}

header nav ul {
  display: flex;
}

header nav ul a {
  margin-right: 25px;
  font-size: 16px;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  transition: 0.2s ease-in;
  font-weight: bold;
  align-items: baseline;
}

header nav ul a:hover {
  transition: 0.2s ease-in;
  opacity: 0.7;
}

header nav ul li:last-child {
  margin-right: 0;
}

header .title-main {
  font-family: "Special Gothic Expanded One", sans-serif;
  color: var(--text-color);
  font-weight: 900;
  font-size: 30px;
  font-weight: 600;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  cursor: pointer;
  display: none;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: var(--text-color);
  margin: 8px;
  transition: 0.2s ease;
}

.line1.active {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.line2.active {
  opacity: 0;
}

.line3.active {
  transform: rotate(45deg) translate(-5px, -7px);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 999px) {
  .nav-links a {
    margin-right: 0;
    opacity: 0;
  }
  .nav-links {
    position: absolute;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 50vw;
    top: 9vh;
    right: 0;
    height: 91vh;
    background-color: var(--secondary-background);
    transform: translateX(100%);
    transition: 0.2s ease-in;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .mobile-menu {
    display: block;
  }
}
.intro-wrapper {
  position: relative;
  width: 100vw;
  height: 91vh;
  margin-top: 9vh;
  overflow: hidden;
}

.intro-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../assets/images/background.png) no-repeat center center;
  background-size: cover;
  filter: blur(8px);
  z-index: 0;
}

.intro-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.03) 20%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.7) 90%, #0e0e0e 100%);
  z-index: 1;
}

.intro {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
}

.intro h3 {
  font-weight: 200;
  font-size: 30px;
}

.intro .hand {
  display: inline-block;
  margin-left: 5px;
  animation: wave-animation 3.5s ease-in-out infinite;
  transform-origin: 70% 70%;
}

.intro .front-end-dev {
  margin-bottom: 20px;
}

.intro h1 {
  font-weight: 500;
  font-size: 70px;
  font-family: "Poppins", sans-serif;
}

/* --- SOCIAL --- */
.intro .social {
  display: flex;
  align-items: center;
  height: 30px;
  position: relative;
}

.intro .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
}

.intro .social .linkedin-link {
  background-image: url(../assets/images/icons/linkedin-icon.png);
  background-size: cover;
  width: 28px;
  height: 28px;
  margin-right: 30px;
  transition: 0.2s ease-in;
}

.intro .social .github-link {
  background-image: url(../assets/images/icons/github-icon.png);
  background-size: cover;
  width: 32px;
  height: 32px;
  margin-right: 28px;
  transition: 0.2s ease-in;
}

.intro .social .email-link {
  background-image: url(../assets/images/icons/email-icon.png);
  background-size: cover;
  width: 36px;
  height: 36px;
  transition: 0.2s ease-in;
}

/* --- SOCIAL HOVER --- */
.intro .social .linkedin-link:hover {
  background-image: url(../assets/images/hover-icons/linkedin-hover.png);
  transition: 0.2s ease-in;
}

.intro .social .github-link:hover {
  background-image: url(../assets/images/hover-icons/github-hover.png);
  transition: 0.2s ease-in;
}

.intro .social .email-link:hover {
  background-image: url(../assets/images/hover-icons/email-hover.png);
  transition: 0.2s ease-in;
}

/* --- BEFORE/AFTER --- */
.intro .social::before {
  content: "";
  border-bottom: 1px solid var(--primary-orange);
  width: 70px;
  margin-right: 30px;
}

.intro .social::after {
  content: "";
  border-bottom: 1px solid var(--primary-orange);
  width: 70px;
  margin-left: 30px;
}

/* --- ARROW --- */
.down-arrow {
  background-image: url(../assets/images/down-arrow.png);
  background-size: cover;
  position: absolute;
  bottom: 20px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  animation: bounce 2s infinite;
  opacity: 0.7;
  transition: opacity 0.3s;
  z-index: 1;
}

/* --- ANIMATION --- */
@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(25deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(25deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(20deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
    background-image: url(../assets/images/arrow-animation.png);
  }
}
@media (max-height: 800px) {
  .down-arrow {
    display: none;
  }
}
@media (max-width: 600px) {
  .intro h1 {
    font-size: 55px;
  }
  .intro h3 {
    font-size: 27px;
  }
}
@media (max-width: 480px) {
  .intro h3 {
    font-size: 25px;
  }
}
@media (max-width: 414px) {
  .intro h3 {
    font-size: 23px;
  }
  .intro .social::before {
    width: 50px;
  }
  .intro .social::after {
    width: 50px;
  }
}
@media (max-width: 375px) {
  .intro h3 {
    font-size: 20px;
  }
  .intro h1 {
    font-size: 50px;
  }
  .intro .greetings {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .intro .hand {
    width: fit-content;
    font-size: 25px;
  }
  .intro .front-end-dev {
    margin-bottom: 30px;
  }
  .intro .social::before {
    width: 40px;
    margin-right: 20px;
  }
  .intro .social::after {
    width: 40px;
    margin-left: 20px;
  }
}
.about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 200px;
  margin-bottom: 200px;
}

.about .about-info h1 {
  margin-bottom: 30px;
}

.about .about-info .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about .about-info p {
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 17px;
}

.about .about-info p:last-child {
  margin-bottom: 0;
}

.about .main-img {
  border-radius: 100%;
  width: 90%;
}

@media (max-width: 1300px) {
  .about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-info h1 {
    text-align: center;
  }
}
.abilities {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 200px;
}

.abilities h1 {
  margin-bottom: 30px;
}

.abilities .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.abilities .container .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background-color: var(--secondary-background);
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.abilities .container .item img {
  width: 100px;
  height: 100px;
}

.abilities .container .item p {
  font-size: 20px;
  justify-self: center;
  color: var(--text-color);
}

/* --- HOVER --- */
.abilities .container .item:hover {
  scale: 1.1;
  transition: 0.3s ease-in-out;
  background-color: var(--primary-orange);
}

/* --- EXTRA INFO --- */
.abilities .extra-ability h2 {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 50px;
  font-weight: 200;
  font-size: 28px;
}

.abilities .extra-ability p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 17px;
  text-align: center;
}

.abilities .extra-ability p span {
  font-size: 20px;
  font-weight: 600;
}

.abilities .job-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.abilities .wrapper {
  overflow: hidden;
  position: relative;
  height: 100px;
}

.abilities .job-cards-container {
  display: flex;
  top: 0;
  left: 0;
  position: absolute;
  align-items: center;
  will-change: transform;
  gap: 20px;
  transition: transform 0.2s ease-out;
}

.abilities .job-cards-container .job-card {
  flex: 0 0 auto;
  height: 80px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  background-color: var(--secondary-background);
  padding: 15px 10px;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .abilities h1 {
    text-align: center;
  }
}
@media (max-width: 366px) {
  .abilities .container .item img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 375px) {
  .abilities h1 {
    font-size: 40px;
  }
}
.projects h1 {
  text-align: center;
}

.projects .subtitle {
  text-align: center;
  margin-bottom: 30px;
}

.projects-list .card {
  background-color: var(--secondary-background);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* --- PROJECT TECH USED */
.project-info .tech-used img {
  width: 35px;
  height: 35px;
}

/* --- PROJECT INFO --- */
.project-info h2 {
  font-weight: lighter;
  margin-bottom: 10px;
}

.project-info p {
  margin-bottom: 30px;
  text-align: justify;
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-info .links {
  display: flex;
  gap: 30px;
}

.project-info .links a {
  background-color: var(--primary-orange);
  color: black;
  font-family: "Poppins", sans-serif;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease-in;
}

.project-info .links a:hover {
  background-color: var(--primary-background);
  color: #fff;
  transition: 0.2s ease-in;
}

.project-info p .link {
  background-color: none;
  color: var(--primary-orange);
}

/* --- IMG PREVIEW --- */
.projects-list .card .container-img {
  width: 520px;
  height: 315px;
}

.projects-list .card .container-img img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
  opacity: 1;
}

/* --- PROJECTS END --- */
.end {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 200px;
}

.end h2 {
  font-weight: lighter;
  margin-bottom: 10px;
}

.end p {
  margin-bottom: 25px;
}

.end a {
  background-color: var(--secondary-background);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease-in;
}

.end a:hover {
  background-color: var(--primary-orange);
  color: black;
  transition: 0.2s ease-in;
}

@media (max-width: 1250px) {
  .projects-list .card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .project-info {
    align-items: center;
    text-align: center;
  }
  .project-info p {
    text-align: center;
  }
  .project-info .tech-used {
    margin-top: 20px;
  }
  .projects .end {
    margin: 100px 0;
  }
}
@media (max-width: 600px) {
  section.projects {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .projects-list .card {
    border-radius: 0;
  }
  .projects .subtitle,
  .projects .end,
  .projects h1 {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .projects-list .card .container-img {
    width: 420px;
    height: 254px;
  }
  .projects-list .card .container-img img {
    border-radius: 0;
  }
  .project-info .links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
@media (max-width: 440px) {
  .projects-list .card .container-img {
    width: 100vw;
    height: 100%;
  }
}
@media (max-width: 375px) {
  .projects .end h2 {
    font-size: 20px;
  }
}
section.contact {
  background-color: var(--secondary-background);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0;
}

.contact .contact-title {
  color: #fff;
  font-size: 35px;
  font-weight: lighter;
  text-align: center;
  font-family: "Special Gothic Expanded One", sans-serif;
}

.contact .contact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-container .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  margin-right: 0;
  width: 80%;
}

.contact-container .info h2 {
  font-weight: lighter;
  color: var(--primary-orange);
}

/* --- LOCAL --- */
.contact-container .local {
  display: flex;
  align-items: center;
  background-color: var(--primary-background);
  width: max-content;
  padding: 7px 12px 7px 5px;
  border-radius: 6px;
  margin-top: 10px;
  transition: 0.2s ease-in;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-container .local:hover p {
  color: var(--primary-orange);
  cursor: pointer;
  transition: 0.2s ease-in;
}

.contact-container .local img {
  width: 35px;
  height: 35px;
  margin-right: 5px;
}

/* --- SOCIAL --- */
.contact-container .social {
  display: flex;
}

.contact-container .social div p {
  align-self: center;
}

.contact-container .social div {
  display: flex;
  align-items: center;
  margin-top: 10px;
  background-color: var(--primary-background);
  width: max-content;
  padding: 7px 12px 7px 10px;
  border-radius: 6px;
  margin-right: 10px;
  transition: color 0.2s ease-in;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-container .social div .contact-social {
  width: 35px;
  height: 35px;
  margin: 0 8px 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-container .social div .contact-gh {
  background-image: url(../assets/images/icons/github-icon.png);
  transition: background 0.2s ease-in;
}

.contact-container .social div .contact-lin {
  background-image: url(../assets/images/icons/linkedin-icon.png);
  transition: background 0.2s ease-in;
}

/* --- SOCIAL CONTACT HOVER --- */
.contact-container .social div:hover p {
  color: var(--primary-orange);
  transition: color 0.2s ease-in;
}

.contact-container .social div:hover .contact-gh {
  background-image: url(../assets/images/hover-icons/github-hover.png);
  transition: background 0.2s ease-in;
}

.contact-container .social div:hover .contact-lin {
  background-image: url(../assets/images/hover-icons/linkedin-hover.png);
  transition: background 0.2s ease-in;
}

/* --- BOTÃO WHATSAPP --- */
.contact-container .whatsapp-div .whatsapp-button {
  padding: 19px;
  background-color: var(--primary-orange);
  color: #000;
  border: none;
  font-size: 19px;
  margin-top: 20px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.contact-container .whatsapp-div .whatsapp-button:hover {
  background-color: var(--primary-background);
  color: #fff;
  transition: 0.2s ease-in;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
  transition: 9999s ease-in-out 0s;
  background-color: var(--primary-background) !important;
  color: white;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-container .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    margin-right: 0;
    width: 60%;
  }
}
@media (max-width: 768px) {
  .contact-container .info {
    width: 70%;
  }
}
@media (max-width: 600px) {
  .contact-container .info {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .contact-container .info {
    width: 90%;
  }
}
@media (max-width: 414px) {
  .contact-container .info {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .contact .contact-title {
    font-size: 30px;
  }
}
#download-btn {
  background-color: #080808;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-cv {
  width: 100%;
  color: var(--text-color);
  font-size: 30px;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: lighter;
  z-index: 1;
}

#download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.616), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

#download-btn:hover .download-cv {
  color: #080808;
}

#download-btn:hover::before {
  left: 125%;
}

#download-btn:hover {
  background-color: var(--primary-orange);
  transform: scale(1.01);
}

footer {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 20px 100px 20px;
  text-align: center;
}

footer h2 {
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  display: inline-block;
  transition: 0.2s ease-in;
}

footer h2:hover {
  color: var(--primary-orange);
  transition: 0.2s ease-in;
}

.footer-body {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 100px;
}

.footer-credits {
  text-align: left;
}

.footer-credits .icon-credits h3 {
  color: var(--text-color);
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.footer-credits .icon-credits h3 a {
  color: var(--primary-orange);
}

.sections {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 100px;
}

.sections a {
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  transition: 0.2s ease-in;
}

.sections a:hover {
  color: var(--primary-orange);
  transition: 0.2s ease-in;
}

@media (max-width: 414px) {
  .footer-body {
    gap: 60px;
  }
}
@media (max-width: 375px) {
  .footer-body {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer-credits {
    text-align: center;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--primary-background);
  overflow-x: hidden;
}

main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 30px 0px 30px;
}

section.projects,
section.contact,
section.download {
  scroll-margin-top: 170px;
}

section.intro {
  scroll-margin-top: 0px;
}

section.about {
  scroll-margin-top: 190px;
}

section.abilities {
  scroll-margin-top: 140px;
}

section h1 {
  font-size: 50px;
  font-family: "Special Gothic Expanded One", sans-serif;
  color: var(--text-color);
}

section h1 span {
  color: var(--primary-orange);
}

section h2 {
  color: var(--text-color);
  font-family: "Special Gothic Expanded One", sans-serif;
}

span {
  color: var(--primary-orange);
}

p {
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
}

footer {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px 0px 20px;
}

.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.from-left {
  transform: translateX(-50px);
}

.from-right {
  transform: translateX(50px);
}

.from-bottom {
  transform: translateY(50px);
}

.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/*# sourceMappingURL=main.css.map */
