.borda{
    border-radius: 3rem;
}
.divisao{
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: black;
    height: 2px;
    width: 10vw;
    transition: all 0.6s ease-out;
    
}
.divisao.visivel{
    width: 100%;
    height: 2px;
    left: 0;
    transform: none;
    border-radius: 0;
}
main>p {
  font-size: clamp(1rem, 2vw, 1.5rem);
}
@font-face {
  font-family: 'FonteCinemaSunday';
  src: url('../font/Chevalon-Font/Chevalon-Light.otf') format('truetype');
}
.titulo {
  position: relative;
  font-family: 'FonteCinemaSunday', serif;
  color: black;
  transition: color 0.3s ease;
  display: inline-block;
  overflow: hidden;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 1;
}
/* Fundo preto vindo da esquerda */
.titulo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover: fundo expande e texto fica branco */
.titulo.visivel::before {
  width: 100%;
}

.titulo.visivel {
  color: white;
}

.frase {
  position: relative;
  display: inline-block;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  color: black;
  background-color: transparent;
  border-radius: 1rem;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

/* Quando visível na tela */
.frase.visivel {
  background-color: rgba(0, 0, 0, 0.05); 
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 1;
  transform: scale(1);
}

/* Efeito hover: aumenta o painel e escurece levemente */
.frase.visivel:hover {
  transform: scale(1.05);
  background-color: rgba(0, 0, 0, 0.15);
  color: rgb(31, 28, 28);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.lista-personalizada {
  background-color: #e0e0e0;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.lista-personalizada li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.lista-personalizada i {
  color: #333;
  margin-top: 2px;
  min-width: 1.2rem;
  text-align: center;
}
.skills-icons i {
  color: #2c2c2c;
  transition: transform 0.2s ease;
}

.skills-icons i:hover {
  transform: scale(1.2);
  color: #007bff;
}
