:root {
    --dark-1: #0a0a0a;
    --dark-2: #121212;
    --dark-3: #1a1a1a;
    --accent: #00ff88;
    --accent-dark: #00c968;
    --text: #e0e0e0;
    --text-secondary: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--dark-1);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 4px;
}

/* Header futurista */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {

    margin-top: 1%;
    max-width: 10%;
}

.logo span {
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent);
    transition: width 0.3s;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section com efeito glitch */
.hero {
    margin-top: 5%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./Fotos/Capa_inovacao.jpeg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 65%,
        rgba(0, 255, 136, 0.1) 65%,
        transparent 70%
    );
    background-size: 5px 5px;
    pointer-events: none;
    animation: glitch 2s infinite linear;
}

@keyframes glitch {
    0% { background-position: 0 0; }
    100% { background-position: 5px 5px; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark-1);
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    margin-left: 1rem;
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

/* Seções */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 5rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.section-title p {
    color: var(--text-secondary);
    max-width: 700px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent);
    bottom: -1.5rem;
    left: 0;
}

/* Grid de serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), transparent);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 136, 0.2);
}

.service-icon {
    padding: 2rem;
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent);
    position: relative;
}

.service-image{
    padding: 20px;
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent);
    position: relative;
    max-width: 100%
}

.service-content {
    padding: 2rem;
    position: relative;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Seção de programas */
.programs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--dark-2);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.program-header {
    padding: 1.5rem;
    background: var(--dark-3);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.program-header h3 {
    font-size: 1.4rem;
    color: var(--accent);
}

.program-body {
    padding: 1.5rem;
}

.program-body ul {
    list-style: none;
    margin: 1.5rem 0;
}

.program-body ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.program-body ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent);
}    
/* founders*/
#founders {
    padding: 80px 0;
    text-align: center;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.founder-card {
    background: var(--dark-2);
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    max-width: 100%;
    transition: transform 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-image {
    width: 100%;
    margin: 20px auto 0px;
    
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    font-size: 28px;
    color: #fff;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.founder-bio {
    font-size: 16px;
    color: var(--gray-1);
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .founders-grid {
        flex-direction: column;
        align-items: center;
    }
    .founder-card {
        width: 90%;
    }
}
/* Seção de parceiros */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.0rem;
    background: var(--dark-2);
    border-radius: 8px;
    transition: all 0.3s;
    /* filter: grayscale(100%) brightness(2); */
    /* opacity: 0.7; */
}

/* .partner-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    background: var(--dark-3);
} */

.partner-logo img {
    max-width: 100%;
    max-height: 100px;
    border-radius: 4px;
}

/* Formulário de contato */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.contact-details {
    margin-top: 2rem;
}

.contact-details div {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-details i {
    margin-right: 1rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-2);
    color: var(--text);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark-1);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--dark-2);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark-2);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--accent);
    bottom: 0;
    left: 0;
}

.footer-col ul {
    list-style: none;
}
pg
.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-1);
        flex-direction: column;
        padding: 2rem;
        transition: all 0.3s;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
