/* Fonte global */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: #f9f9f9;
}

/* Header */
header {
    background: linear-gradient(135deg, #0073e6, #00aaff);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

header .profile-picture {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    border: 4px solid #fff;
    margin-bottom: 1rem;
}

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

header .subtitle {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Seções */
section {
    margin: 2rem 0;
}

h2 {
    font-size: 1.8rem;
    color: #0073e6;
    border-bottom: 2px solid #0073e6;
    display: inline-block;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Skills */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill {
    flex: 1 1 45%;
    background: #e7f3ff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skill h3 {
    margin: 0;
    color: #0073e6;
}

/* Experiência */
.job {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job h3 {
    margin: 0;
    font-size: 1.2rem;
}

.job span {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Contato */
.contact-info p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.contact-info a {
    color: #0073e6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #0073e6;
    color: #fff;
    margin-top: 2rem;
}
.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Torna a foto redonda */
    border: 4px solid #0073e6; /* Adiciona uma borda */
    margin-bottom: 1rem;
    object-fit: cover; /* Ajusta o corte da imagem */


/*ATUALIZAÇÂO DO MEU SITE*/

}.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 20px;
  }
  
  .profile-picture {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 1.1em;
    color: #ffffff;
  }
  
  .nav-menu {
    margin-top: 30px;
  }
  
  .nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s;
  }
  
  .nav-menu ul li a:hover {
    background: #eaeaea;
  }
  
  .btn {
    background-color: #007BFF;
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 6px;
  }


  main h2 {
    color: #0073e6;
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  
  main p {
    margin-top: 0.5rem;
    font-size: 1rem;
  }


  footer a {
    color: #fff;
    text-decoration: underline;
  }
  
  footer a:hover {
    text-decoration: none;
  }
