/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilos Globais */
  body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #121212, #1e1e1e);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* Particles.js Background */
  #particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  /* Loader */
  .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader {
    width: 40px;
    height: 40px;
    border: 5px solid #08a88a;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .hero-content {
    max-width: 800px;
    padding: 30px;
    backdrop-filter: blur(15px);
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    position: relative;
  }
  
  .profile-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #08a88a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #08a88a;
    text-shadow: 0 0 15px rgba(8,168,138,0.5);
  }
  
  .hero-description {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  
  /* Navbar */
  .navbar {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 20px;
  }
  
  .navbar ul li a:hover {
    background-color: #08a88a;
  }
  
  /* Content Sections */
  .content-section {
    min-height: 100vh;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .content-section h2 {
    color: #08a88a;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .content-section p {
    font-size: 1.1rem;
    max-width: 700px;
  }
  
  /* Projetos e Galeria */
  .projects-container,
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .project, .gallery-container img {
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .project:hover, .gallery-container img:hover {
    transform: scale(1.05);
  }
  
  .gallery-container img {
    width: 320px;
    height: 210px;
    object-fit: cover;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-content {
    background: #181818;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    max-width: 500px;
    width: 90%;
  }
  
  .close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
  }
  
  /* Botões melhorados */
  button, .open-modal, .toggle-mode {
    background: linear-gradient(135deg, #08a88a, #06c7a1);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s;
  }
  
  button:hover, .open-modal:hover, .toggle-mode:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8,168,138,0.4);
  }
  
  .toggle-mode {
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  
  /* Tema claro */
  body.light-mode {
    background: #f5f5f5;
    color: #333;
  }
  
  body.light-mode .navbar,
  body.light-mode .hero-content,
  body.light-mode .content-section {
    background: rgba(255,255,255,0.8);
    color: #333;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .navbar ul { flex-direction: column; }
  }
  
  /* Botão Tema Ícone */
  .toggle-mode {
    padding: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #08a88a, #06c7a1);
    color: #fff;
    cursor: pointer;
    border: none;
    position: fixed;
    top: 20px;
    right: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 100;
}

.toggle-mode:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8,168,138,0.4);
}

  /* Sobre Mim - Imagem Pessoal */
.about-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #08a88a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  }
  
  /* Sobre Mim - Texto Descrição */
  #about p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto;
  }
  
  /* Ícones de Habilidades */
  .skills-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 2.5rem;
    justify-content: center;
    color: #08a88a;
  }
  
  .skills-icons i:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
  }
  
  /* Linha do Tempo Profissional */
  .timeline {
    margin-top: 40px;
    text-align: left;
    max-width: 600px;
  }
  
  .timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #08a88a;
    border-radius: 50%;
  }
  
  .timeline-item h4 {
    color: #08a88a;
    margin-bottom: 5px;
  }
  
  /* Botão Call to Action (CTA) */
  .cta-button {
    margin-top: 25px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #08a88a, #06c7a1);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
    display: inline-block;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8,168,138,0.4);
  }
  /* Projetos em Destaque - Container */
.projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
  }
  
  /* Cards de Projetos */
  .project {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .project:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.4);
  }
  
  .project img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .project h3 {
    margin-bottom: 10px;
    color: #08a88a;
  }
  
  .project p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .tech-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
    color: #08a88a;
    font-size: 1.5rem;
  }
  
  .btn-project {
    display: inline-block;
    padding: 8px 20px;
    background: #08a88a;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-project:hover {
    background: #06c7a1;
  }
  
  /* Filtro por Tecnologia */
  .project-filter {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  
  .filter-btn {
    padding: 8px 18px;
    background: transparent;
    color: #08a88a;
    border: 2px solid #08a88a;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    background: #08a88a;
    color: #fff;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .project {
      max-width: 100%;
      margin-bottom: 20px;
    }
    .project-filter {
      flex-wrap: wrap;
    }
  }
  
  /* Vídeos Demonstrativos dos Projetos */
.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .video-item {
    max-width: 560px;
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  }
  
  .video-item iframe {
    border-radius: 10px;
    margin-bottom: 15px;
    width: 100%;
    height: 315px;
  }
  
  .video-item h3 {
    color: #08a88a;
    margin-bottom: 10px;
  }
  
  .video-item p {
    font-size: 0.95rem;
  }
  
  /* Seção "Vamos Conversar!" */
#contact {
    padding: 50px 20px;
    text-align: center;
    background: rgba(255,255,255,0.03);
  }
  
  /* Formulário de Contato */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    padding: 10px 20px;
    background: #08a88a;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  .submit-btn:hover {
    background: #06c7a1;
    transform: translateY(-3px);
  }
  
  /* Ícones Sociais */
  .social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    font-size: 2rem;
  }
  
  .social-icons a {
    color: #08a88a;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    color: #06c7a1;
    transform: translateY(-5px);
  }
  
  /* Informações Adicionais */
  .contact-info {
    margin-top: 30px;
    font-size: 1rem;
    color: #ccc;
  }
  
  .contact-info p {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 8px;
    color: #08a88a;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .social-icons {
      flex-wrap: wrap;
    }
  }
  