html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: black; /* cor de destaque */
}

/* ===== TOPO ===== */
.topo {
  background: rgba(95, 44, 130, 0.6);
  backdrop-filter: blur(15px);
  display: flex; /* layout flexível */
  flex-direction: column; /*      alinhamento vertical */
  align-items: center; /*    centraliza horizontalmente */
  justify-content: center; /*   centraliza verticalmente */
  text-align: center; /*  centraliza texto */
  gap: 20px; /* espaçamento entre elementos */
  padding: 40px; /* espaçamento interno */
  background: linear-gradient(135deg, #5f2c82, #49a09d); /*  gradiente de fundo */
  color: black; /*  cor de destaque */
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* sombra para profundidade */
}


.titulo-topo {
  color: #0f0f0f;
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: bold;
  text-transform: uppercase;

  /* ✨ Glow roxo suave */
  text-shadow: 
    0 0 5px rgba(209,140,240,0.6),
    0 0 10px rgba(209,140,240,0.4),
    0 0 20px rgba(209,140,240,0.2);

  transition: all 0.3s ease;
}

.titulo-topo:hover {
  text-shadow: 
    0 0 8px rgba(209,140,240,0.9),
    0 0 20px rgba(209,140,240,0.7),
    0 0 30px rgba(209,140,240,0.5);

  transform: scale(1.03);
}

.foto {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;

  border: 3px solid #111;

  /* sombra elegante */
  box-shadow: 
    0 0 10px rgba(0,0,0,0.8),
    0 0 20px rgba(209,140,240,0.3);
}

/* ===== BOTÕES ===== */
.botoes {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap; /* 🚀 impede quebra */
  justify-content: center;
}

.botao {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid #333;
  transition: all 0.3s ease;
}

.botao i {
  font-size: 26px;
}

/* CORES DOS BOTÕES */
.email { background: #444; }
.whatsapp { background: #25D366; }
.linkedin { background: #0077b5; }
.pdf { background: #e63946; }

.botao:hover {
  background: #d18cf0;
  color: #000;
  transform: scale(1.08);
}

/* ===== CONTEÚDO ===== */
main {
  padding: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

section {
  margin: 30px auto;
  padding: 30px;
  max-width: 800px;

  /* VIDRO ✨ */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: 0 8px 30px rgba(0,0,0,0.6);

  color: #fff;
  transition: all 0.3s ease;
}

section p,
section li {
  color: #eee;
}

section:hover {
  transform: translateY(-5px);

  box-shadow: 
    0 10px 40px rgba(209,140,240,0.3),
    0 0 20px rgba(209,140,240,0.2);

  border: 1px solid rgba(209,140,240,0.4);
}

h3 {
  color: #d18cf0;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 24px;
}

/* ===== VÍDEO ===== */
.video-apresentacao {
  display: flex;
  justify-content: center;
}

.video-apresentacao iframe {
  width: 100%;
  max-width: 350px;
  height: 600px;
  border-radius: 25px;
  border: none;
  box-shadow: 0 10px 25px rgba(209,140,240,0.4);
  margin: 20px auto;
}

/* ===== TEXTO ===== */
.texto {
  font-size: 12px;
  margin-top: 4px;
}

/* ===== RODAPÉ ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #0d0d0d;
  color: #888;
  font-size: 14px;
}
.menu-lateral {
  position: fixed;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 10px;

  z-index: 9999;
}

/* LINKS */
.menu-lateral a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  border-radius: 12px;

  background: #1e1e1e;
  color: #d18cf0;
  text-decoration: none;

  font-size: 13px;

  width: fit-content;       /* tamanho automático */
  max-width: 180px;         /* não cresce demais */
  min-width: 130px;         /* mantém padrão */

  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

/* Ícone */
.menu-lateral a span:first-child {
  font-size: 16px;
  width: 20px; /* alinhamento fixo dos ícones */
  text-align: center;
}

/* Texto */
.menu-lateral a span:last-child {
  white-space: nowrap;
}

/* Hover */
.menu-lateral a:hover {
  background: #d18cf0;
  color: #000;
  transform: translateX(6px);
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 768px) {

  .botoes {
  gap: 6px;
}

.botao {
  width: 65px;
  height: 65px;
}

.botao i {
  font-size: 16px;
}

.texto {
  font-size: 9px;
}
  
  body {
  overflow-x: hidden;
}
  
  /* MENU LATERAL VIRA TOPO */
@media (max-width: 768px) {

  .menu-lateral {
    position: fixed; /* continua acompanhando */
    top: auto;
    bottom: 20px; /* 👇 vira menu inferior */
    left: 50%;
    transform: translateX(-50%);
    
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    
    background: rgba(30,30,30,0.8);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 20px;
  }

  .menu-lateral a {
    font-size: 11px;
    padding: 6px 8px;
    min-width: auto;
  }

  .menu-lateral a span:last-child {
    display: none; /* 👀 só ícones no mobile */
  }
}

  /* TOPO MAIS COMPACTO */
  .topo {
    padding: 20px;
  }

  .titulo-topo {
    font-size: 24px;
    letter-spacing: 1px;
  }

  /* FOTO MENOR */
  .foto {
    width: 110px;
    height: 110px;
  }

  /* BOTÕES MENORES */
  .botao {
    width: 80px;
    height: 80px;
  }

  .botao i {
    font-size: 20px;
  }

  .texto {
    font-size: 10px;
  }

  /* CONTEÚDO */
  main {
    padding: 15px;
  }

  section {
    padding: 20px;
    margin: 20px 10px;
  }

  h3 {
    font-size: 20px;
  }

  /* VÍDEO AJUSTADO */
  .video-apresentacao iframe {
    height: 400px;
    max-width: 100%;
  }
}
