:root {
    --primary: #00ff88;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --secondary: #00d2ff;
    --bg-color: #050a0f;
    --surface: rgba(16, 25, 35, 0.7);
    --surface-light: rgba(25, 40, 55, 0.8);
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glassmorphism Utilities */
.glassmorphism {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-glow);
    box-shadow: 0 20px 40px -10px var(--primary-glow);
}

/* Typography & Neon */
.neon-text {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow);
}

.neon-title {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary), #00c366);
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    box-shadow: 0 0 20px var(--primary-glow);
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--primary-glow), 0 0 50px rgba(0,255,136,0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    border: 1px solid var(--primary);
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: inset 0 0 15px var(--primary-glow);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s ease;
    padding: 20px 0;
}

header.active-scroll {
    background: rgba(5, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px var(--primary));
    transform: scale(1.05);
}

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

.nav-item {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

.nav-item:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mobile-item:hover {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cyber-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    bottom: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.cyber-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    filter: blur(60px);
    z-index: 2;
    animation: pulse 8s ease-in-out infinite alternate;
}

.cyber-orb.orb-2 {
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    left: auto;
    right: 10%;
    animation-delay: -4s;
}

@keyframes pulse {
    0% { transform: translateY(-50%) scale(1); opacity: 0.5; }
    100% { transform: translateY(-50%) scale(1.2); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.glitch-text {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px var(--primary-glow);
}

.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% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Sections Global */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 3rem;
    color: #fff;
}

.section-header h2 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

/* Intro Section */
.intro-section {
    margin-top: -50px;
}

.intro-box {
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.intro-box p {
    font-size: 1.15rem;
    color: var(--text);
    margin: 0 auto;
    max-width: 900px;
}

/* Services Grid */
.services-section {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(0,255,136,0.1), transparent);
    transition: 0.4s ease;
}

.service-card:hover::after {
    height: 100%;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: inset 0 0 20px rgba(0,255,136,0.1), 0 0 20px rgba(0,255,136,0.2);
    transition: 0.4s;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 30px var(--primary-glow);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
}

/* Features */
.features-section {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.feature-row:hover .feature-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.3), rgba(0, 210, 255, 0.3));
    mix-blend-mode: overlay;
}

.feature-row.reverse .feature-content {
    order: 2;
}

.feature-row.reverse .feature-image {
    order: 1;
}

/* Highlights */
.highlights-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    flex: 1;
    min-width: 300px;
    background: var(--surface-light);
    border-left: 4px solid var(--primary);
    padding: 30px;
    border-radius: 0 15px 15px 0;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.highlight-item:hover {
    background: rgba(25, 40, 55, 0.95);
    transform: translateX(10px);
    box-shadow: -10px 0 20px rgba(0,255,136,0.1);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

/* Contact */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--surface);
    position: relative;
}

.map-container {
    height: 100%;
    min-height: 500px;
    filter: invert(90%) hue-rotate(180deg) contrast(1) opacity(0.8);
    transition: 0.4s;
}

.map-container:hover {
    filter: invert(90%) hue-rotate(180deg) contrast(1.1) opacity(1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    padding: 80px 60px;
    border: none;
    border-radius: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info h3 i {
    color: var(--primary);
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 5px;
}

.info-block strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-block span {
    color: var(--text-muted);
    display: block;
}

.info-block .small-text {
    font-size: 0.85rem;
    margin-top: 2px;
    opacity: 0.8;
}

.info-block a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #020406;
    padding: 30px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-content strong {
    color: var(--primary);
}

.credit {
    font-size: 0.8rem !important;
    opacity: 0.5;
}

.whatsapp-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.wa-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: 0.3s;
    font-size: 0.95rem;
    font-weight: 600;
    width: fit-content;
}

.wa-link-btn i {
    color: #25d366;
    font-size: 1.2rem;
    margin: 0 !important;
}

.wa-link-btn:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

/* WA Floating */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s ease;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: #fff;
}

.wa-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: blobPulse 2s infinite;
}

@keyframes blobPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Custom Cursor */
.cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 60%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: 0.1s ease-out;
    mix-blend-mode: screen;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Additions */
.hero-title-wrapper { display: flex; align-items: center; justify-content: center; gap: 30px; width: 100%; }
.hero-esocial { height: 100px; object-fit: contain; filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6)) brightness(1.2); background: rgba(255, 255, 255, 0.9); padding: 5px 15px; border-radius: 12px; }
.floating-logo { animation: floatLogo 4s ease-in-out infinite; }
.floating-logo.left { animation-delay: 0s; }
.floating-logo.right { animation-delay: 2s; }
@keyframes floatLogo {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05) rotate(2deg); filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.8)) brightness(1.3); }
    100% { transform: translateY(0px) scale(1); }
}

.highlight-card { border-color: #ff007f; box-shadow: 0 0 20px rgba(255, 0, 127, 0.2); position: relative; }
.highlight-card::before {
    content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #ff007f, #7f00ff, #00d2ff, #ff007f);
    z-index: -1; border-radius: 18px; background-size: 400%; animation: glowingCard 20s linear infinite; opacity: 0.5;
}
@keyframes glowingCard { 0% { background-position: 0 0; } 50% { background-position: 400% 0; } 100% { background-position: 0 0; } }
.highlight-icon-wrapper { color: #ff007f; background: rgba(255, 0, 127, 0.1); border-color: rgba(255, 0, 127, 0.3); box-shadow: inset 0 0 20px rgba(255, 0, 127, 0.1), 0 0 20px rgba(255, 0, 127, 0.2); }
.service-card.highlight-card:hover .highlight-icon-wrapper { background: #ff007f; color: #fff; box-shadow: 0 0 30px rgba(255, 0, 127, 0.6); transform: scale(1.1) rotate(5deg); }
.highlight-title { color: #ff007f !important; text-shadow: 0 0 10px rgba(255, 0, 127, 0.3); }

.map-split { display: flex; flex-direction: column; gap: 0; }
.map-split iframe { height: 50%; width: 100%; border: none; }

@media (max-width: 768px) {
    .hero-title-wrapper { flex-direction: column; gap: 15px; }
    .hero-esocial { height: 60px; }
    .map-split iframe { min-height: 250px; }
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-row, .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row.reverse .feature-content {
        order: 1;
    }
    
    .feature-row.reverse .feature-image {
        order: 2;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-primary {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .intro-box {
        padding: 40px 20px;
    }
    
    .contact-info {
        padding: 50px 20px;
    }
}
