:root {
  --navBack: rgba(5, 25, 38, 0.877);
  --navTextHover: #00c6ff;
  --navText: #f0f6f6ff;
  --backgroundPrimary: rgb(221, 224, 226);
  --backgroundSecundary: #f5f5f5;
  --btnColor: #0072ff;
  --btnColorSecundary: #284c63;
}

* {
  margin: 0;
  padding: 0;
}

@keyframes wipe-in-right {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

[transition-style="in:wipe:right"] {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
}

@keyframes textShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 100% center;
  }
}

.navbar {
  background-color: var(--navBack);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  display: flex;
  position: fixed;
  z-index: 1;
  -webkit-box-shadow: 0px 18px 29px -8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 18px 29px -8px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 18px 29px -8px rgba(0, 0, 0, 0.4);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--navText);
  margin-left: 30px;
  z-index: 2;
}

.menu-toggle .material-symbols-outlined {
  font-size: 30px;
}

.navbar-links {
  display: block;
}

.navbar-links ul li {
  display: inline-flex;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  list-style: none;
}

.navbar-links ul {
  margin-right: 80px;
  transition: all 5s;
}

.navbar-links a {
  color: var(--navText);
  border-radius: 5px;
  padding: 6px;
  text-decoration: none;
  margin-right: 15px;
  font-size: 15pt;
  font-family: "Lexend", sans-serif;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  height: auto;
  width: 110px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar-links a:hover {
  background-color: var(--cor04);
  color: var(--navTextHover);
  transform: scale(1.1);
}

.navbar-logo {
  display: inline-flex;
  justify-content: center;
  align-content: center;
  margin-left: 100px;
}

.navbar-logo a {
  background: linear-gradient(to right, #00c6ff, #0072ff, #00c6ff);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: textShine 3s ease-in-out infinite alternate;
  font-family: "Lexend", sans-serif;
  font-size: 16pt;
  text-decoration: none;
  margin-top: 5px;
  cursor: pointer;
}

.navbar-logo a:hover {
  transition: all 0.5s;
  color: var(--navTextHover);
}

.main {
  padding-top: 60px;
  display: block;
  justify-content: center;
  align-items: center;
}

.hero {
  display: flex;
  justify-content: center;
  background-color: var(--backgroundPrimary);
}
.containerHero {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  height: 500px;
  margin: 0 15px;
}
.myPresentation {
  margin: 100px 0;
}
.myPresentation h1 {
  font-size: 25pt;
  font-family: "Lexend", sans-serif;
}
.myPresentation p {
  font-size: 16pt;
  font-family: "Inter", sans-serif;
  width: 80%;
  margin: 15px 0;
}

.myPhoto img {
  width: 400px;
}
.containerBtns {
  display: flex;
  flex-direction: row;
  margin-top: 25px;
  gap: 20px;
}
.btnContact {
  border: 1.5px solid var(--btnColor);
  border-radius: 10px;
  background-color: transparent;
  padding: 10px 15px;
  color: rgb(0, 0, 0);
  font-size: 13pt;
  font-family: "Inter", sans-serif;
  gap: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  box-shadow: 0px -1px 26px -7px rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 0px -1px 26px -7px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px -1px 26px -7px rgba(0, 0, 0, 0.32);
}
.btnContact:hover {
  transform: scale(1.02);
}
.btnCV {
  border: none;
  border-radius: 10px;
  background-color: var(--btnColor);
  padding: 10px 15px;
  color: whitesmoke;
  font-size: 13pt;
  font-family: "Inter", sans-serif;
  gap: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  box-shadow: 0px -1px 26px -7px rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 0px -1px 26px -7px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px -1px 26px -7px rgba(0, 0, 0, 0.32);
  text-decoration: none;
}
.btnCV:hover {
  transform: scale(1.02);
}
.projects {
  display: flex;
  justify-content: center;
  background-color: var(--backgroundSecundary);
}
.containerProjects {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  height: auto;
  padding: 150px 0;
}
.containerProjects h1 {
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 25pt;
  font-family: "Lexend", sans-serif;
}
.containerProjects span {
  margin-right: 10px;
  font-size: 25pt;
}
.containerCard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin: 0 15px;
}

.cardProject {
  background-color: var(--backgroundSecundary);
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 1s all;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cardProject:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.cardProject .image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cardProject .content {
  padding: 15px;
  text-align: center;
}

.cardProject .content h1 {
  font-size: 18pt;
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}

.cardProject .content p {
  font-size: 14pt;
  font-family: "Inter", sans-serif;
  color: #555;
  margin-bottom: 15px;
}

.cardProject .content h3 {
  font-size: 12pt;
  font-family: "Inter", sans-serif;
  color: #777;
  margin-bottom: 10px;
}

.cardProject .content span {
  display: inline-block;
  background-color: var(--btnColorSecundary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10pt;
  font-family: "Inter", sans-serif;
  margin: 10px 0;
}

.cardProject .containerBtns {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

.cardProject .containerBtns .btnDemo {
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 12pt;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: 0.5s all;
  display: flex;
  align-items: center;
  background-color: var(--btnColor);
  color: whitesmoke;
  width: 50%;
}

.cardProject .containerBtns .btnDemo:hover {
  transform: scale(1.02);
}
.cardProject .containerBtns .btnCode {
  border: 1.5px solid var(--btnColor);
  border-radius: 10px;
  background-color: transparent;
  padding: 10px 15px;
  font-size: 12pt;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: 0.5s all;
  display: flex;
  align-items: center;
  background-color: transparent;
  color: black;
  width: 50%;
}

.cardProject .containerBtns .btnCode:hover {
  transform: scale(1.02);
}

.cardProject .containerBtns button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardProject .containerBtns button span {
  font-size: 12pt;
}
.certificates {
  display: flex;
  justify-content: center;
  background-color: var(--backgroundPrimary);
}
.containerCertificates {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  height: auto;
  padding: 150px 0;
}
.containerCertificates .containerCard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin: 0 15px;
}

.containerCertificates h1 {
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 25pt;
  font-family: "Lexend", sans-serif;
}
.containerCertificates span {
  margin-right: 10px;
  font-size: 25pt;
}
.cardCertificates .containerIcon {
  display: block;
}
.cardCertificates {
  background-color: var(--backgroundSecundary);
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 1s all;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cardCertificates:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.cardCertificates h1 {
  font-size: 18pt;
  font-family: "Lexend", sans-serif;
}

.cardCertificates p {
  font-size: 14pt;
  font-family: "Inter", sans-serif;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cardCertificates .locate {
  font-size: 14pt;
  font-family: "Inter", sans-serif;
  color: var(--btnColor);
  margin-bottom: 15px;
}
.cardCertificates .date {
  font-size: 12pt;
  font-family: "Inter", sans-serif;
  margin-bottom: 25px;
}
.cardCertificates .calendar {
  font-size: 13pt;
}

.cardCertificates .license {
  background-color: var(--btnColor);
  color: #fff;
  padding: 10px 10px;
  border-radius: 100%;
  font-size: 20pt;
  margin: 15px 0;
}
.cardCertificates .skills {
  align-items: center;
}
.cardCertificates .skills span {
  display: inline-block;
  background-color: var(--btnColorSecundary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10pt;
  font-family: "Inter", sans-serif;
  margin-right: 5px;
  margin-bottom: 10px;
}
.cardCertificates .btnCertView {
  border: none;
  border-radius: 10px;
  background-color: var(--btnColor);
  padding: 10px 15px;
  font-size: 12pt;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: 0.5s all;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  width: 100%;
  gap: 10px;
}

.cardCertificates .btnCertView:hover {
  transform: scale(1.02);
}
.cardCertificates .btnCertView span {
  font-size: 14pt;
  color: rgb(255, 255, 255);
}
.pageSorry {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--backgroundPrimary);
}
.containerSorry {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--btnColorSecundary);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 12pt;
  font-family: "Inter", sans-serif;
  color: #fff;
}
.containerSorry a {
  text-decoration: none;
  color: #fff;
  font-size: 14pt;
  font-family: "Inter", sans-serif;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  background-color: var(--btnColor);
  transition: all 0.3s;
}
.containerSorry a:hover {
  transform: scale(1.02);
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: var(--background);
}
.containerContact {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.contact h1 {
  font-size: 24pt;
  font-family: "Lexend", sans-serif;
  margin-bottom: 20px;
  color: var(--btnColor);
}

.contact p {
  font-size: 14pt;
  font-family: "Inter", sans-serif;
  color: #000000;
  text-align: center;
  max-width: 600px;
  margin-bottom: 40px;
}

.contact .containerContactInfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
  max-width: 400px;
}

.contact .containerContactInfo div {
  display: flex;
  align-items: center;

  padding: 10px 15px;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 14pt;
}

.contact .containerContactInfo div p {
  margin: 0;
  font-weight: 600;
  min-width: 70px;
  text-align: left;
}

.contact .containerContactInfo div a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact .containerContactInfo div a:hover {
  color: var(--btnColor);
}

.contact .containerContactInfo div span {
  font-size: 20pt;
  color: #ffffff;
}

.contact .containerForm {
  width: 100%;
  max-width: 600px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px -1px 26px -7px rgba(0, 0, 0, 0.32);
}

.contact .containerInput {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--btnColorSecundary);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14pt;
  resize: vertical;
  transition: border-color 0.3s;
}

.contact textarea {
  width: auto;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--btnColor);
}

.contact button[type="submit"] {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background-color: var(--btnColor);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  font-family: "Inter", sans-serif;
  font-size: 14pt;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0px -1px 26px -7px rgba(0, 0, 0, 0.32);
}

.contact button[type="submit"]:hover {
  background-color: #005bb5;
  transform: scale(1.01);
}

.contact .iconSquare {
  background-color: var(--btnColor);
  border-radius: 10px;
}

.contact .contactInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.contact .contactInfo p,
.contact .contactInfo a {
  display: block;
  width: 100%;
}

.contact h1 {
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 25pt;
  font-family: "Lexend", sans-serif;
  color: #000;
  display: flex;
  align-items: center;
}

.contact h1 span {
  margin-right: 10px;
  font-size: 25pt;
}

@media screen and (max-width: 970px) and (min-width: 600px) {
  .myPhoto img {
    width: 80%;
  }
  .navbar-logo {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }

  .navbar {
    height: 100px;
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
  }

  .navbar-links ul li {
    margin: 0;
  }

  .navbar-links ul {
    margin: 0;
  }

  .contact p {
    text-align: left;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .containerContact {
    display: block;
  }

  .contact .containerForm {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .myPhoto img {
    display: none;
  }
  .navbar-logo {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0;
    padding: 0;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    justify-content: space-between;
    height: 60px;
    position: fixed;
    display: flex;
  }

  .navbar-logo {
    margin-right: 30px;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--navBack);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
  }

  .navbar-links.active {
    left: 0;
  }

  .navbar-links ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 20px;
    height: 100%;
    justify-content: center;
  }

  .navbar-links ul li {
    display: block;
    margin: 20px 0;
    text-align: center;
  }

  .navbar-links a {
    width: 100%;
    padding: 10px;
    margin: 0;
    box-shadow: none;
  }

  .contact p {
    text-align: left;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .containerContact {
    display: block;
  }

  .contact .containerForm {
    max-width: 100%;
  }
}