/* ======== VARIÁVEIS DE TEMA ======== */
:root {
  --bg: linear-gradient(135deg, #1c002b, #3a007a);
  --texto: #fff;
  --card: rgba(255, 255, 255, 0.1);
  --destaque: #a066ff;
}

body.light-mode {
  --bg: linear-gradient(135deg, #f6f6ff, #d3c9ff);
  --texto: #1c002b;
  --card: rgba(0, 0, 0, 0.05);
  --destaque: #5a00a5;
}

/* ======== GERAL ======== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--texto);
  text-align: center;
  min-height: 100vh;
  transition: background  0.8s, color 0.8s;
}

h1, h2, h3, p {
  transition: color 0.3s;
}

/* ======== CABEÇALHO ======== */
.header {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative
}

.logo {
  width: 100px;
  border-radius: 50%;
  box-shadow: 0 0 15px #8b33ff;
  transition: transform 0.5s ease;
}

.logo:hover {
  transform: rotate(10deg) scale(1.1);
}

/* Brilho pulsante */
.pulsar {
  animation: pulsar 3s infinite;
}

@keyframes pulsar {
  0% { box-shadow: 0 0 10px #8b33ff; }
  50% { box-shadow: 0 0 25px #c58aff; }
  100% { box-shadow: 0 0 10px #8b33ff; }
}

/* Botão de tema */
#toggleTheme {
  position: absolute;
  right: 30px;
  top: 30px;
  background: transparent;
  border: 2px solid var(--destaque);
  color: var(--texto);
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1em;
  transition: all 0.3s;
}

#toggleTheme:hover {
  background: var(--destaque);
  color: #fff;
}

/* ======== MENU ======== */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.menu a {
  color: var(--texto);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s;
}

.menu a:hover {
  color: var(--destaque);
}

/* ======== CONTEÚDO ======== */
.conteudo {
  padding: 50px 20px;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

/* ======== PROJETOS ======== */
.projetos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: var(--card);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 0 10px var(--destaque);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hover-zoom:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px var(--destaque);
}

/* ======== FOOTER ======== */
footer {
  margin-top: 40px;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
  color: #ccc;
}

footer a {
  color: var(--destaque);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ======== ANIMAÇÕES ======== */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ========== HEADER PRINCIPAL ========== */
.site-header {
  display: flex;
  align-items: center;            /* alinha verticalmente */
  justify-content: space-between; /* logo à esquerda, menu à direita */
  padding: 14px 28px;
  gap: 20px;
  background: rgba(0,0,0,0.18);
  position: relative;
  z-index: 10;
}

/* grupo esquerdo: logo + título */
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* contêiner circular fixo para a imagem (controla o tamanho) */
.logo-wrap {
  width: 80px;        /* altere aqui para aumentar/diminuir o logo */
  height: 80px;       /* manter quadrado para borda circular */
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 0 18px var(--brilho);
  flex: 0 0 auto;     /* evita encolher */
}

/* imagem dentro do círculo — usa object-fit para não distorcer */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* garante que preencha o círculo sem distorcer */
  display: block;
}

/* título ao lado do logo */
.site-title h1 {
  margin: 0;
  font-size: 28px;         /* ajuste se quiser maior/menor */
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--texto);
  font-weight: 700;
}

/* opcional: subtítulo pequeno abaixo do h1 */
.subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* menu alinhado à direita, em linha reta */
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.header-nav a {
  color: var(--texto);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--destaque);
}

/* ====== RESPOSNSIVIDADE ====== */
@media (max-width: 880px) {
  .site-header {
    padding: 12px 18px;
  }
  .logo-wrap {
    width: 64px;
    height: 64px;
  }
  .site-title h1 {
    font-size: 22px;
  }
  .header-nav ul {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  /* Para telas pequenas, empilha logo/título e menu (melhor legibilidade) */
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .header-nav ul {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
}

