/* CSS  personal portfolio website */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

header {
    background: #060706;
    padding: 20px;
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header p {
    margin-top: 5px;
    font-size: 1.1rem;
}

section {
    padding: 40px 20px;
}

.sobre, .servicos, .projetos {
    background: #222;
    margin: 20px auto;
    border-radius: 10px;
    padding: 20px;
    max-width: 900px;
}

.servicos {
  position: fixed;
  top: 80px;
  right: -240px;     
  width: 250px;
  max-height: 70vh;
  overflow-y: auto;
  background: #222;
  padding: 15px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 10px rgba(25, 118, 210, 0.6);
  z-index: 1000;
  transition: right 0.3s ease;
  cursor: pointer;
}

.servicos:hover {
  right: 0;         
}

.servicos ul {
    list-style: none;
    padding: 0;
}

.servicos li {
    background: #333;
    margin: 8px 0;
    padding: 10px;
    border-radius: 6px;
}

.projeto-card {
    background: #333;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    text-align: left;
}

.projeto-card img {
    width: 100%;
    border-radius: 16px;
}

.btn {
    background: #1976d2;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background: #125a9c;
}

footer {
    background: #111;
    padding: 15px;
    font-size: 0.9rem;
    color: #aaa;
}

@media (max-width: 600px) {
    .profile-img {
        width: 200px;
        height: 200px;
        margin-bottom: 8px;
    }

   
}