
     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: #fff;
      background: #1e1e2f;
      line-height: 1.6;
    }

    section {
      min-height: 100vh;
      padding: 80px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .intro {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
      color: #f1f1f1;
      position: relative;
      overflow: hidden;
    }

    .intro::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(56,176,0,0.1) 0%, rgba(0,0,0,0) 70%);
      z-index: 0;
    }

    .intro-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .intro-text {
      max-width: 55%;
    }

    .intro-text h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      background: linear-gradient(to right, #38b000, #4cc9f0);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .intro-text p {
      font-size: 1.2rem;
      margin-top: 20px;
      font-weight: 300;
    }

    .intro-img {
      width: 40%;
      max-width: 400px;
      position: relative;
    }

    .intro-img img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.4);
      transition: transform 0.3s ease;
      border: 5px solid rgba(255,255,255,0.1);
    }

    .intro-img img:hover {
      transform: scale(1.03);
    }

    .scroll-down {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.5rem;
      color: rgba(255,255,255,0.7);
      animation: bounce 2s infinite;
      cursor: pointer;
      z-index: 2;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      50% {
        transform: translateX(-50%) translateY(10px);
      }
    }

    .section-dark {
      background: #0f0f1a;
    }

    .section-light {
      background: #f8f9fa;
      color: #111;
    }

    .highlight {
      color: #38b000;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, #38b000, #4cc9f0);
      border-radius: 2px;
    }

    /* Sobre mim */
    .about-content {
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }

    .about-text {
      flex: 1;
    }

    .about-text p {
      margin-bottom: 20px;
      font-size: 1.1rem;
    }

    .personal-info {
      background: rgba(30, 30, 47, 0.8);
      border-radius: 15px;
      padding: 30px;
      width: 350px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .personal-info h3 {
      margin-bottom: 20px;
      font-size: 1.5rem;
      color: #38b000;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .info-item i {
      width: 30px;
      color: #38b000;
      font-size: 1.1rem;
    }

    .info-item a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .info-item a:hover {
      color: #38b000;
    }

    /* Experiências */
    .experience-container {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
    }

    .experience-item {
      background: rgba(30, 30, 47, 0.8);
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 4px solid #38b000;
    }

    .experience-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }

    .experience-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .company-logo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #2a2a3a;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      color: #38b000;
      font-size: 1.5rem;
    }

    .experience-title {
      flex: 1;
    }

    .experience-title h3 {
      font-size: 1.4rem;
      margin-bottom: 5px;
    }

    .experience-title p {
      color: #aaa;
      font-size: 0.9rem;
    }

    .experience-period {
      background: rgba(56, 176, 0, 0.1);
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.9rem;
      color: #38b000;
    }

    .experience-description {
      margin-top: 20px;
      font-weight: 300;
    }

    .experience-skills {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .skill-tag {
      background: rgba(56, 176, 0, 0.1);
      color: #38b000;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
    }

    /* Responsividade */
    @media (max-width: 992px) {
      section {
        flex-direction: column;
        padding: 60px 5%;
        text-align: center;
      }

      .intro-text, .intro-img {
        max-width: 100%;
        width: 100%;
      }

      .intro-img {
        margin-top: 40px;
      }

      .about-content {
        flex-direction: column;
      }

      .personal-info {
        width: 100%;
        margin-top: 30px;
      }

      h2::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .experience-header {
        flex-direction: column;
        text-align: center;
      }

      .company-logo {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .experience-period {
        margin-top: 10px;
      }
    }

    @media (max-width: 768px) {
      .intro-text h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 2rem;
      }
    }

    /* Seções de Projetos */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .project-card {
    background: rgba(30, 30, 47, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  }
  
  .project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.05);
  }
  
  .project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #38b000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .project-content {
    padding: 25px;
  }
  
  .project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #38b000;
  }
  
  .project-content p {
    margin-bottom: 20px;
    font-weight: 300;
  }
  
  .project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .project-tech span {
    background: rgba(56, 176, 0, 0.1);
    color: #38b000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
  }
  
  .project-link {
    display: inline-block;
    padding: 10px 20px;
    background: #38b000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 600;
  }
  
  .project-link:hover {
    background: #2d8c00;
  }
  
  /* Ajustes para modo light */
  .section-light .project-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .section-light .project-content h3 {
    color: #2d8c00;
  }
  
  .section-light .project-tech span {
    background: rgba(56, 176, 0, 0.15);
  }
  
  @media (max-width: 768px) {
    .projects-container {
      grid-template-columns: 1fr;
    }
    
    .project-image {
      height: 200px;
    }
  }
