/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* Seção do Perfil */
  .profile-section {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
  }
  
  .profile-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ddd;
  }
  
  .profile-info {
    text-align: left;
  }
  
  .profile-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .profile-bio {
    font-size: 1rem;
    color: #666;
  }

  /* Botões de redes sociais */
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .social-link {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-link:hover {
    color: #0077b5; /* Cor do LinkedIn */
    transform: scale(1.2);
  }
  
  .social-link .fa-instagram:hover {
    color: #e4405f; /* Cor do Instagram */
  }
  
  .social-link .fa-whatsapp:hover {
    color: #25d366; /* Cor do WhatsApp */
  }
  
  /* Galeria de Fotos */
  .gallery-section {
    padding: 2rem;
  }
  
  .gallery-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .gallery-item {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
/* Estilo do botão do Google Drive */
.drive-link {
    text-align: center;
    margin: 2rem 0;
}

.drive-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #6A0DAD; /* Cor principal roxa */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.drive-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.drive-button:hover {
    background-color: #5A0A96; /* Cor mais escura no hover */
    transform: translateY(-2px); /* Efeito de levantar */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.drive-button:active {
    transform: translateY(0); /* Efeito de pressionar */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


  /* Responsividade */
  @media (max-width: 768px) {
    .profile-container {
      flex-direction: column;
      text-align: center;
    }
  
    .profile-info {
      text-align: center;
    }
  
    .gallery-container {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  }

  /* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
  }
  
  .lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
  }
  
  .lightbox-content p {
    color: #fff;
    margin-top: 1rem;
  }