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

:root {
    --bg-dark: #0a0a0f;
    --bg-dark-2: #13131a;
    --bg-dark-3: #1a1a24;
    --bg-card: #1e1e2e;

    --neon-blue: #00D4FF;
    --neon-purple: #A855F7;
    --neon-pink: #EC4899;
    --neon-cyan: #22D3EE;
    --neon-green: #10B981;
    --neon-orange: #F97316;
    --neon-yellow: #FCD34D;

    --gradient-primary: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    --gradient-purple: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%);
    --gradient-rainbow: linear-gradient(135deg, #00D4FF 0%, #A855F7 50%, #EC4899 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b80;

    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-blue {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tec {
    color: var(--text-primary);
}

.blue-tec-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.logo-diamond {
    font-size: 1.5rem;
    filter: brightness(0.45) saturate(0.5) contrast(1.4) drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
    animation: diamondFloat 3s ease-in-out infinite;
    opacity: 0.9;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: transform 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-blue);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--neon-blue);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.diamond-icon {
    font-size: 1.2rem;
    filter: brightness(0.4) saturate(0.5) contrast(1.4) drop-shadow(0 0 6px rgba(0, 212, 255, 0.2));
    opacity: 0.85;
}

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.glitch {
    position: relative;
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--neon-blue);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.btn-secondary:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-mini {
    text-align: center;
}

.stat-mini strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-mini span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 2rem;
    filter: brightness(0.4) saturate(0.5) contrast(1.4) drop-shadow(0 0 6px rgba(0, 212, 255, 0.2));
    opacity: 0.85;
}

.badge-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.badge-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.mascot-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: floatMascot 3s ease-in-out infinite;
    overflow: visible;
    width: 100%;
    height: 100%;
}

@keyframes floatMascot {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.mascot-image {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
    position: relative;
    z-index: 2;
    animation: crtImageGlitch 2.5s infinite;
}

.crt-scanlines {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0,0,0,0.4) 100%),
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 3;
    animation: scanlineFlicker 0.1s infinite;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
}

@keyframes scanlineFlicker {
    0% { opacity: 0.8; }
    50% { opacity: 0.85; }
    100% { opacity: 0.8; }
}

.crt-overlay {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    pointer-events: none;
    z-index: 4;
    animation: crtGlitch 3s infinite;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0.9) 55%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0.9) 55%, rgba(0,0,0,0) 100%);
}

@keyframes crtGlitch {
    0%, 100% {
        opacity: 0;
    }

    15% {
        opacity: 1;
        background:
            linear-gradient(90deg, rgba(255,0,0,0.15) 0%, transparent 2%),
            linear-gradient(90deg, transparent 98%, rgba(0,255,255,0.15) 100%);
        transform: translateX(3px);
    }

    16% {
        opacity: 0;
    }

    45% {
        opacity: 0.8;
        background:
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(255,255,255,0.1) 3px,
                rgba(255,255,255,0.1) 6px
            ),
            linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
    }

    47% {
        opacity: 0.9;
        background:
            repeating-linear-gradient(
                0deg,
                rgba(0,0,0,0.5) 0px,
                rgba(0,0,0,0.5) 4px,
                transparent 4px,
                transparent 8px,
                rgba(255,255,255,0.1) 8px,
                rgba(255,255,255,0.1) 12px
            );
        transform: translateY(10px) translateX(-5px);
    }

    48% {
        opacity: 1;
        background:
            repeating-linear-gradient(
                90deg,
                rgba(255,255,255,0.05),
                rgba(255,255,255,0.05) 1px,
                rgba(0,0,0,0.3) 1px,
                rgba(0,0,0,0.3) 2px
            ),
            repeating-linear-gradient(
                0deg,
                transparent 0px,
                rgba(255,255,255,0.08) 2px,
                transparent 4px
            );
        transform: translateX(-8px);
    }

    49% {
        opacity: 0.7;
        background:
            linear-gradient(0deg, transparent 0%, rgba(0,212,255,0.3) 20%, transparent 40%, rgba(236,72,153,0.3) 60%, transparent 80%);
        transform: translateY(-15px);
    }

    50% {
        opacity: 0;
    }

    70% {
        opacity: 1;
        background:
            linear-gradient(90deg, rgba(255,0,0,0.2) 0%, transparent 1%),
            linear-gradient(90deg, transparent 99%, rgba(0,255,255,0.2) 100%);
    }

    71% {
        opacity: 0;
    }

    88% {
        opacity: 0.9;
        background:
            linear-gradient(0deg, transparent 45%, rgba(0,212,255,0.3) 48%, transparent 52%);
        transform: translateX(5px);
    }

    89% {
        opacity: 0;
    }
}

@keyframes crtImageGlitch {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
    }

    12% {
        filter:
            drop-shadow(0 0 30px rgba(0, 212, 255, 0.4))
            brightness(1.4)
            contrast(1.3);
        transform: translateX(-2px);
    }

    13% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
        transform: translateX(0);
    }

    40% {
        filter:
            drop-shadow(0 0 30px rgba(0, 212, 255, 0.4))
            brightness(0.5)
            contrast(1.6);
        transform: translateY(2px);
    }

    42% {
        filter:
            drop-shadow(-4px 0 4px rgba(255, 0, 0, 0.7))
            drop-shadow(4px 0 4px rgba(0, 255, 255, 0.7))
            brightness(0.8)
            contrast(1.8);
        transform: translateX(3px) scale(1.01);
    }

    44% {
        filter:
            drop-shadow(0 0 30px rgba(0, 212, 255, 0.4))
            brightness(1.3)
            contrast(0.7)
            saturate(0.5);
        transform: translateX(-3px) translateY(-2px);
    }

    46% {
        filter:
            drop-shadow(0 0 40px rgba(0, 212, 255, 0.8))
            brightness(1.1)
            hue-rotate(10deg);
        transform: translateY(3px) scale(0.995);
    }

    48% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
        transform: translateX(0) translateY(0) scale(1);
    }

    65% {
        filter:
            drop-shadow(-2px 0 3px rgba(255, 0, 0, 0.6))
            drop-shadow(2px 0 3px rgba(0, 255, 255, 0.6))
            brightness(1.2);
        transform: translateX(2px);
    }

    66% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
        transform: translateX(0);
    }

    85% {
        filter:
            drop-shadow(0 0 30px rgba(0, 212, 255, 0.7))
            brightness(0.9)
            saturate(1.3)
            hue-rotate(-5deg);
        transform: translateX(-1px) scale(1.003);
    }

    90% {
        filter:
            drop-shadow(0 0 30px rgba(0, 212, 255, 0.4))
            brightness(1.3);
        transform: translateY(-1px);
    }

    92% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
        transform: translateX(0) translateY(0) scale(1);
    }
}

.mascot-shadow {
    position: absolute;
    bottom: -30px;
    left: 20%;
    width: 250px;
    height: 40px;
    background: radial-gradient(
        ellipse,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(15px);
    animation: shadowMove 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes shadowMove {
    0%, 100% {
        transform: scale(1) translateX(0px);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05) translateX(-5px);
        opacity: 0.7;
    }
}

.floating-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diamond-shape {
    font-size: 12rem;
    filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.6));
    animation: rotateDiamond 20s linear infinite;
}

@keyframes rotateDiamond {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.diamond-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

.stats-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: rgba(30, 30, 46, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

section {
    padding: 6rem 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.section-tag-glitch {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: none;
    padding: 0;
    border-radius: 0;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.tag-emoji {
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    filter: none;
}

.section-title {
    font-family: 'VT323', monospace;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.sobre {
    background: var(--bg-dark-2);
}

.timeline-dark {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-block {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-block.reverse .timeline-card {
    grid-column: 1;
    grid-row: 1;
}

.timeline-block.reverse .timeline-marker {
    grid-column: 2;
}

.timeline-marker {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.marker-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 3px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--glow-blue);
    filter: brightness(0.35) saturate(0.4) contrast(1.5) grayscale(0.3);
    opacity: 0.8;
}

.marker-year {
    font-weight: 700;
    color: var(--neon-blue);
    font-size: 0.9rem;
}

.timeline-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    grid-column: 3;
}

.timeline-block:nth-child(even) .timeline-card {
    grid-column: 1;
}

.timeline-card h3 {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.timeline-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.evolution-banner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.evolution-item {
    text-align: center;
    padding: 1.5rem;
}

.evolution-item.highlight {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    border: 2px solid var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.evolution-year {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.evolution-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.evolution-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.evolution-arrow {
    font-size: 2rem;
    color: var(--neon-blue);
}

.zucchetti-section {
    background: var(--bg-dark);
}

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

.clipp-logo-area h3 {
    font-family: 'VT323', monospace;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.clipp-logo-area p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--glow-blue);
}

.benefits-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.benefits-list p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.clipp-modules h4 {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.module-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.module-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: var(--glow-blue);
}

.module-icon {
    font-size: 2rem;
    filter: brightness(0.35) saturate(0.4) contrast(1.5) grayscale(0.3) drop-shadow(0 0 5px rgba(0, 212, 255, 0.15));
    opacity: 0.8;
}

.module-name {
    font-weight: 600;
    color: var(--text-primary);
}

.servicos {
    background: var(--bg-dark-2);
}

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

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
}

.service-card h3 {
    font-family: 'VT323', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.cta-dark {
    text-align: center;
    background: var(--bg-card);
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-family: 'VT323', monospace;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contato {
    background: var(--bg-dark);
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-info {
    width: 100%;
    max-width: 900px;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-highlight {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--glow-blue);
}

.highlight-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: brightness(0.35) saturate(0.4) contrast(1.5) grayscale(0.3) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    opacity: 0.8;
}

.info-highlight h3 {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.info-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.info-item:hover {
    border-color: var(--neon-blue);
    transform: translateX(10px);
}

.info-icon {
    font-size: 2rem;
    filter: brightness(0.35) saturate(0.4) contrast(1.5) grayscale(0.3) drop-shadow(0 0 5px rgba(0, 212, 255, 0.15));
    opacity: 0.8;
}

.info-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-content small {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.social-links-dark {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--neon-blue);
    transform: translateX(5px);
    box-shadow: var(--glow-blue);
}

.social-icon {
    font-size: 1.5rem;
    filter: brightness(0.35) saturate(0.4) contrast(1.5) grayscale(0.3) drop-shadow(0 0 5px rgba(0, 212, 255, 0.15));
    opacity: 0.8;
}

.contact-form-dark {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-form-dark h3 {
    font-family: 'VT323', monospace;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-dark-2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

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

.footer {
    background: var(--bg-dark-3);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-desc {
    margin-top: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-desc strong {
    color: var(--neon-blue);
}

.footer-links,
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4,
.footer-services h4 {
    font-family: 'VT323', monospace;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.footer-services span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.badge-diamond {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    box-shadow: var(--glow-blue);
}

.badge-diamond-icon {
    font-size: 3rem;
    filter: brightness(0.4) saturate(0.5) contrast(1.4) drop-shadow(0 0 8px rgba(0, 212, 255, 0.2));
    opacity: 0.85;
}

.badge-diamond strong {
    display: block;
    color: var(--neon-blue);
    font-size: 1.1rem;
}

.badge-diamond p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.jornada {
    background: var(--bg-dark);
}

.story-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.intro-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.intro-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.intro-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(var(--glow-blue));
}

.intro-content h3 {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--neon-blue);
}

.intro-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-horizontal {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 0;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-card);
    border: 3px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--glow-blue);
    transition: all 0.3s;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.step-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.timeline-step:hover .step-content {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
}

.step-content h4 {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-content strong {
    color: var(--neon-blue);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.mv-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.mv-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(var(--glow-blue));
}

.mv-item h4 {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.especialidades {
    background: var(--bg-dark-2);
}

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

.expertise-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-15px);
    border-color: var(--neon-blue);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3);
}

.expertise-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-card h3 {
    font-family: 'VT323', monospace;
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.expertise-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
}

.stat-box {
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-box span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-expertise {
    width: 100%;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: var(--glow-blue);
}

.btn-expertise:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
}

.rotating-services {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.service-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateOrbit 30s linear infinite;
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--glow-blue);
    animation: counterRotate 30s linear infinite;
}

@keyframes counterRotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.orbit-item:nth-child(1) {
    transform: translate(-50%, -50%) translate(180px, 0);
}

.orbit-item:nth-child(2) {
    transform: translate(-50%, -50%) translate(90px, 155px);
}

.orbit-item:nth-child(3) {
    transform: translate(-50%, -50%) translate(-90px, 155px);
}

.orbit-item:nth-child(4) {
    transform: translate(-50%, -50%) translate(-180px, 0);
}

.orbit-item:nth-child(5) {
    transform: translate(-50%, -50%) translate(-90px, -155px);
}

.orbit-item:nth-child(6) {
    transform: translate(-50%, -50%) translate(90px, -155px);
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    animation: pulse 3s ease-in-out infinite;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.service-features li {
    color: var(--text-secondary);
    padding-left: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '\2713';
    color: var(--neon-blue);
    font-weight: 900;
    font-size: 1.1rem;
}

.certifications {
    margin-top: 3rem;
    text-align: center;
}

.certifications h4 {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    font-weight: 700;
    color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transition: all 0.3s;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.cert-badge span:first-child {
    font-size: 1.5rem;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tech-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--neon-purple);
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-3px);
    border-color: var(--neon-purple);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}

.tech-item span {
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: auto;
        margin-top: 2rem;
    }

    .mascot-image {
        max-width: 280px;
    }

    .mascot-shadow {
        width: 160px;
        height: 25px;
    }

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

    .clipp-showcase {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        flex-direction: column;
    }

    .info-list {
        grid-template-columns: 1fr;
    }

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

    .timeline-block {
        grid-template-columns: auto 1fr;
    }

    .timeline-line {
        left: 40px;
    }

    .timeline-marker {
        grid-column: 1;
    }

    .timeline-card,
    .timeline-block.reverse .timeline-card,
    .timeline-block:nth-child(even) .timeline-card {
        grid-column: 2;
    }

    .timeline-horizontal {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-horizontal::before {
        display: none;
    }

    .rotating-services {
        width: 300px;
        height: 300px;
    }

    .orbit-item {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .orbit-item:nth-child(1) {
        transform: translate(-50%, -50%) translate(130px, 0);
    }

    .orbit-item:nth-child(2) {
        transform: translate(-50%, -50%) translate(65px, 112px);
    }

    .orbit-item:nth-child(3) {
        transform: translate(-50%, -50%) translate(-65px, 112px);
    }

    .orbit-item:nth-child(4) {
        transform: translate(-50%, -50%) translate(-130px, 0);
    }

    .orbit-item:nth-child(5) {
        transform: translate(-50%, -50%) translate(-65px, -112px);
    }

    .orbit-item:nth-child(6) {
        transform: translate(-50%, -50%) translate(65px, -112px);
    }

    .logo-circle {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        height: auto;
    }

    .mascot-image {
        max-width: 240px;
    }

    .mascot-shadow {
        width: 140px;
        height: 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
        padding: 2rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .section-title {
        font-size: 2.25rem;
    }

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

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .evolution-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .evolution-arrow {
        transform: rotate(90deg);
    }

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

    .story-intro {
        grid-template-columns: 1fr;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .rotating-services {
        width: 250px;
        height: 250px;
    }

    .orbit-item {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .orbit-item:nth-child(1) {
        transform: translate(-50%, -50%) translate(105px, 0);
    }

    .orbit-item:nth-child(2) {
        transform: translate(-50%, -50%) translate(52px, 90px);
    }

    .orbit-item:nth-child(3) {
        transform: translate(-50%, -50%) translate(-52px, 90px);
    }

    .orbit-item:nth-child(4) {
        transform: translate(-50%, -50%) translate(-105px, 0);
    }

    .orbit-item:nth-child(5) {
        transform: translate(-50%, -50%) translate(-52px, -90px);
    }

    .orbit-item:nth-child(6) {
        transform: translate(-50%, -50%) translate(52px, -90px);
    }

    .logo-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: auto;
    }

    .mascot-image {
        max-width: 200px;
    }

    .mascot-shadow {
        width: 120px;
        height: 15px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.pulse-heart {
    display: inline-block;
    animation: heartPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.9));
    }
}

.service-icon svg,
.step-icon svg,
.intro-icon svg,
.mv-icon svg,
.module-icon svg {
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg,
.timeline-step:hover .step-icon svg,
.intro-card:hover .intro-icon svg,
.mv-item:hover .mv-icon svg {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    transform: scale(1.1);
}

.timeline-step.highlight .step-icon svg {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.6));
        transform: scale(1.05);
    }
}

.info-icon,
.social-icon,
.badge-icon,
.orbit-item,
.diamond-icon,
.btn-icon {
    filter: brightness(0.4) saturate(0.5) contrast(1.4) drop-shadow(0 0 6px rgba(0, 212, 255, 0.2));
    opacity: 0.85;
}

.info-item:hover .info-icon {
    filter: brightness(0.6) saturate(0.7) contrast(1.5) drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
    opacity: 1;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-whatsapp {
    color: #25D366 !important;
    font-weight: 600;
}

.nav-whatsapp:hover {
    color: #128C7E !important;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Share Tech Mono', monospace;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.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;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.whatsapp-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: #fff;
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
