@font-face {
  font-family: "Gilroy";
  src: url("../font/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../font/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  /* Ou use 'semibold' se preferir */
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../font/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Gilroy, sans-serif;
  text-decoration: none;
  list-style: none;
  color: #172B3C;
  scroll-behavior: smooth;
}

.home1-sr,
.home2-sr,
.home3-sr,
.about-sr,
.socials1-sr,
.socials2-sr,
.socials3-sr .main-text-sr,
.portfolio-content-sr,
.h2-sr,
.services-content-sr {
  visibility: hidden;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 22px 15%;
  border-bottom: 1px solid transparent;
  transition: all 0.45s ease;
}

.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: all 0.45s ease;
  background: #ECECEC;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
  padding: 12px 15%;
  height: 10vh;
}

.logo {
  font-size: 35px;
  font-weight: 700;
}

.logo span {
  color: #46BDAD;
}

.navlist {
  display: flex;
}

.navlist a {
  font-size: 16px;
  font-weight: normal;
  margin: 0 25px;
  transition: all 0.45s ease;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .navlist a {
    font-size: 12px;
    margin: 0 15px;
  }
}

@media (max-width: 920px) {
  .navlist a {
    margin: 0 10px;
  }
}

.navlist a:hover {
  color: #46BDAD;
}

#menu-icon {
  font-size: 35px;
  z-index: 1001;
  cursor: pointer;
  margin-left: 25px;
  display: none;
}

#theme-toggle {
  font-size: 32px;
  cursor: pointer;
  z-index: 1001;
  margin-left: 25px;
  transition: all 0.4s ease;
}

#theme-toggle:hover {
  color: #46BDAD;
}

.lang-btn {
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #172B3C;
  transition: all 0.4s ease;
  user-select: none;
  margin-left: 25px;
}

@media (max-width: 1200px) {
  .lang-btn {
    font-size: 14px;
    margin-left: 15px;
  }
}

@media (max-width: 920px) {
  .lang-btn {
    margin-left: 10px;
  }
}

.lang-btn:hover {
  color: #46BDAD;
}

div {
  display: block;
  unicode-bidi: isolate;
}

section {
  padding: 160px 15% 120px;
}

.home {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url(/assets/img/wallpaper-bg.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home p {
  font-size: 20px;
  padding-bottom: 20px;
}

.home h1 {
  font-size: 80px;
  padding-bottom: 8px;
}

.home h3 {
  font-weight: 700;
  font-size: 48px;
  color: #46BDAD;
}

.about {
  display: flex;
  align-items: center;
  gap: 10rem;
}

.about-img img {
  width: 350px;
  border-radius: 10px;
  box-shadow: black 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: all 0.5s;
}

.about-img img:hover {
  transform: translateY(-8px);
  transform: rotate(10deg);
}

#dot {
  font-weight: 700;
  color: black;
  margin-right: 0.5rem;
}

.about-text h2 {
  font-size: 48px;
  line-height: 1;
}

.about-text h4 {
  font-size: 24px;
  line-height: 1.7;
  margin: 15px 0 30px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.about-text h2 span,
.about-text h4 span,
.about-text p span {
  color: #46BDAD;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5em;
  gap: 1rem;
}

.socials .socials-cv {
  display: flex;
  gap: 1rem;
}

.socials .btn-cv {
  background: #172B3C;
  color: #46BDAD;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all;
}

.socials .btn-cv:hover {
  scale: 1.05;
}

.btn-socials span i {
  height: 55px;
  width: 55px;
  background: #172B3C;
  color: #46BDAD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  border-radius: 50%;
  transition: all 0.45s ease;
}

.btn-socials span i:hover {
  transform: scale(0.9);
}

.portfolio {
  background-color: #ECECEC;
}

.main-text h2 {
  font-size: 48px;
  text-align: center;
}

.portfolio-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

.row {
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.row img {
  max-width: 350px;
  min-width: 100%;
  height: 212.52px;
  max-height: 350px;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}

.layer {
  width: 100%;
  height: 0%;
  background: #172B3C;
  position: absolute;
  border-radius: 10px;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 40px;
  transition: height 0.5s;
  cursor: default;
  gap: 6px;
}

.layer h5,
.layer p {
  font-size: 20px;
  color: #46BDAD;
  padding: 5px;
}

.layer span i {
  color: white;
  font-size: 32px;
}

.layer div a {
  margin: 6px;
}

.layer div a i {
  border: black solid 1.5px;
  padding: 5px;
  border-radius: 50%;
  color: white;
  font-size: 32px;
  transition: all 0.2s;
}

.layer div a i:hover {
  color: rgb(131, 131, 131);
  transform: scale(1.2);
}

.row:hover img {
  transform: scale(1.1);
}

.row:hover .layer {
  height: 100%;
}

.main-text {
  text-align: center;
}

.main-text h2 {
  font-size: 48px;
  line-height: 1;
}

.services-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 6rem;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  text-align: center;
  background: #ECECEC;
  border-radius: 8px;
  transition: all 0.45s ease;
}

.cyan {
  background-color: rgba(70, 189, 173, 0.6039215686);
}

.s-icons i {
  font-size: 30px;
}

.box h3 {
  font-size: 22px;
  font-weight: 600;
}

.box:hover {
  transform: translateY(-8px);
}

.end {
  letter-spacing: 1px;
  text-align: center;
  padding: 20px 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: #ECECEC;
}

.last-text {
  font-size: 17px;
}

.last-text a {
  color: #46BDAD;
}

#top {
  position: fixed;
  bottom: 2rem;
  padding: auto;
  right: 2rem;
}

#top.hide-top {
  display: none;
}

#top.show-top {
  display: block;
}

#top i {
  padding: 8px;
  border-radius: 8px;
  font-size: 24px;
  background: #46BDAD;
  transition: all 1s ease;
}

#top i:hover {
  transform: translateY(-8px);
}

@media (max-width: 1280px) {
  section {
    padding: 120px 15%;
  }

  .home-text h3 {
    font-size: 2rem;
  }

  .home {
    height: 87vh;
  }

  .about {
    display: flex;
    align-items: center;
    gap: 5rem;
  }

  .about-img img {
    width: 300px;
    border-radius: 10px;
    box-shadow: black 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: all 0.5s;
  }

  .portfolio-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
  }

  .services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    align-items: center;
    gap: 3rem;
    margin-top: 6rem;
  }
}

@media (max-width: 920px) {
  section {
    padding: 80px 15% 100px;
  }

  .logo {
    font-size: 28px;
    font-weight: 700;
  }

  .about {
    flex-direction: column;
    gap: 3rem;
  }

  .about-img {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-img img {
    width: 250px;
    height: auto;
  }

  .about-text {
    text-align: left;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text h4 {
    text-align: center;
    font-size: 16px;
  }

  .about-text p {
    padding-bottom: 30px;
  }

  .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5em;
    gap: 1rem;
  }

  .btn-socials span i {
    height: 50px;
    width: 50px;
    background: #172B3C;
    color: #46BDAD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    transition: all 0.45s ease;
  }

  .about-text {
    text-align: left;
  }

  .about-text h2 {
    text-align: center;
    padding: 2rem;
  }

  .about-text h4 {
    text-align: center;
    font-size: 20px;
    padding-bottom: 1rem;
  }

  .about-text p {
    padding-bottom: 30px;
  }
}

@media (max-width: 800px) {
  section {
    padding: 80px 5% 100px;
  }

  #menu-icon {
    display: block;
  }

  .navlist {
    position: absolute;
    top: -1000px;
    right: 0;
    left: 0;
    height: 90vh;
    display: flex;
    flex-direction: column;
    background: #ECECEC;
    text-align: center;
    justify-content: center;
    transition: all 0.45s ease;
  }

  .navlist a {
    display: block;
    margin: 17px;
    font-size: 20px;
    transition: all 0.45s ease;
  }

  .navlist.open {
    top: 100%;
  }

  .home {
    position: relative;
    height: 87vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .home p {
    text-align: left;
    font-size: 16px;
    padding-bottom: 8px;
  }

  .home h1 {
    text-align: left;
    font-size: 60px;
    padding-bottom: 8px;
  }

  .home h3 {
    text-align: left;
    font-weight: 700;
    font-size: 32px;
    color: #46BDAD;
  }

  .socials {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
  }

  .socials .socials-cv {
    display: flex;
  }

  .socials .btn-cv {
    background: #172B3C;
    color: #46BDAD;
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 1s ease;
    text-decoration: none;
    box-shadow: black 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  }

  .socials .btn-cv:hover {
    scale: 1.05;
    transition: all 0.45s ease;
  }

  .btn-socials span i {
    height: 33px;
    width: 33px;
    background: #172B3C;
    color: #46BDAD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.45s ease;
  }

  .text-box {
    width: 100%;
  }

  .container img {
    display: none;
  }

  #top {
    position: fixed;
    bottom: 0;
    padding: auto;
    margin: 0 0 5em 1rem;
  }

  .link {
    color: rgb(0, 0, 0);
    transition: 0.5s;
  }

  .link:hover {
    transition: 0.5s;
    color: #e4ab32;
  }

  .services-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
  }

  .box {
    width: 100%;
    height: 90px;
    padding: 10px;
  }

  .s-icons i {
    font-size: 24px;
  }

  .box h3 {
    font-size: 13px;
    margin-top: 8px;
    word-break: break-word;
  }

  .services-content {
    display: grid;
    align-items: center;
    gap: 2.5rem;
    margin-top: 5rem;
  }

  .last-text {
    font-size: 14px;
  }

  body.dark-theme .navlist {
    background-color: #1a2228;
  }
}

/* --- DARK THEME --- */
body.dark-theme {
  background-color: #121619;
}

body.dark-theme * {
  color: #f0f0f0;
}

body.dark-theme .logo span,
body.dark-theme .navlist a:hover,
body.dark-theme .home h3,
body.dark-theme .about-text h2 span,
body.dark-theme .about-text h4 span,
body.dark-theme .about-text p span,
body.dark-theme .layer h5,
body.dark-theme .layer p,
body.dark-theme .last-text a {
  color: #46BDAD;
}

body.dark-theme .header,
body.dark-theme .sticky,
body.dark-theme .portfolio,
body.dark-theme .box,
body.dark-theme .end {
  background-color: #1a2228;
}

body.dark-theme .home {
  background-image: linear-gradient(rgba(18, 22, 25, 0.85), rgba(18, 22, 25, 0.85)), url(/assets/img/wallpaper-bg.png);
}

body.dark-theme #dot {
  color: #f0f0f0;
}

body.dark-theme .layer {
  background: rgba(23, 43, 60, 0.95);
}

body.dark-theme .layer span i,
body.dark-theme .layer div a i {
  color: #f0f0f0;
}

body.dark-theme .layer div a i:hover {
  color: #46BDAD;
}

body.dark-theme .btn-socials span i,
body.dark-theme .socials .btn-cv {
  background: #222d35;
  color: #46BDAD;
}

body.dark-theme #top i {
  color: #121619;
}

/* --- PROJECT TABS --- */
.tab-btn {
  padding: 8px 20px;
  background: transparent;
  border: 2px solid #46BDAD;
  border-radius: 8px;
  color: #172B3C;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: rgba(70, 189, 173, 0.2);
}

.tab-btn.active {
  background: #46BDAD;
  color: white;
}

body.dark-theme .tab-btn {
  color: #f0f0f0;
}

body.dark-theme .tab-btn.active {
  color: #121619;
}

/* --- CERTIFICATES --- */
.cert-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

.cert-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: black 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-8px);
  box-shadow: #46BDAD 0px 4px 15px -5px;
}

.cert-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.5s;
}

.cert-item:hover img {
  transform: scale(1.05);
}

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