 h1 {
        color: #26ff00;
      }
      h2 {
        color: #f82d97;
      }
      h3 {
        color: #e9ff88;
      }
      h4 {
        color: #01c4e7;
      }
      h5{
        color: #652ec7;
      }
      h6{
        color: #fec859;
      }
      .neon-cyan {
        color: #26ff00  ;
      }
      .neon-purple {
        color: #c586c0;
      }
      .neon-yellow {
        color: #dcdcaa;
      }
      .neon-blue {
        color: #9cdcfe;
      }
      .bg-vscode-panel {
        background-color: #1e1e1e;
      }


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

body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Header */
.header {
    width: 100%;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #0d0d0d;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.btn-empresa {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 20px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
}

.hero-text .subtitle {
    font-family: 'Poppins', sans-serif;
    color: #007bff;
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
}

.hero-text .description {
    font-size: 18px;
    color: #ccc;
    margin-top: 20px;
    line-height: 1.5;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
}

.btn-youtube i {
    margin-right: 10px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Content Sections */
.content-section, .projects-section, .footer-bottom {
    margin-bottom: 60px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.content-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.content-card .card-type {
    font-size: 12px;
    color: #999;
}

.content-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.3;
}

.content-card .card-date {
    font-size: 12px;
    color: #666;
}

.video-card {
    position: relative;
    background-color: #1f1f1f;
}

.video-label {
    color: #ff0000;
}

.course-card {
    position: relative;
    background-color: #311b92;
    overflow: hidden;
}

.course-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
}

/* Projects Section */
.projects-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.project-icon {
    font-size: 24px;
    font-weight: 700;
}

.hs {
    background-color: #4CAF50;
}

.ideathon {
    background-color: #673AB7;
    color: #ffffff;
    font-size: 24px;
}

.btn-online-courses {
    display: inline-flex;
    align-items: center;
    background-color: #007bff;
    color: #ffffff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 10px;
}

.btn-online-courses i {
    margin-right: 8px;
}

.captain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.captain-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.captain-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.captain-card p {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.help-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.help-list span {
    font-size: 14px;
    color: #999;
    margin-right: 15px;
}

.footer-links p, .footer-links a {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    margin-left: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        gap: 15px;
        margin-bottom: 10px;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text .subtitle {
        font-size: 20px;
    }

    .content-grid, .project-grid, .captain-grid {
        grid-template-columns: 1fr;
    }

    .projects-section {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 15px;
    }
}
