* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #00ff9d;
    --secondary-color: #00d8ff;
    --dark-bg: #0a0f1c;
    --card-bg: #111827;
    --text-color: #ffffff;
    --highlight-color: #00ff9d;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 500;
}

/* Cursor personalizado */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    background: rgba(52, 152, 219, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.6s ease;
}

/* Efeito de partículas */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    opacity: 0.3;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* Header e efeitos */
.header {
    position: relative;
    background: var(--dark-bg);
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 180px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 157, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(0, 216, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.95)),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(46, 204, 113, 0.03) 10px, rgba(46, 204, 113, 0.03) 11px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(52, 152, 219, 0.03) 10px, rgba(52, 152, 219, 0.03) 11px);
    z-index: 1;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background: 
        linear-gradient(217deg, rgba(16, 185, 129, 0.1), transparent 70%),
        linear-gradient(127deg, rgba(52, 152, 219, 0.1), transparent 70%),
        linear-gradient(336deg, rgba(10, 25, 47, 0.1), transparent 70%);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    opacity: 0.1;
    animation: floatAnimation 20s infinite linear;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    left: -150px;
    top: 20%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    right: -100px;
    top: 40%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    left: 40%;
    bottom: -75px;
    animation-delay: -10s;
}

@keyframes floatAnimation {
    0% {
        transform: rotate(0deg) translate(0, 0) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translate(100px, 100px) rotate(-360deg);
    }
}

.glowing-text {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5),
                 0 0 20px rgba(16, 185, 129, 0.3),
                 0 0 30px rgba(16, 185, 129, 0.2);
    background: linear-gradient(to right, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 1s ease forwards, glowingEffect 3s ease-in-out infinite;
}

@keyframes glowingEffect {
    0% {
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.5),
                     0 0 20px rgba(16, 185, 129, 0.3),
                     0 0 30px rgba(16, 185, 129, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.8),
                     0 0 30px rgba(16, 185, 129, 0.6),
                     0 0 40px rgba(16, 185, 129, 0.4);
    }
    100% {
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.5),
                     0 0 20px rgba(16, 185, 129, 0.3),
                     0 0 30px rgba(16, 185, 129, 0.2);
    }
}

/* Galeria */
.galeria {
    padding: 100px 20px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-10px);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 700;
}

.galeria-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.title-container {
    position: relative;
    margin-bottom: 40px;
}

.main-title {
    font-size: 4.5em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(0, 255, 157, 0.3));
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(0, 255, 157, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 255, 157, 0.5));
    }
}

/* Removendo o title-effect antigo */
.title-effect {
    display: none;
}

.subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.sub-description {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
}

.header-effects {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.effect-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1);
    }
    100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
}

.cta-button {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.4);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.metricas {
    padding: 100px 20px;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.metricas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 157, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(0, 216, 255, 0.05) 0%, transparent 70%);
}

.metricas-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.metrica-item {
    text-align: center;
    padding: 40px;
    flex: 1;
    min-width: 250px;
    background: rgba(17, 24, 39, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 157, 0.1);
    transition: all 0.3s ease;
}

.metrica-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
}

.numero {
    font-size: 3.5em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
}

.metrica-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
    font-weight: 500;
}

.servicos {
    padding: 100px 20px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.servicos h2 {
    text-align: center;
    font-size: 2.8em;
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
    position: relative;
}

.servicos h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 157, 0.1);
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.card h3 {
    color: white;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    line-height: 1.6;
}

.sobre {
    padding: 100px 20px;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 157, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(0, 216, 255, 0.05) 0%, transparent 70%);
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sobre h2 {
    font-size: 2.8em;
    color: white;
    margin-bottom: 40px;
    font-weight: 800;
}

.sobre p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.sobre strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }

    .main-title {
        font-size: 2.8em;
    }

    .subtitle {
        font-size: 1.2em;
    }

    .metricas-container {
        flex-direction: column;
    }

    .metrica-item {
        width: 100%;
    }

    .card {
        margin: 0 auto;
        max-width: 400px;
    }

    .sobre h2 {
        font-size: 2.2em;
    }
}

/* Adicione código binário animado no background */
.binary-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.binary-column {
    position: absolute;
    top: -100%;
    color: rgba(16, 185, 129, 0.1);
    font-family: monospace;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    animation: binaryRain 20s linear infinite;
    opacity: 0.3;
}

@keyframes binaryRain {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(100vh);
    }
}

.slogan {
    margin: 30px auto;
    max-width: 800px;
}

.slogan h2 {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slogan p {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.promocao {
    padding: 100px 20px;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.promocao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 157, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(0, 216, 255, 0.05) 0%, transparent 70%);
}

.promocao-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.promocao h2 {
    font-size: 2.8em;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promocao-texto {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.8;
}

.beneficios {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 157, 0.15);
    border-color: var(--primary-color);
}

.beneficio-item i {
    color: var(--primary-color);
    font-size: 1.4em;
}

.beneficio-item span {
    color: white;
    font-size: 1.2em;
    font-weight: 500;
}

.chamada-acao {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin: 40px 0;
    line-height: 1.6;
}

.cta-button-promocao {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-promocao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-button-promocao:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.4);
}

.cta-button-promocao:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .slogan h2 {
        font-size: 1.8em;
    }

    .slogan p {
        font-size: 1.2em;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .promocao h2 {
        font-size: 2.2em;
    }

    .promocao-texto {
        font-size: 1.1em;
    }

    .beneficio-item {
        width: 100%;
        justify-content: center;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, 
        rgba(10, 15, 28, 0.98),
        rgba(0, 255, 157, 0.15),
        rgba(0, 216, 255, 0.15),
        rgba(10, 15, 28, 0.98)
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    padding: 15px 0;
    background: linear-gradient(90deg, 
        rgba(10, 15, 28, 0.98),
        rgba(0, 255, 157, 0.2),
        rgba(0, 216, 255, 0.2),
        rgba(10, 15, 28, 0.98)
    );
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.1);
}

.navbar.nav-hidden {
    transform: none;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.navbar-container::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary-color),
        var(--secondary-color),
        transparent
    );
    opacity: 0.3;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 255, 157, 0.1),
        rgba(0, 216, 255, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.3);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.15);
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
    position: relative;
    overflow: visible;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.4);
}

/* Removendo explicitamente qualquer pseudo-elemento */
.nav-button::before,
.nav-button::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.nav-toggle span {
    display: block;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg,
        var(--primary-color),
        var(--secondary-color)
    );
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active {
    background: rgba(0, 255, 157, 0.15);
    border-color: rgba(0, 255, 157, 0.4);
    transform: rotate(180deg);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    width: 28px;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    width: 28px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        padding: 12px;
        background: rgba(0, 255, 157, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(0, 255, 157, 0.2);
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        background: rgba(0, 255, 157, 0.2);
        transform: scale(1.05);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: linear-gradient(135deg,
            rgba(10, 15, 28, 0.97),
            rgba(10, 15, 28, 0.98)
        );
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 25px;
        border-left: 1px solid rgba(0, 255, 157, 0.2);
        padding: 40px 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.3em;
        padding: 15px 30px;
        min-width: 320px;
        text-align: center;
        border-radius: 16px;
        background: rgba(0, 255, 157, 0.05);
        border: 1px solid rgba(0, 255, 157, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        display: block;
        margin: 0;
        white-space: nowrap;
    }

    .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .nav-button {
        font-size: 1.3em;
        padding: 15px 30px;
        min-width: 320px;
        text-align: center;
        margin: 0;
        background: linear-gradient(135deg, 
            var(--primary-color) 0%,
            var(--secondary-color) 100%
        );
        border: none;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3),
                    inset 0 1px 1px rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        display: block;
    }
}

@media (max-width: 768px) {
    .header {
        padding-top: 150px;
    }
}
