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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #1e1a2b;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  background-color: #1e1a2c;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #a064f3;
}

/* CONTEÚDO PRINCIPAL */
.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  min-height: 90vh;
}

/* LADO ESQUERDO */
.left-content {
  max-width: 500px;
}

.left-content h1 span {
  font-size: 2.5rem;
  color: #a064f3;
  margin-bottom: 10px;
  display: block;
}

.left-content h2 {
  white-space: nowrap;
  overflow: visible;
  max-width: 100%;
  flex-wrap: nowrap;
}

.typed-text {
  display: inline;
  white-space: nowrap;
  color: #a064f3;
}

.bar {
  color: #fff;
  margin-left: 5px;
  animation: blink 1s infinite;
  font-weight: bold;
}
 .highlight {
  color: #a064f3;
  font-size: 2.2rem;
  margin-bottom: 10px;
  white-space: nowrap;

}


@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.bio {
  margin: 20px 0;
  font-size: 1rem;
  color: #ccc;
}

/* BOTÕES */
.btn-container {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.btn {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #5e2b97; /* azul */
  color: #fff;
}

.btn-primary:hover {
  background-color: #5e2b97;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #692bb1;
  color: #5e2b97;
}

.btn-secondary:hover {
  color: #fff;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #cfa9ff;
}

/* REDES SOCIAIS */
.social-links {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #fff;
  font-size: 1.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #a064f3;
  transform: scale(1.2);
}

/* LADO DIREITO */
.right-content {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FOTO CENTRAL */
.circle-rotate {
  position: relative;
  width: 300px;   /* Aumentado */
  height: 300px;  /* Aumentado */
  border-radius: 50%;
  background: radial-gradient(circle, #5e2b97, #2c1a4d 80%);
  box-shadow: 0 0 30px #a064f3;
  z-index: 3;
  overflow: hidden;
}


.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid plum;
}

/* ORBITA DE ÍCONES */
.orbit-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-ring 25s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.orbit-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #1e1a2b;
  border-radius: 50%;
  border: 2px solid #a064f3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(160, 100, 243, 0.4);
}
.orbit-icon img {
  width: 26px;
  height: 26px;
}


/* Distribuição circular dos ícones */
.orbit-icon:nth-child(1) { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.orbit-icon:nth-child(2) { top: 18%; left: 82%; transform: translate(-50%, -50%); }
.orbit-icon:nth-child(3) { top: 50%; left: 100%; transform: translate(-50%, -50%); }
.orbit-icon:nth-child(4) { top: 82%; left: 82%; transform: translate(-50%, -50%); }
.orbit-icon:nth-child(5) { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.orbit-icon:nth-child(6) { top: 82%; left: 18%; transform: translate(-50%, -50%); }
.orbit-icon:nth-child(7) { top: 50%; left: 0%; transform: translate(-50%, -50%); }
.orbit-icon:nth-child(8) { top: 18%; left: 18%; transform: translate(-50%, -50%); }

@keyframes rotate-ring {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.sobre {
  padding: 60px 20px;
  background-color: #0f0e17;
  color: #fff;
  text-align: center;
}

.titulo {
  font-size: 32px;
  color: #a064f3; /* roxo */
  margin-bottom: 30px;
}

.cards-sobre {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.card {
  background-color: #1a1826;
  border: 1px solid #a064f3;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(160, 100, 243, 0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(160, 100, 243, 0.4);
}

.card h3 {
  color: #a064f3;
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.habilidades {
  text-align: center;
  margin-top: 100px;
}

.habilidades h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #a064f3;
}

.habilidades-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.habilidades-grid .icon img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.habilidades-grid .icon img:hover {
  transform: scale(1.2);
}
