html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #0a0a0a;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.gradient-texto {
  background: linear-gradient(90deg, #0ea4e8, #1fe1f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ==================== NAVBAR ==================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0a0a0a;
  border-bottom: 1px solid #262626;
}

.navbar a {
  text-decoration: none;
}

.navbar-itens {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}

.navbar-itens-titulo {
  font-size: 1.5rem;
}

.navbar-itens-links {
  display: flex;
  list-style: none;
}

.navbar-itens-links a {
  margin-left: 18px;
  color: #cacaca;
}

.navbar-itens-links a:hover {
  background: linear-gradient(90deg, #0ea4e8, #1fe1f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
}

@media (max-width: 680px) {
  .navbar {
    height: 60px;
  }

  .navbar-itens-links {
    display: none;
  }
}

/* ==================== CONTAINER ==================== */
.container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 100px;
}

/* ==================== SOBRE MIM ==================== */
.sobre-mim {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
}

.sobre-mim-foto {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 30%;
}

.sobre-mim-foto img {
  width: 300px;
  height: 300px;
  border-radius: 9999px;
  box-shadow: 0 0 20px #0ea4e8;
}

.sobre-mim-conteudo {
  width: 70%;
}

.sobre-mim-conteudo-apresentacao h1 {
  font-size: 3rem;
}

.sobre-mim-conteudo-apresentacao h2 {
  font-size: 1.875rem;
  color: #999;
  margin-bottom: 20px;
}

.sobre-mim-conteudo-apresentacao p {
  font-size: 1.125rem;
  color: #b4b4b4;
}

.sobre-mim-conteudo-contatos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}

.sobre-mim-conteudo-contatos img {
  width: 32px;
  height: 32px;
  margin-right: 20px;
  padding: 7px;
  border: 2px solid #262626;
  border-radius: 10px;
  transition: box-shadow 0.2s ease;
}

.sobre-mim-conteudo-contatos img:hover {
  box-shadow: 0 0 20px #0ea4e8;
}

.sobre-mim-conteudo-tecnologias {
  margin-top: 30px;
}

.sobre-mim-conteudo-tecnologias-titulo {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.sobre-mim-conteudo-tecnologias-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.sobre-mim-conteudo-tecnologias-tecnologia {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-top: 5px;
  margin-right: 5px;
  padding: 10px;
  border: 2px solid #262626;
  border-radius: 10px;
  transition: box-shadow 0.2s ease;
}

.sobre-mim-conteudo-tecnologias-tecnologia img {
  height: 50px;
}

.sobre-mim-conteudo-tecnologias-tecnologia span {
  font-size: 0.75rem;
  color: #7d7d7d;
  margin-top: 8px;
}

.sobre-mim-conteudo-tecnologias-tecnologia:hover {
  box-shadow: 0 0 20px #0ea4e8;
}

.sobre-mim-conteudo-tecnologias-tecnologia span:hover {
  background: linear-gradient(90deg, #0ea4e8, #1fe1f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: all 0.2s ease;
}

@media (max-width: 1300px) {
  .sobre-mim {
    flex-direction: column;
  }

  .sobre-mim-foto {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .sobre-mim-conteudo-apresentacao h1 {
    font-size: 2.55rem;
  }

  .sobre-mim-conteudo-apresentacao h2 {
    font-size: 1.59375rem;
  }

  .sobre-mim-conteudo-apresentacao p {
    font-size: 0.95625rem;
  }
}

/* ==================== EXPERIÊNCIA ==================== */
.experiencias {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin-top: 150px;
  text-align: center;
}

.experiencias-experiencia {
  display: flex;
  justify-content: space-between;
  background-color: #0f0f0f;
  border: 2px solid #262626;
  border-radius: 30px;
  padding: 30px;
  margin-top: 40px;
  transition: box-shadow 0.2s ease;
}

.experiencias-experiencia:hover {
  box-shadow: 0 0 20px #0ea4e8;
}

.experiencias-experiencia-logo-empresa {
  margin-right: 20px;
}

.experiencias-experiencia-logo-empresa img {
  width: 60px;
  height: 60px;
  border-radius: 20px;
}

.experiencias-experiencia-conteudo-titulo-empresa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.experiencias-experiencia-conteudo-tecnologias {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}

.experiencias-experiencia-conteudo-tecnologias p {
  background-color: #1f1f1f;
  color: #0ea4e8;
  border-radius: 10px;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  margin-top: 10px;
  margin-right: 10px;
}

@media (max-width: 600px) {
  .experiencias-experiencia-conteudo-titulo-empresa {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .experiencias-experiencia {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
}

/* ==================== PROJETOS ==================== */
.projetos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  margin: 150px auto 0;
  text-align: center;
}

.projetos-carrossel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.projetos-wrapper {
  width: 100%;
}

.projetos-carrossel-botao {
  flex-shrink: 0;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.projetos-carrossel-botao img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease-in-out;
}

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

.projetos-carrossel-projeto {
  display: none;
  width: 90%;
  padding: 25px;
  background-color: #0f0f0f;
  border: 2px solid #262626;
  border-radius: 30px;
  animation: fadeIn 0.6s ease-in-out;
}

.projetos-carrossel-projeto-link {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 10px;
}

.projetos-carrossel-projeto-link img {
  width: 30px !important;
  height: 30px !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
}

.projetos-carrossel-projeto-link a {
  margin-left: 10px;
  color: #0ea4e8;
  text-decoration: none;
  transition: transform 0.6s ease;
}

.projetos-carrossel-projeto-link a:hover {
  transform: scale(1.05);
}

.projetos-carrossel-projeto.ativo {
  display: block;
}

.projetos-carrossel-projeto img {
  width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 20px;
  object-fit: cover;
}

.projetos-carrossel-projeto-tecnologias {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}

.projetos-carrossel-projeto-tecnologias p {
  margin-top: 10px;
  margin-right: 10px;
  padding: 0.25rem 0.75rem;
  background-color: #1f1f1f;
  color: #0ea4e8;
  border-radius: 10px;
  font-size: 0.875rem;
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==================== FOOTER ==================== */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  margin-top: 70px;
  background-color: #0a0a0a;
  border-top: 1px solid #262626;
  color: #b4b4b4;
}

