:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --light: #f8fafc;
    --gray: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --gradient-1: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-2: linear-gradient(135deg, #f59e0b, #ef4444);
    --gradient-3: linear-gradient(135deg, #10b981, #059669);
    --gradient-text: linear-gradient(135deg, #6366f1, #f59e0b, #ec4899);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: rgba(99, 102, 241, 0.3);
    color: #fff;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAVBAR */
.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-code {
    font-family: 'Fira Code', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.15);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-sm);
}

.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.brand-accent { color: var(--primary); }

.nav-link {
    color: var(--gray) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active { color: #fff !important; }

.contato-link {
    color: var(--gray) !important;
    font-weight: 300;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
}

/* .contato-link:hover, .nav-link.active { color: #fff !important; } */



.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.cta-nav {
    background: var(--gradient-1);
    color: #fff !important;
    border-radius: 50px;
    padding: 0.6rem 1.5rem !important;
    margin-left: 0.5rem;
}

.cta-nav::after { display: none !important; }

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.navbar-toggler {
    border: 1px solid var(--dark-lighter);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, var(--dark) 50%, #0f172a 100%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px; height: 400px;
    background: var(--primary);
    top: -10%; right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px; height: 300px;
    background: var(--accent);
    bottom: 10%; left: -5%;
    animation-delay: -3s;
}

.orb-3 {
    width: 250px; height: 250px;
    background: #ec4899;
    top: 40%; right: 20%;
    animation-delay: -5s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
    background: var(--gradient-1);
}

.btn-outline-light {
    border: 2px solid var(--dark-lighter);
    color: var(--light);
}

.btn-outline-light:hover {
    background: var(--dark-lighter);
    border-color: var(--dark-lighter);
    color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item { text-align: center; }

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-lighter);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 2rem;
}

.code-window {
    background: var(--dark-light);
    border-radius: var(--radius);
    border: 1px solid var(--dark-lighter);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 1s ease 0.5s both;
}

.code-header {
    background: rgba(0,0,0,0.3);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-header .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.code-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--gray);
    font-family: 'Fira Code', monospace;
}

.code-body {
    padding: 1.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-body pre { margin: 0; }

.code-keyword { color: #c084fc; }
.code-var { color: #60a5fa; }
.code-key { color: #f472b6; }
.code-str { color: #a3e635; }
.code-num { color: #fbbf24; }

.floating-card {
    position: absolute;
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i { color: var(--primary); }

.card-1 { top: 10%; right: -10%; animation-delay: 0s; }
.card-2 { bottom: 25%; left: -15%; animation-delay: -2s; }
.card-3 { bottom: 5%; right: 5%; animation-delay: -4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.8rem;
    animation: fadeInUp 1s ease 1s both;
}

.mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--dark-lighter);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* SECTIONS COMMON */
section { padding: 6rem 0; position: relative; }

.section-header { margin-bottom: 3.5rem; }

.section-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ABOUT */
.about-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.about-visual { position: relative; }

.about-img-wrapper { position: relative; padding: 2rem; }

.about-img-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    opacity: 0.1;
    transform: rotate(-3deg);
}

.about-img-content {
    position: relative;
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.code-snippet { font-family: 'Fira Code', monospace; }

.snippet-line {
    display: flex;
    gap: 1rem;
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.line-num {
    color: var(--dark-lighter);
    min-width: 24px;
    text-align: right;
    user-select: none;
}

.line-code { color: var(--gray); }
.token-kw { color: #c084fc; }
.token-fn { color: #60a5fa; }

.about-text {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 48px; height: 48px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

/* PRODUCTS */
.products-section { background: var(--dark); }
.products-category { margin-bottom: 3rem; }
.category-title { margin-bottom: 2rem; }

.cat-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cat-badge.disponivel {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cat-badge.breve {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.product-card {
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.3);
}

.product-card:hover::before { transform: scaleX(1); }

.product-soon { opacity: 0.85; }
.product-soon:hover { opacity: 1; }

.soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.product-version {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    font-family: 'Fira Code', monospace;
}

.product-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.product-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-tags span {
    background: rgba(148, 163, 184, 0.1);
    color: var(--gray);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    border: 1px solid var(--dark-lighter);
}

.btn-product {
    background: transparent;
    border: 1px solid var(--dark-lighter);
    color: var(--light);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-product:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateX(4px);
}

.btn-product:hover i { transform: translateX(3px); }

.btn-product i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.btn-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-soon:hover {
    background: transparent;
    border-color: var(--dark-lighter);
    color: var(--light);
    transform: none;
}

/* FEATURES */
.features-section {
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
}

.feature-card {
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px; height: 64px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* TECH */
.tech-section {
    background: var(--dark);
    padding-bottom: 4rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light);
}

/* CTA */
.cta-section {
    padding: 3rem 0;
    background: var(--dark);
}

.cta-box {
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-box .btn-light {
    background: #fff;
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

.cta-box .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* CONTACT */
.contact-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.contact-card {
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-info {
    background: rgba(99, 102, 241, 0.05);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px; height: 48px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.contact-form-wrapper {
    padding: 2rem;
}

.form-control, .form-select {
    background: var(--dark);
    border: 1px solid var(--dark-lighter);
    color: var(--light);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    background: var(--dark);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-control::placeholder { color: var(--dark-lighter); }

.form-select option { background: var(--dark); color: var(--light); }

/* FOOTER */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-lighter);
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 300px;
}

.footer h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-lighter);
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-craft {
    margin-top: 0.5rem;
    color: var(--dark-lighter);
}

.footer-craft i { color: var(--danger); margin: 0 0.2rem; }

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-stats { gap: 1.5rem; }
    .stat-divider { display: none; }
    .about-values { grid-template-columns: 1fr; }
    .floating-card { display: none; }
}

@media (max-width: 767px) {
    section { padding: 4rem 0; }
    .hero-content { padding-top: 80px; }
    .hero-actions { flex-direction: column; }
    .hero-btn { width: 100%; text-align: center; }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .cta-box { padding: 3rem 1.5rem; }
    .contact-info { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .about-values { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .footer .col-6 { width: 100%; margin-bottom: 2rem; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-lighter); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }