@import url('https://fonts.googleapis.com/css2?family=Georama:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --color-bg: #000;
    --color-surface: #141419b3;
    --color-primary: #00e5ff;
    --color-primary-glow: #00e5ff99;
    --color-secondary: #8a2be2;
    --color-text-main: #fff;
    --color-text-muted: #a0a0a0;
    --radius-custom: 20px;
    --font-main: 'Georama', sans-serif;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::after {
    content: '';
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%27%23noiseFilter%27)" opacity="0.04"/%3E%3C/svg%3E');

    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 25, 0.35);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--color-text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    max-width: 300px;
    display: block;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    transition: all 0.3s ease;
}

.nav-link {
    font-family: 'Georama', sans-serif !important;
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
}

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

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at top, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                var(--color-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.hologram-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform: rotateX(60deg);
    animation: grid-move 20s linear infinite;
    z-index: 2;
    opacity: 0.5;
}

@keyframes grid-move {
    0% {
        transform: rotateX(60deg) translateY(0);
    }
    100% {
        transform: rotateX(60deg) translateY(50px);
    }
}

.hologram-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 229, 255, 0.03) 2px,
        rgba(0, 229, 255, 0.03) 4px
    );
    animation: scanline 8s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100vh;
    }
}

.hologram-light {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    animation: light-pulse 4s ease-in-out infinite;
    z-index: 4;
    pointer-events: none;
}

@keyframes light-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hologram-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    animation: ring-pulse 6s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

.hologram-ring::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    animation: ring-pulse 8s ease-in-out infinite reverse;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

.hologram-particles {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    overflow: hidden;
}

.hologram-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 229, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 15s infinite;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url('images/pattern-hero-transparent-10.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 30%);
    animation: pulse-glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(10%, 10%) scale(1.1);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text-main) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--color-primary);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    margin: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--color-primary-glow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--color-primary-glow);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--color-primary-glow);
}

.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text-main), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-header {
    text-align: left;
}

.contact .section-title {
    text-align: left;
}

.section-subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    font-weight: 600;
}

.about {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0a0a0a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.about-list li {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.about-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services {
    background: var(--color-bg);
}

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

.service-card {
    background: var(--color-surface);
    border-radius: var(--radius-custom);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* LED Screen Background Effect */
.led-screen-bg {
    position: relative;
    overflow: hidden;
}

.led-screen-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 229, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(0, 229, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(138, 43, 226, 0.02) 1px, transparent 1px);
    background-size: 4px 4px, 4px 4px;
    pointer-events: none;
    animation: led-grid 20s linear infinite;
    z-index: 1;
}

.led-screen-bg > * {
    position: relative;
    z-index: 2;
}

@keyframes led-grid {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

/* External Loading Animation */
.external-loading {
    position: relative;
    overflow: hidden;
}

.external-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
    animation: loading-bar 3s ease-in-out infinite;
    z-index: 1;
}

.external-loading::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), var(--color-primary), transparent);
    animation: loading-bar 3s ease-in-out infinite;
    animation-delay: 0.5s;
    z-index: 1;
}

@keyframes loading-bar {
    0% {
        left: -100%;
        right: 100%;
    }
    50% {
        left: 100%;
        right: -100%;
    }
    100% {
        left: -100%;
        right: 100%;
    }
}

/* Digital Scanline Effect */
.scanline-effect {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.scanline-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 229, 255, 0.03) 2px
    );
    animation: scanline-down 8s linear infinite;
}

.scanline-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 229, 255, 0.02) 50%,
        transparent 100%
    );
    animation: scan-sweep 4s ease-in-out infinite;
}

@keyframes scanline-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes scan-sweep {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%);
    }
    50% {
        opacity: 1;
        transform: translateY(0%);
    }
}

/* Data Stream Particles */
.data-stream {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.data-stream::before,
.data-stream::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-stream::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    animation: stream-pulse 6s ease-in-out infinite;
}

.data-stream::after {
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    animation: stream-pulse 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes stream-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.custom-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--color-primary), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 200px;
    height: auto;
    animation: logo-pulse 2s ease-in-out infinite;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

@keyframes logo-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    animation: loading-progress 1.5s ease-in-out infinite;
}

@keyframes loading-progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.loader-content {
    text-align: center;
}

.loader-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.loader-logo {
    width: 200px;
    height: auto;
    animation: logo-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

@keyframes logo-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.loader-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    animation: underline-extend 2s ease-in-out infinite;
}

.loader-underline::before,
.loader-underline::after {
    content: '';
    position: absolute;
    bottom: 100%;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    border-radius: 2px 2px 0 0;
    transition: all 0.5s ease;
}

.loader-underline::before {
    left: 30px;
    animation: wrap-left 2s ease-in-out infinite;
}

.loader-underline::after {
    right: 30px;
    animation: wrap-right 2s ease-in-out infinite;
}

@keyframes underline-extend {
    0%, 40% {
        width: 60%;
        left: 20%;
    }
    50%, 90% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 60%;
        left: 20%;
    }
}

@keyframes wrap-left {
    0%, 45% {
        height: 0;
        opacity: 0;
    }
    50%, 90% {
        height: 100%;
        opacity: 1;
    }
    95%, 100% {
        height: 0;
        opacity: 0;
    }
}

@keyframes wrap-right {
    0%, 45% {
        height: 0;
        opacity: 0;
    }
    50%, 90% {
        height: 100%;
        opacity: 1;
    }
    95%, 100% {
        height: 0;
        opacity: 0;
    }
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    animation: loading-progress 1.5s ease-in-out infinite;
}

@keyframes loading-progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.service-card,
.reveal.about-grid {
    transition-delay: 0.1s;
}

.reveal.section-header {
    transition-delay: 0.2s;
}

/* Scramble Effect */
.scramble-char {
    display: inline-block;
    animation: char-shake 0.1s ease-in-out;
}

@keyframes char-shake {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-2px);
        opacity: 0.7;
    }
}

/* Click Ripple */
.click-ripple {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3), transparent 70%);
    pointer-events: none;
    z-index: 9997;
    animation: ripple-expand 1s ease-out forwards;
}

@keyframes ripple-expand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Glitch Effect */
@keyframes glitch {
    0% {
        text-shadow: 2px 0 var(--color-primary), -2px 0 var(--color-secondary);
    }
    25% {
        text-shadow: -2px 0 var(--color-secondary), 2px 0 var(--color-primary);
    }
    50% {
        text-shadow: 2px 0 var(--color-secondary), -2px 0 var(--color-primary);
    }
    75% {
        text-shadow: -2px 0 var(--color-primary), 2px 0 var(--color-secondary);
    }
    100% {
        text-shadow: 2px 0 var(--color-primary), -2px 0 var(--color-secondary);
    }
}

/* 3D Tilt */
.service-card,
.package-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Stat Counter Animation */
.stat-number {
    transition: all 0.3s ease;
}

/* Hover Effects Enhanced */
.nav-link {
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

/* Button Glow Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::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: btn-shine 3s linear infinite;
}

@keyframes btn-shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Footer Logo Animation */
.footer-logo-img {
    transition: all 0.4s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
}

/* Hero Content Animation */
.hero-content {
    animation: hero-fade-in 1s ease-out forwards;
}

@keyframes hero-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Content Animation */
.section > .container {
    animation: section-fade-in 1s ease-out forwards;
}

@keyframes section-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Performance Enhancements */
@media (max-width: 768px) {
    .custom-cursor,
    .cursor-trail {
        display: none;
    }
    
    #particle-canvas {
        opacity: 0.3;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary-glow);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text-main), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.service-list li {
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.service-list li:last-child {
    border-bottom: none;
}

.portfolio {
    background: linear-gradient(180deg, #0a0a0a 0%, var(--color-bg) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: linear-gradient(135deg, var(--color-surface), rgba(138, 43, 226, 0.1));
    border-radius: var(--radius-custom);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-glow) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-primary-glow);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.15);
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, var(--color-text-main), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
}

.portfolio-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 10;
    text-align: center;
}

.testimonials {
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-custom);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-glow);
}

.testimonial-text {
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.author-name {
    font-weight: 700;
    color: var(--color-text-main);
}

.author-role {
    color: var(--color-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0a0a0a 100%);
}

.contact-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.contact-video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.section.contact {
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-text {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1.25rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text-main);
    font-size: 1rem;
    width: 100%;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.footer {
    background: var(--color-bg);
    padding: 8rem 0 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.footer-section ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.whatsapp-float::before {
    content: 'Fale conosco no WhatsApp';
    position: absolute;
    right: 70px;
    background: var(--color-surface);
    color: var(--color-text-main);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--color-surface);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-logo-img {
        height: 36px;
        max-width: 200px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(20, 20, 25, 0.98) 0%, rgba(10, 10, 15, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        gap: 1.5rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.875rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-grid,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float::before {
        display: none;
    }

    .whatsapp-float::after {
        display: none;
    }
}
/* Pacotes */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: linear-gradient(135deg, var(--color-surface), rgba(138, 43, 226, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
}

.package-card.package-popular {
    border-color: var(--color-primary);
    position: relative;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    color: var(--color-text-muted);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.package-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.package-cta:hover {
    transform: scale(1.05);
    border-color: var(--color-primary);
    background: transparent;
    color: var(--color-primary);
}

/* Footer atualizado */
/* Footer content rule moved to main definition */

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-text-main) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

/* Mobile menu overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* Sound Design Section Background Effect */
.sound-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.sound-wave-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

/* Force Sound Design content to left side */
#sound-design .section-header {
    text-align: left;
}

#sound-design .section-title {
    text-align: left;
}

#sound-design .about-grid {
    display: block;
}

#sound-design .about-grid > div {
    max-width: 60%;
    text-align: left;
}

#sound-design .about-grid .about-text {
    text-align: left;
}

#sound-design .about-grid .about-list {
    text-align: left;
}

#sound-design .container {
    position: relative;
    z-index: 5;
}

.sound-wave-bg::before,
.sound-wave-bg::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.3) 0%, transparent 30%);
    animation: sound-wave-rotate 20s linear infinite;
}

.sound-wave-bg::after {
    animation-delay: 10s;
    background:
        radial-gradient(circle at 30% 60%, rgba(138, 43, 226, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 70% 40%, rgba(0, 229, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(0, 229, 255, 0.2) 0%, transparent 25%);
}

@keyframes sound-wave-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Sound wave lines effect */
.sound-wave-bg .wave-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
    animation: wave-move 3s ease-in-out infinite;
}

.sound-wave-bg .wave-line:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.sound-wave-bg .wave-line:nth-child(2) {
    top: 40%;
    animation-delay: 0.5s;
}

.sound-wave-bg .wave-line:nth-child(3) {
    top: 60%;
    animation-delay: 1s;
}

.sound-wave-bg .wave-line:nth-child(4) {
    top: 80%;
    animation-delay: 1.5s;
}

@keyframes wave-move {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Musical Notes Parallax Effect */
.musical-notes-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 4;
}

.musical-note {
    position: absolute;
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.3;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--color-primary-glow);
    animation: note-float 4s ease-in-out infinite;
}

.musical-note.visible {
    opacity: 0.8;
    transform: scale(1.2);
}

@keyframes note-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Sound Video Overlay */
.sound-video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Parallax Text Effect */
.parallax-text {
    position: relative;
    transition: all 0.3s ease;
}

.parallax-text.scrolled {
    opacity: 0.5;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer {
        padding: 6rem 0 4rem;
    }
    
    .footer-content {
        margin-bottom: 5rem;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .sound-video {
        width: 100%;
        height: 300px;
        opacity: 0.3;
        position: relative;
        margin-bottom: 2rem;
    }
    
    .sound-video-overlay {
        display: none;
    }
    
    .musical-notes-container {
        width: 100%;
        position: relative;
        height: 300px;
    }
}
