@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
body{
    background-color: #0F172A;
    color: #fff;
    font-family: "Trebuchet MS", Tahoma, sans-serif;
    font: bold;
}
a{
  text-decoration: none;
  color: #fff;
}
.plex-ibm{
    font-family: "IBM Plex Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:"wdth" 100;
}
/* Layout geral */
.area-content {
  max-width: 1280px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  margin: 0 auto;
}

/* Área esquerda */
.area-esquerda {
  background-color: #0F172A;
  color: #fff;
  padding: 20px;
  padding-top: 60px;
  overflow: hidden;
}

/* Área direita (sem scroll visível no desktop) */
.area-direita {
  overflow: hidden;
  position: relative;
}

.conteudo-scroll {
  height: 100%;
  overflow-y: scroll;
  padding: 20px;

  /* Ocultar scroll */
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE e Edge */
}

.conteudo-scroll::-webkit-scrollbar {
  display: none;                  /* Chrome, Safari */
}

/* Modo mobile/tablet */
@media (max-width: 768px) {
  .area-content {
    display: block;
    height: auto;
  }

  .area-esquerda,
  .area-direita,
  .conteudo-scroll {
    height: auto;
    overflow: visible;
  }

  .conteudo-scroll {
    scrollbar-width: auto;
    -ms-overflow-style: auto;
  }

  .conteudo-scroll::-webkit-scrollbar {
    display: initial;
  }
}
/* CSS MENU */
.menu {
  display: grid;
  gap: 12px;
  max-width: 100%;
  margin: 40px auto;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  color: #B8C5E1;
}
#sobre p{
    color: #B8C5E1;
}
#sobre span{
    color: #fff;
}
#experiencias{
    margin-top: 120px;
}
.experiencia p{
    color: #B8C5E1;
    font-size: .9rem;
}
.badge{
    color: #4DBFC5;
    background-color: #183756;
    font-weight: bold;
}
.experiencia a{
   text-decoration: none;
   color: #fff;
}
/* Traço */
.menu-item .traco {
  display: inline-block;
  height: 1px;
  width: 30px;
  margin-right: 12px;
  border-radius: 2px;
  background-color: #B8C5E1;
  transition: width 0.3s ease;
  align-self: center; /* Centraliza verticalmente */
}

/* Primeiro item já expandido */
.menu-item.ativo .traco {
  width: 60px;
  background-color: #fff;
  color: #fff;
}
.menu-item.ativo .texto {
  color: #fff;
}
/* Hover: traço expande */
.menu-item:not(.ativo):hover .traco {
  width: 60px;
  background-color: #fff;
}
.menu-item:not(.ativo):hover .texto{
    color: #fff;
}
.experiencia{
  padding: 30px;
}
.experiencia:hover{
  background-color: #18274B;
  opacity: 0.8;
  padding: 30px;
  cursor: pointer;
  border-radius: 10px;
}
.contact-list ul li{
  list-style: none;
  padding-left: 15px;
}
