@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap');

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

body {
  width: 100%;
  height: 100%;
  background-color: #24242b;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

header{
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #24242b;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #16e6e6;
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease-out;
}

.logo {
  margin-left: 80px;
  width: 130px;
  height: 50px;
}

.logo h2 {
  color: #16e6e6;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo h2:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(22, 230, 230, 0.8);
}

.nav-header {
  width: 30%;
  height: 70px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  
}

.menu {
  width: 350px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  margin: auto;
  justify-content: space-between;
}

.nav-link{
  list-style: none;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.nav-link:nth-child(1) {
  animation-delay: 0.2s;
}
.nav-link:nth-child(2) {
  animation-delay: 0.4s;
}
.nav-link:nth-child(3) {
  animation-delay: 0.6s;
}
.nav-link:nth-child(4) {
  animation-delay: 0.8s;
}

.nav-link a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Underline animation */
.nav-link a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #16e6e6, #00ffff);
  transition: width 0.4s ease;
}

.nav-link a:hover::before {
  width: 100%;
}

.nav-link a:hover {
  transform: translateY(-2px);
}

/* ===== HERO SECTION ANIMATIONS ===== */
#inicio {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  padding-top: 70px;
}

.container-txt-inicio {
  width: 50%;

  /* Animação de entrada */
  animation: fadeInLeft 1s ease-out 0.5s both;
}

.content-txt-inicio {
  margin-top: 50px;
}

.content-txt-inicio h1 {
  color: #fff;
  font-size: 52px;
  padding: 5px;
  margin-bottom: 15px;

  /* Typing effect */
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #16e6e6;
  animation: typing 3s steps(40) 1s both, blink 1s infinite 4s;
}
h1 > span {
  color: #16e6e6;
  text-shadow: 0 0 10px rgba(22, 230, 230, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

.content-txt-inicio p {
  padding: 5px;
  font-size: 22px;
  margin-bottom: 25px;
  color: #fff;

  /* Fade in com delay */
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 2s both;
}

a {
  text-decoration: none;
}

.foto-perfil {
  display: flex;
  align-items: center;
  position: relative;

  /* Animação de entrada */
  animation: fadeInRight 1s ease-out 0.8s both;
}

.foto-perfil img {
  border-radius: 50%;
  width: 400px;
  border: 3px solid #16e6e6;
  height: 450px;

  /* Float animation */
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(22, 230, 230, 0.3);
}

.foto-perfil img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(22, 230, 230, 0.6);
}

/* Elementos decorativos flutuantes */
.foto-perfil::before,
.foto-perfil::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(22, 230, 230, 0.2);
  animation: float 4s ease-in-out infinite;
}

.foto-perfil::before {
  width: 60px;
  height: 60px;
  top: -30px;
  right: -30px;
  animation-delay: -2s;
}

.foto-perfil::after {
  width: 40px;
  height: 40px;
  bottom: -20px;
  left: -20px;
  animation-delay: -4s;
}

.btn-inicio {
  background: linear-gradient(45deg, #16e6e6, #00ffff);
  color: #141418;
  font-size: 16px;
  width: 150px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  /* Animações */
  opacity: 0;
  animation: scaleIn 0.6s ease-out 2.5s both;
  transition: all 0.3s ease;
}

.btn-inicio::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-inicio:hover::before {
  left: 100%;
}

.btn-inicio:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(22, 230, 230, 0.4);
}

.redes-sociais {
  width: 160px;
  display: flex;
  margin-top: 25px;
  flex-direction: row;

  /* Animação de entrada */
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 3s both;
}

.btn-redes-sociais {
  background-color: transparent;
  color: #fff;
  padding: 15px;
  margin-right: 15px;
  font-size: 20px;
  border: 2px solid transparent;
  width: 57px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.btn-redes-sociais:hover {
  color: #16e6e6;
  border-color: #16e6e6;
  transform: translateY(-3px) rotate(10deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(22, 230, 230, 0.3);
}

/*SECAO DOS PROJETOS*/
#secao-projetos {
  margin-top: 100px;
  padding: 20px;
  width: 100%;
  height: auto;
}

.titulo-secao{
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 600px;
  margin: 20px auto;
  padding: 10px;

  /* Scroll animation */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.titulo-secao.animate {
  opacity: 1;
  transform: translateY(0);
}


.titulo-secao h2 {
  color: #16e6e6;
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}

.titulo-secao h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  transition: width 0.8s ease;
}


.titulo-secao.animate h2::after {
  width: 100px;
}

.titulo-secao p {
  color: #fff;
  font-size: 18px;
}

.container-projeto {
  height: 600px;
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  gap: 50px;
  justify-content: center;
}

.projetos {
  background-color: #27272e;
  max-width: 553px;
  height: 630px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;

  /* Scroll animations */
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.8s ease;
  position: relative;
}

.projetos.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.projetos:nth-child(1) {
  transition-delay: 0.2s;
}
.projetos:nth-child(2) {
  transition-delay: 0.4s;
}

.projetos:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(22, 230, 230, 0.2);
}

.projetos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.nome-projeto {
  margin: 15px 0 0 20px;
  padding: 10px;
}

.nome-projeto h3 {
  color: #fff;
  font-size: 22px;
  transition: color 0.3s ease;
}

.projetos:hover .nome-projeto h3 {
  color: #16e6e6;
}

.nome-projeto p {
  color: #fff;
  margin-top: 10px;
  line-height: 1.6;
}

.linguagens-pix,
.linguagens-stockpro {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px 0 0 20px;
  padding: 10px;
  gap: 10px;
}

.linguagens-pix {
  width: 37%;
}

.linguagens-stockpro {
  width: 72%;
}

.linguagens-pix span,
.linguagens-stockpro span {
  background-color: transparent;
  color: #16e6e6;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #16e6e6;
  border-radius: 30px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.linguagens-pix span:hover,
.linguagens-stockpro span:hover {
  background-color: #16e6e6;
  color: #24242b;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(22, 230, 230, 0.3);
}

.btn-projetos {
  margin: 10px 0 0 20px;
  padding: 10px;
  width: 300px;
  height: auto;
}

.fa-arrow-up-right-from-square,
.fa-github {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.btn-ver-projeto {
  background: linear-gradient(45deg, #16e6e6, #00ffff);
  color: #141418;
  width: 120px;
  height: 45px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-ver-projeto::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-ver-projeto:hover::before {
  left: 100%;
}

.btn-ver-projeto:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(22, 230, 230, 0.4);
}

.btn-ver-projeto:hover .fa-arrow-up-right-from-square {
  transform: rotate(45deg) scale(1.2);
}

.btn-codigo {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  width: 120px;
  height: 45px;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-codigo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-codigo:hover::before {
  width: 100%;
}

.btn-codigo:hover {
  color: #141418;
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-codigo:hover .fa-github {
  transform: rotate(360deg) scale(1.2);
}

/* ===== ABOUT SECTION ANIMATIONS ===== */
#secao-sobreMim {
  width: 100%;
  height: auto;
  padding: 20px;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cabecalho-sobreMim {
  width: 60%;
  text-align: center;

  /* Scroll animation */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.cabecalho-sobreMim.animate {
  opacity: 1;
  transform: translateY(0);
}

.cabecalho-sobreMim h2 {
  color: #16e6e6;
  font-size: 36px;
  margin-top: 8px;
  padding: 8px;
  display: inline-block;
  position: relative;
}

.cabecalho-sobreMim h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  transition: width 0.8s ease;
}

.cabecalho-sobreMim.animate h2::after {
  width: 100%;
}

.cabecalho-sobreMim p {
  color: #fff;
  padding: 8px;
  font-size: 18px;
  line-height: 1.6;
}

.tecnologias {
  width: 70%;
  margin-top: 30px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.experiencia {
  background-color: #27272e;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 30%;
  height: auto;
  padding: 20px;
  text-align: center;

  /* Scroll animations */
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
}

.experiencia.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.experiencia:nth-child(1) {
  transition-delay: 0.2s;
}
.experiencia:nth-child(2) {
  transition-delay: 0.4s;
}
.experiencia:nth-child(3) {
  transition-delay: 0.6s;
}

.experiencia:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(22, 230, 230, 0.2);
}

.experiencia::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #16e6e6, #00ffff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.experiencia:hover::before {
  transform: scaleX(1);
}

h3 {
  padding: 5px;
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
  transition: color 0.3s ease;
}

.experiencia:hover h3 {
  color: #16e6e6;
}

.tecnologias-experiente {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 5px;
  margin-top: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.tecnologias-experiente span {
  border: 1px solid #16e6e6;
  color: #fff;
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tecnologias-experiente span:hover {
  background-color: #16e6e6;
  color: #24242b;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(22, 230, 230, 0.3);
}

.fa-globe,
.fa-database,
.fa-angle-left,
.fa-angle-right {
  color: #16e6e6;
  font-size: 24px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.experiencia:hover .fa-globe,
.experiencia:hover .fa-database,
.experiencia:hover .fa-angle-left,
.experiencia:hover .fa-angle-right {
  transform: scale(1.2) rotate(10deg);
  animation: pulse 1s infinite;
}

/* ===== CONTACT SECTION ANIMATIONS ===== */
#contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 90vh;
  padding: 50px 10px;
}

.cabecalho-contato {
  max-width: 45%;
  padding: 10px;
  text-align: center;

  /* Scroll animation */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.cabecalho-contato.animate {
  opacity: 1;
  transform: translateY(0);
}

.cabecalho-contato h1 {
  color: #16e6e6;
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}

.cabecalho-contato h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  transition: width 0.8s ease;
}

.cabecalho-contato.animate h1::after {
  width: 150px;
}

.cabecalho-contato p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.container-enviar-mensagem {
  width: 100%;
  height: auto;
  margin-top: 50px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}

.enviar-mensagem {
  background-color: #27272e;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 40%;
  height: auto;
  padding: 30px;

  /* Scroll animation */
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.enviar-mensagem.animate {
  opacity: 1;
  transform: translateX(0);
}

.enviar-mensagem h2 {
  color: #16e6e6;
  font-size: 28px;
  margin-bottom: 10px;
}

.enviar-mensagem p {
  color: #d4d4d4;
  margin-bottom: 20px;
}

form {
  margin-top: 20px;
}

form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

form input,
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid transparent;
  border-radius: 8px;
  background-color: #1a1a1f;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

form input:focus,
textarea:focus {
  outline: none;
  border-color: #16e6e6;
  box-shadow: 0 0 10px rgba(22, 230, 230, 0.3);
  transform: scale(1.02);
}

form input {
  height: 45px;
}

form label {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 500;
}

textarea {
  height: 120px;
  resize: vertical;
}

.card-contato {
  width: 40%;
  height: auto;

  /* Scroll animation */
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.card-contato.animate {
  opacity: 1;
  transform: translateX(0);
}

.info-contato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #27272e;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 90%;
  height: 80px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-contato:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(22, 230, 230, 0.2);
}

.info-contato p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    width: 145px;
    margin-left: 40px;
}

.info-contato span {
    display: inline-block;
    color: #d4d4d4;
    margin-left: 40px;
    transition: color 0.3s ease;
}
.info-contato:hover span {
  color: #16e6e6;
}

.disponibilidade {
    background-color: #27272e;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(22, 230, 230, 0.3);
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.disponibilidade:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(22, 230, 230, 0.2);
}

.disponibilidade p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 15px;
}

.disponibilidade > span {
    display: inline-block;
    color: #d4d4d4;
    line-height: 1.6;
    margin-bottom: 15px;
}

.descricao-disponivel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.descricao-disponivel > span {
    color: #d4d4d4;
}

.fa-circle {
    color: #00ff00;
    animation: pulse 2s infinite;
}

.fa-envelope, 
.fa-phone, 
.fa-location-dot {
    font-size: 22px;
    color: #16e6e6;
    position: absolute;
    top: 25px;
    left: 20px;
    transition: all 0.3s ease;
}

.info-contato:hover .fa-envelope,
.info-contato:hover .fa-phone,
.info-contato:hover .fa-location-dot {
  transform: scale(1.2) rotate(10deg);
  animation: bounce 0.6s ease;
}

.btn-enviar-msg {
  background: linear-gradient(45deg, #16e6e6, #00ffff);
  color: #141418;
  margin-top: 20px;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-enviar-msg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-enviar-msg:hover::before {
  left: 100%;
}

.btn-enviar-msg:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(22, 230, 230, 0.4);
}

/* ===== SCROLL ANIMATIONS JAVASCRIPT ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ANIMATIONS ===== */
/* Slide down animation para header */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from bottom */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Float animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Pulse animation */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Glow animation */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(22, 230, 230, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(22, 230, 230, 0.8), 0 0 30px rgba(22, 230, 230, 0.6);
  }
}

/* Typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blink cursor */
@keyframes blink {
  0%,
  50% {
    border-color: #16e6e6;
  }
  51%,
  100% {
    border-color: transparent;
  }
}

/* Rotate animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Bounce animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .logo {
    margin-left: 20px;
  }

  .nav-header {
    width: 50%;
  }

  .menu {
    width: 100%;
    justify-content: space-around;
  }

  #inicio {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 50px;
  }

  .container-txt-inicio {
    width: 100%;
  }

  .content-txt-inicio h1 {
    font-size: 36px;
  }

  .foto-perfil img {
    width: 300px;
    height: 350px;
  }

  .container-projeto {
    flex-direction: column;
    align-items: center;
  }

  .projetos {
    max-width: 90%;
    margin-bottom: 30px;
  }

  .tecnologias {
    flex-direction: column;
    width: 90%;
  }

  .experiencia {
    width: 100%;
    margin-bottom: 20px;
  }

  .container-enviar-mensagem {
    flex-direction: column;
    align-items: center;
  }

  .enviar-mensagem,
  .card-contato {
    width: 90%;
  }

  .cabecalho-contato {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .content-txt-inicio h1 {
    font-size: 28px;
  }

  .content-txt-inicio p {
    font-size: 18px;
  }

  .foto-perfil img {
    width: 250px;
    height: 300px;
  }

  .titulo-secao {
    width: 90%;
  }

  .titulo-secao h2 {
    font-size: 28px;
  }
}