* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #00c9a7;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding-top: 120px; /* Espaço para header fixo */
}   

.tech-header {
    background: linear-gradient(90deg, #000000, #3533CD); 
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.complemento-logo {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #f8fafc;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    color: #00c9a7;
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #f8fafc;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Transformação do hambúrguer em X */
.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #3533CD,#000000 );
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    padding-top: 120px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    color: #f8fafc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 20px;
    margin: 8px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav a:hover {
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

/* Overlay para fechar menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsividade */
@media (max-width: 1024px) {
    .tech-header {
        padding: 15px 30px;
    }
    
    .complemento-logo {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .nav-links a {
        margin: 0 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }

    .tech-header {
        padding: 15px 20px;
    }

    .logo-img {
        height: 60px;
    }

    .complemento-logo {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        padding-top: 90px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 74px;
    }

    .tech-header {
        padding: 12px 15px;
    }

    .logo-img {
        height: 50px;
    }

    .mobile-menu {
        width: 100%;
        padding-top: 74px;
    }

    .mobile-nav {
        padding: 30px 20px;
    }
}

/* Animações suaves */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a {
    animation: fadeIn 0.3s ease forwards;
}

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }

.sobre {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* .sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    z-index: 1;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.sobre-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.sobre-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #000000 , #3533CD);
    border-radius: 2px;
}

.sobre-header h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a202c;
    position: relative;
    letter-spacing: -0.02em;
}

.sobre-header .highlight {
    background: linear-gradient(90deg, #000000, #3533CD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.missao {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}

.sobre-text {
    text-align: left;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #475569;
    font-weight: 400;
}

.sobre-text p:first-child {
    font-size: 1.4rem;
    color: #1a202c;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.sobre-text p:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 30px;
    background: linear-gradient(90deg, #000000, #3533CD);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000, #3533CD);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e0;
}

.stat-number {          
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #000000, #3533CD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a202c;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #3533CD);
    border-radius: 2px;
}

.diferenciais-section {
    margin-bottom: 100px;
}

.diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.diferenciais li {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.diferenciais li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #000000, #3533CD);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.diferenciais li:hover::before {
    transform: scaleY(1);
}

.diferenciais li:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e0;
}

.diferenciais li i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(90deg, #000000, #3533CD);
    color: white;
    flex-shrink: 0;
}

.diferenciais li span {
    font-weight: 500;
    color: #374151;
    font-size: 1.05rem;
}

.valores-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 60px;
    border-radius: 24px;
    margin-bottom: 80px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.valores-grid {
    display: grid;      
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.valor-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.valor-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.valor-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #000000, #3533CD);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.valor-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.valor-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 600;
}

.valor-desc {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
}

.btn-sobre {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #000000, #3533CD);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-sobre:hover::before {
    left: 100%;
}

.btn-sobre:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .sobre {
        padding: 80px 0;
    }

    .sobre-header {
        margin-bottom: 60px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sobre-text {
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferenciais {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferenciais li {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .valores-section {
        padding: 50px 30px;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn-sobre {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .sobre-header {
        margin-bottom: 50px;
    }

    .missao {
        font-size: 1.1rem;
    }

    .diferenciais li {
        padding: 20px;
    }

    .valores-section {
        padding: 40px 20px;
    }
}

.footer {
    background: linear-gradient(90deg, #000000, #3533CD); 
    padding: 60px 0 20px;
    color: white;
    position: relative;
    clip-path: inset(0 100% 0 0);
    animation: revealFooter 1s ease forwards;
}

/* Efeito de revelar da esquerda para direita */
@keyframes revealFooter {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;                      
    padding: 0 20px;
}

/* Adicionando delay para cada seção do footer */
.footer-section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-30px);
    animation: revealSection 0.5s ease forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.6s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.9s;
}

.footer-section:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes revealSection {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute; 
    left: 0;
    bottom: -8px;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c8b050, transparent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.5s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    gap: 10px;      
    margin-bottom: 20px;
}

.newsletter-form input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    flex-grow: 1;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #3533CD;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #2a28a3;
}

/* Cores das redes sociais ao passar o mouse */
.social-media a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-media a:hover {
    transform: translateY(-3px);
}

/* Facebook */
.social-media a:nth-child(1):hover {
    background-color: #1877F2;
}

/* Instagram */
.social-media a:nth-child(2):hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

/* LinkedIn */
.social-media a:nth-child(3):hover {
    background-color: #148414;

}

/* GitHub */
.social-media a:nth-child(4):hover {
    background-color: #333333;
}

.social-media {
    display: flex;
    column-gap: 20px;
}

.social-media i {
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .section, .section-2 {
        padding: 40px 20px;
    }
    
    .nav-links {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}