/* Configurações */
:root {
  font-size: 62.5%;
}

body {
  margin: 0;
  scroll-behavior: smooth;
  background-color: #FC3F3E;
}

/* header  */

.hamburger {
  position: relative;
}

/* Botão */
.btn {
  width: 4rem;
  height: 2.5rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.btn span {
  height: 3rem;
  background: #ffffff;
  border-radius: 2px;
}

/* Menu */
.menu {
 position: fixed;
  top: 0;
  right: -100%;
  width: 160px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0,0,0,.1);
  padding: 2rem;
  display: flex;          
  flex-direction: column;
  gap: 1.2rem;            
  align-items: flex-end;    
  z-index: 4;
  transition: .3s ease;
}

.hamburger.active .menu {
  right: 0;
}

.logo {
  width: 140px;
}

/* Links */
.menu a {
  text-decoration: none;
  display: grid;
  justify-content: right;
  font-family: "Montserrat", sans-serif;
}

.menu a h1{
  font-size: 1.2rem;
  color: #111;
  font-weight: 500;
}

/* Social */
.social {
  display: flex;
  gap: 1.2rem;
}

.social a img{
  width: 2.5rem;
}

header {
  display: flex;
  justify-content: space-evenly;
  padding: 2.5rem;
}

header .logo img {
  cursor: pointer;
  width: 20rem;
}

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

header .nav a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
}

header .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 4px;
  background: #ffffff;
  transition: 0.3s ease;
}

header .nav a:hover::after {
  width: 100%;
}

header .nav a h1 {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
}

header .redes {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .redes a img {
  width: 2.5rem;
}

/* section principal  */

#secao_principal {
  min-height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
}

.texos_ao_lado_da_imagem,
.imagem {
  will-change: transform, opacity;
}

.texos_ao_lado_da_imagem {
  display: grid;
}

.texos_ao_lado_da_imagem h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 10rem;
  color: white;
  margin-bottom: 0;
}

.texos_ao_lado_da_imagem p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-top: 0;
  color: white;
}

.texos_ao_lado_da_imagem a img {
  width: 10rem;
}

.imagem img {
  width: 45rem;
}

/* section projetos */
.projetos-section {
  position: relative;
  padding: 4rem 0 7rem;
  overflow: visible;
}

.titulo-projetos {
  font-family: "Bebas Neue", sans-serif;
  font-size: 7rem;
  color: #fff;
  margin-left: 5%;
  margin-bottom: 6rem;
}

.trilha-svg {
  position: absolute;
  top: -200px;
  width: 100%;
  height: 4000px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.98;
}

.cards-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  z-index: 3;
}

.novo-card {
  width: 380px;
  max-width: 90%;
  background: #ffffff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 5px solid white;
  transition: 0.3s;
}

.novo-card a {
  text-decoration: none;
  color: inherit;
}

.novo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.7);
}

.card-frame {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preview-img {
  width: 90%;
  border-radius: 14px;
}

.tag-area {
  width: 90%;
  display: flex;
  justify-content: flex-start;
  margin-top: 3rem;
}

.tag {
  background: #FC3F3E;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: "Montserrat";
  font-size: 1rem;
}

.card-title-novo {
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  margin-top: 3rem;
  width: 100%;
  text-align: left;
  color: #000;
  margin-bottom: 0;
}

.techs {
  font-family: "Montserrat", sans-serif;
  color: #242424;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  width: 100%;
  text-align: left;
}

.btn-vermais {
  align-self: flex-end;
  background: #FC3F3E;
  border: none;
  color: white;
  padding: 1.4rem 3.4rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 3rem;
}

.btn-vermais:hover {
  transform: translateY(-3px);
}

.novo-card.left {
  align-self: flex-start;
  margin-left: 9%;
}

.novo-card.rigth {
  align-self: flex-end;
  margin-right: 9%;
}

.linkProjetos {
  display: flex;
  gap: 2rem;
}

/* section de certificações */
.cetificacoeMobile {
  display: none;
  padding: 40px 20px;
  flex-direction: column;
  gap: 30px;
}

.skill-card {
  background-color: #ff5c5c; 
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
}

.skill-content h2 {
  margin: 0 0 20px 0;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.skill-list {
  display: flex;
  font-family: "Montserrat", sans-serif;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

#certificações {
  padding: 8rem 0;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
}

.container-certificações {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titulo-certificações {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  color: #fff;
  margin-bottom: 4rem;
  text-align: center;
}

.botoes-certificações {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.btn-certificações {
  background: transparent;
  border: 2px solid white;
  padding: 1.5rem 3rem;
  color: white;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border-radius: 60rem;
  transition: 0.3s;
}

.btn-certificações:hover {
  background: white;
  color: #ff5943;
}

.btn-certificações.ativo {
  background: white;
  color: #ff5943;
}

.conteudo-certificações {
  width: 70%;
  max-width: 900px;
}

.conteudo-item {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.4s ease;
  background: rgba(255, 255, 255, 0.15);
  padding: 3rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(5px);
  color: white;
  font-family: "Montserrat", sans-serif;
}

.conteudo-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Bebas Neue", sans-serif;
}

.conteudo-item p {
  font-size: 1.2rem;
}

.conteudo-item.ativo {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ver_mais {
  display: flex;
  justify-content: center;
  margin-bottom: 15rem;
}

.ver_mais a {
  text-decoration: none;
}

.ver_mais a h1 {
  align-self: flex-end;
  background: white;
  border: none;
  color: #ff5943;
  padding: 1.4rem 3.4rem;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.ver_mais a h1:hover {
  transform: translateY(-3px);
}

/* section sobre  */

.contentSobre {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 2rem;
  margin-bottom: 5rem;
  perspective: 1000px;
}

.contentSobre .textosSobre {
  align-items: center;
  color: #fff;
}

.contentSobre .textosSobre h1 {
  font-size: 9rem;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
}

.contentSobre .textosSobre p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  width: 50rem;
}

.contentSobre .cardSobre {
  width: 50rem;
  height: 30rem;
  background-color: #ffffff;
  border: 4px solid white;
  border-radius: 1rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.487);
  transform-style: preserve-3d;
  will-change: transform;
}

.cardSobre .headerCard {
  display: flex;
  align-items: flex-start;
  padding: 3rem;
  padding-bottom: 0;
}

.cardSobre .headerCard .logo img {
  width: 10rem;
  border-radius: 2rem;
}

.cardSobre .headerCard .Nome {
  margin-left: 2rem;
  color: #f84f3c;
}

.cardSobre .headerCard .Nome h1 {
  font-size: 3rem;
  font-family: "Bebas Neue", sans-serif;
  margin: 0;
}

.cardSobre .headerCard .Nome p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}

.cardSobre .BaixarCV {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
  margin-top: 5rem;
}

.BaixarCV .textoCV p {
  font-size: 1.2rem;
  font-family: "Bebas Neue", sans-serif;
  color: #f84f3c;
}

.BaixarCV .donwload {
  display: flex;
  gap: 2rem;
}

.BaixarCV .donwload button {
  background-color: transparent;
  border: 4px solid #f84f3c;
  border-radius: 1rem;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  height: 4rem;
  width: 8rem;
  color: #f84f3c;
  cursor: pointer;
  transition: 1s;
}

.BaixarCV .donwload button:hover {
  background-color: #f84f3c;
  color: #ffffff;
}

.BaixarCV .donwload a {
  text-decoration: none;
  background-color: #f84f3c;
  border-radius: 1rem;
  width: 9rem;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.BaixarCV .donwload a h1 {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #ffffff;
  transition: 1s;
}

.cursorSeguidor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: #ffffff00;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
