/* Configuração das fontes com Tailwind */
body {
  font-family: 'Inter', sans-serif;
  background-color: #0c0a09; /* Fundo base escuro */
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Animação do fundo gradiente (Aurora Effect) */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px); /* Aumenta o desfoque para um efeito mais suave */
  opacity: 0.4; /* Reduz a opacidade para sutileza */
}

.blob1 {
  width: 400px;
  height: 400px;
  background: #4F46E5; /* Indigo */
  animation: move1 20s infinite alternate;
}
.blob2 {
  width: 500px;
  height: 500px;
  background: #0077FF; /* Azul Brilhante */
  animation: move2 25s infinite alternate;
}
.blob3 {
  width: 350px;
  height: 350px;
  background: #7E22CE; /* Roxo */
  animation: move3 15s infinite alternate;
}

@keyframes move1 {
  from { transform: translate(-10vw, -10vh) rotate(-90deg); }
  to { transform: translate(80vw, 90vh) rotate(90deg); }
}
@keyframes move2 {
  from { transform: translate(20vw, 80vh); }
  to { transform: translate(90vw, -20vh); }
}
@keyframes move3 {
  from { transform: translate(70vw, 10vh) rotate(45deg); }
  to { transform: translate(-20vw, 70vh) rotate(-45deg); }
}

/* Estilização da barra de rolagem */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(79, 70, 229, 0.5);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(79, 70, 229, 0.8);
}

/* Efeito de foco no modal com CSS puro */
#modal-toggle:checked ~ .secret-section, #skill-modal-toggle:checked ~ #skill-modal {
    display: flex;
}

/* Efeitos holográficos */
.holographic-card {
  position: relative;
  overflow: hidden;
  --glow-opacity: 0;
}
.holographic-card::before, .holographic-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
/* Brilho interativo que segue o mouse */
.holographic-card::before {
  background: radial-gradient(
    350px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.15),
    transparent 40%
  );
  opacity: var(--glow-opacity);
  transition: opacity 0.2s;
}
/* Textura de ruído e scanlines */
.holographic-card::after {
  background: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.2;
}
.interactive-item {
    cursor: pointer;
}
.interactive-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.interactive-item:hover .interactive-icon {
    opacity: 1;
}

/* Estilos do Modal de Chat */
#skill-modal .modal-content {
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}
#skill-modal-body {
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Bolhas de conversa */
.chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 1.25rem;
  max-width: 80%;
  line-height: 1.6;
  word-wrap: break-word;
}
.user-bubble {
  background-color: #4f46e5;
  color: white;
  border-bottom-right-radius: 0.25rem;
}
.ai-bubble {
  background: rgba(42, 50, 78, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4d4d8;
  border-bottom-left-radius: 0.25rem;
}

/* Indicador de "Digitando" */
.typing-indicator span {
  height: 8px;
  width: 8px;
  background-color: #a5b4fc;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

/* Chips de Sugestão */
.suggestion-chip {
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: rgba(79, 70, 229, 0.2);
  color: #a5b4fc;
  border: 1px solid rgba(79, 70, 229, 0.4);
  transition: all 0.2s ease-in-out;
}
.suggestion-chip:hover {
  background-color: rgba(79, 70, 229, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

/* Estilos adicionais para as seções */
.skill-tag { 
  background-color: rgba(79, 70, 229, 0.2); 
  color: #a5b4fc; padding: 6px 14px; 
  border-radius: 9999px; 
  font-weight: 500; 
  font-size: 0.875rem; 
  border: 1px solid rgba(79, 70, 229, 0.4); 
  transition: all 0.2s; 
}
.skill-tag:hover { 
  transform: translateY(-2px); 
  background-color: rgba(79, 70, 229, 0.4); 
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3); 
}

.experience-item { 
  position: relative; 
  padding-left: 25px; /* Aumentado para mais espaçamento */
  transition: background-color 0.2s; 
  border-radius: 8px; 
  padding: 4px 0;
}
.experience-item:hover { 
  background-color: rgba(79, 70, 229, 0.1); 
}
.experience-item::before { 
  content: ''; 
  position: absolute; 
  left: -18px; /* <-- AJUSTE FINAL PARA ALINHAMENTO PRECISO */
  top: 16px; /* <-- AJUSTE FINAL PARA ALINHAMENTO PRECISO */
  transform: translateY(-50%); 
  width: 14px; 
  height: 14px; 
  background-color: #93c5fd; 
  border-radius: 50%; 
  border: 3px solid #1c1917; 
  box-shadow: 0 0 5px #93c5fd; 
  transition: transform 0.2s; 
}
.experience-item:hover::before { 
  transform: translateY(-50%) scale(1.2); 
}

