body {
      background-color: #111;
      color: #fff;
      font-family: 'Segoe UI', sans-serif;
      scroll-behavior: smooth;
    }

    .sidebar {
      width: 250px;
      height: 100vh;
      background-color: #000;
      position: fixed;
      padding-top: 2rem;
    }

    .sidebar a {
      color: #bbb;
      display: block;
      padding: 0.5rem 1rem;
      text-decoration: none;
    }

    .sidebar a:hover,
    .sidebar a.active {
      color: #0ff;
    }

    .logo {
      font-size: 3rem;
      color: #f05;
      font-weight: bold;
    }

    .content {
      margin-left: 250px;
      padding: 4rem 2rem;
    }

    .highlight {
      color: #0ff;
    }

    .btn-custom {
      border: 1px solid #0ff;
      color: #0ff;
    }
    .btn-custom-projeto {
        background: #f05;
        color: #fff;
    }

    .btn-custom-projeto:hover {
        background-color: rgba(255, 0, 85, 0.795);
        color: #fff;
    }

    .btn-custom:hover {
      background-color: #0ff;
      color: #000;
    }

    .sound-toggle {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #f05;
      font-weight: bold;
    }

    .awards {
      position: absolute;
      top: 50%;
      right: -30px;
      transform: rotate(45deg);
      background: #222;
      color: #fff;
      padding: 0.2rem 1rem;
      font-size: 0.8rem;
    }

    .scroll-text {
      position: absolute;
      bottom: 20px;
      writing-mode: vertical-lr;
      text-orientation: mixed;
      font-size: 0.8rem;
      color: #888;
      cursor: pointer;
    }

    .scroll-left {
      left: 10px;
    }

    .scroll-right {
      right: 10px;
    }

    .section {
        padding: 100px 0;
        border-bottom: 1px solid #333;
    }
    .tech-card {

        width: 110px;
    }

    
    
    #Contato h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #fff;
    }


#Contato p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

#Contato a {
  color: #0ff;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

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


#Contato i {
  margin-right: 0.5rem;
  color: #fff;
  font-size: 1.2rem;
  vertical-align: middle;
}
#Sobre p {
  width: 100%;    
  max-width: 100%;       
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0;
  text-align: left;        
  color: #ddd;
}

a:hover {
  color: #ff6b6b;
  transition: color 0.3s ease;
}



/* {}Estilo responsivo opcional */
@media (max-width: 576px) {
  #Sobre p {
    width: 100%;
    padding: 0 0.5rem;
    font-size: 1rem;
    text-align: justify;
  }

  #Sobre h2 {
    font-size: 1.5rem;
  }
  #Contato {
    padding: 1.5rem 1rem;
  }

  #Contato h2 {
    font-size: 1.5rem;
  }

  #Contato p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .sua-classe {
    flex-direction: column;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1rem;
  }

  .sidebar nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .content {
    margin-left: 0;
    padding: 2rem 1rem;
  }

  .awards,
  .scroll-left,
  .scroll-right,
  .sound-toggle {
    display: none;
  }
}
/* RESPONSIVE */

/* ===== CARD DAS SEÇÕES ===== */
.section-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.section-card:hover {
  border-color: #dc3545;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
  transform: translateY(-2px);
}

/* ===== CABEÇALHO DAS SEÇÕES ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* ===== BOTÕES DE AÇÃO ===== */
.action-buttons {
  display: flex;
  gap: 8px;
}

.action-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #888;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.action-btn:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* ===== SEÇÃO DE FORMAÇÃO ACADÊMICA ===== */
.education-item {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.institution-logo {
  width: 48px;
  height: 48px;
  background: linear-gradient(45deg, #ffc107, #ff9800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
  flex-shrink: 0;
}

.alura-logo {
  background: linear-gradient(45deg, #dc3545, #c82333);
  color: #fff;
}

.education-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #fff;
}

.education-details .course {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.education-details .period {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.education-details .note {
  color: #999;
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== SEÇÃO DE RECOMENDAÇÕES ===== */
.recommendations-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 0;
  color: #888;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  margin-right: 24px;
  transition: color 0.2s ease;
}

.tab-btn:hover {
  color: #ccc;
}

.tab-btn.active {
  color: #28a745;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #28a745;
  border-radius: 1px;
}

/* ===== ITENS DE RECOMENDAÇÃO ===== */
.recommendation-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.recommender-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(45deg, #007bff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  flex-shrink: 0;
}

.maria-avatar {
  background: linear-gradient(45deg, #28a745, #1e7e34);
}

.recommendation-content h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #fff;
}

.connection-degree {
  color: #888;
  font-size: 0.8rem;
  font-weight: 400;
}

.recommendation-content .title {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.recommendation-content .date {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.recommendation-content .text {
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    margin: 20px auto;
  }
  
  .section-card {
    padding: 20px;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .education-item,
  .recommendation-item {
    flex-direction: column;
    gap: 12px;
  }
  
  .institution-logo,
  .recommender-avatar {
    align-self: flex-start;
  }
  
  .recommendations-tabs {
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .tab-btn {
    white-space: nowrap;
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .action-buttons {
    align-self: flex-end;
  }
}
/* ===== FOTO DE PERFIL CIRCULAR ===== */

/* ===== ALTERNATIVA COM TAG IMG ===== */

.profile-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.profile-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover; /* Mantém proporção e corta se necessário */
  border: 3px solid #dc3545;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.profile-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
  border-color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  .profile-photo {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .profile-photo {
    width: 60px;
    height: 60px;
  }
}