/* Video Intro Overlay */
.intro-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.skip-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(189, 0, 255, 0.15);
    border: 1px solid rgba(189, 0, 255, 0.3);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-tech);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.skip-btn:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    transform: translateX(5px);
}

/* 16:9 Container holding the First Fold */
.viewport-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-black);
    overflow: hidden;
}

/* Video Background Container (index.html) */
.video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 58vw;
    height: 100vh;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#hero-video {
    width: 110%;
    height: 110%;
    object-fit: cover;
    opacity: 0.82;
    filter: brightness(1);
    /* Clean feather fades to black on left/top/bottom */
    mask-image: radial-gradient(circle at 65% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%),
        linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 1) 35%);
    -webkit-mask-image: radial-gradient(circle at 65% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%),
        linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 1) 35%);
}

/* Ambient Glows */
.ambient-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(189, 0, 255, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
}

.ambient-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

/* Extremely subtle tech grid overlay blending into pure black background */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 2;
}

/* Magic Morph Effect */
.magic-morph {
    position: relative;
    display: inline-block;
    transition: var(--transition-smooth);
}

.magic-morph .magic-text {
    display: inline-block;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.magic-morph.magic-active .magic-text {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8),
        0 0 20px rgba(189, 0, 255, 0.6),
        0 0 30px rgba(189, 0, 255, 0.4);
    animation: magic-flicker 0.15s infinite alternate;
}

@keyframes magic-flicker {
    0% {
        opacity: 0.9;
        transform: skewX(-1deg);
    }

    100% {
        opacity: 1;
        transform: skewX(1deg) scale(1.02);
    }
}

.header-cta {
    text-decoration: none;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
    font-family: var(--font-tech);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta:hover {
    border-color: var(--color-purple);
    background: rgba(189, 0, 255, 0.05);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Content Layout */
.hero-container {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 100px 80px 0 80px;
    z-index: 5;
    pointer-events: none;
}

/* Content occupies maximum 80% of the width, leaving the right side clear for background animation */
.hero-content {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    pointer-events: auto;
}

/* Futuristic Premium Badge */
.badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(189, 0, 255, 0.02);
    border: 1px solid rgba(189, 0, 255, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    box-shadow: inset 0 0 10px rgba(189, 0, 255, 0.05), 0 0 15px rgba(189, 0, 255, 0.05);
    transition: var(--transition-smooth);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-purple);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-purple);
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 12px;
    height: 12px;
    border: 1px solid var(--color-purple);
    border-radius: 50%;
    animation: pulse-ping 2s infinite;
}

.badge:hover {
    border-color: rgba(189, 0, 255, 0.4);
    background: rgba(189, 0, 255, 0.05);
}

/* Title with Premium Gradient Typography */
.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 4.3vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--color-white);
}

span.gradient-text {
    font-family: var(--font-highlight);
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-text);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-gray-400);
    max-width: 90%;
}

/* Call To Action Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    background: rgba(10, 10, 15, 0.7);
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 8px;
    padding: 14px 28px 14px 54px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition-smooth);
    margin-left: 24px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 1.5px;
    background: linear-gradient(90deg, #bd00ff, #0055ff, #00f0ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.btn-icon {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0d0d12;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 25px rgba(189, 0, 255, 0.3);
}

.btn-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #bd00ff, #00f0ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transition: var(--transition-smooth);
}

.btn-text,
.btn-primary i.fa-arrow-right {
    position: relative;
    z-index: 1;
}

.btn-primary i.fa-arrow-right {
    margin-left: 14px;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
    transform: scale(1.02);
}

.btn-primary:hover .btn-icon {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover .btn-icon::before {
    background: linear-gradient(135deg, #00f0ff, #bd00ff);
}

.btn-primary:hover .btn-icon svg {
    transform: rotate(45deg) scale(1.1);
}

.btn-primary:hover i.fa-arrow-right {
    transform: translateX(6px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(189, 0, 255, 0.25);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 500;
    font-family: var(--font-tech);
    font-size: 15px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: rgba(189, 0, 255, 0.45);
    background: rgba(189, 0, 255, 0.04);
    transform: translateY(-3px);
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 50px;
    width: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px 40px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    position: relative;
    align-items: center;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:first-child {
    padding-left: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 85, 255, 0.4);
    box-shadow: inset 0 0 15px rgba(189, 0, 255, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    margin-bottom: 8px;
}

/* Outer ring */
.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px solid rgba(189, 0, 255, 0.3);
    transition: var(--transition-smooth);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke-width: 1.5;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 6px rgba(189, 0, 255, 0.5));
}

.feature-card:hover .feature-icon-wrapper {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.3), 0 0 15px rgba(0, 240, 255, 0.2);
}

.feature-card:hover .feature-icon-wrapper::before {
    border-color: rgba(189, 0, 255, 0.6);
    transform: scale(1.05);
}

.feature-title {
    font-size: 19px;
    font-weight: 500;
    color: var(--color-white);
    font-family: var(--font-headline);
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-weight: 300;
    font-family: var(--font-text);
}

/* Arcane Rune Element */
.arcane-rune {
    margin-top: auto;
    /* Push to bottom */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20px;
    color: rgba(189, 0, 255, 0.8);
    font-size: 14px;
    text-shadow: 0 0 8px rgba(189, 0, 255, 0.8);
    transition: var(--transition-smooth);
}

.arcane-rune::before,
.arcane-rune::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(189, 0, 255, 0.3));
}

.arcane-rune::before {
    right: 55%;
}

.arcane-rune::after {
    left: 55%;
    background: linear-gradient(270deg, transparent, rgba(189, 0, 255, 0.3));
}

.feature-card:hover .arcane-rune {
    color: rgba(0, 240, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
    transform: scale(1.1);
}

.feature-card:hover .arcane-rune::before,
.feature-card:hover .arcane-rune::after {
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5));
}

.feature-card:hover .arcane-rune::after {
    background: linear-gradient(270deg, transparent, rgba(0, 240, 255, 0.5));
}

/* Tech Stats Footer (Bottom of Fold) */
.hero-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 30px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(189, 0, 255, 0.15);
    background: rgba(189, 0, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bd00ff;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.05);
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-tech);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.stat-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Background Container */
.video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 58vw;
    height: 100vh;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#hero-video {
    width: 110%;
    height: 110%;
    object-fit: cover;
    opacity: 0.82;
    filter: brightness(1);

    /* Clean feather fades to black on left/top/bottom */
    mask-image: radial-gradient(circle at 65% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%),
        linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 1) 35%);
    -webkit-mask-image: radial-gradient(circle at 65% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%),
        linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 1) 35%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

/* Custom Keyframe Animations */
@keyframes pulse-ping {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes line-slide {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 0;
    }

    .header-container {
        padding: 10px 40px;
    }

    .header-container::after {
        display: none;
    }

    nav {
        display: none;
        /* Hide main links on smaller screens for clean layout */
    }

    .hero-container {
        padding: 0 40px;
    }

    .hero-content {
        max-width: 70%;
    }

    .video-wrapper {
        width: 100%;
        opacity: 0.5;
        /* Blend completely under the text when stacked */
        mask-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 1) 50%);
        -webkit-mask-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 1) 50%);
    }

    .hero-footer {
        padding: 30px 40px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

/* About Us Section Styles */
.about-section {
    position: relative;
    z-index: 5;
    background-color: transparent;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.sticky-content {
    position: relative;
    min-height: 100vh;
    height: auto;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}



/* Mouse Parallax wrapper */
.video-parallax-wrapper {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.video-parallax-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /* Glowing faded borders using the color palette */

    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8), inset 0 0 200px rgba(189, 0, 255, 0.3);
}

/* Ambient corner glow elements that fade in with the content */
.corner-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(160px);
    opacity: 0.8;
    visibility: visible;
    mix-blend-mode: screen;
    will-change: opacity;
}

.corner-glow.glow-purple-pink {
    background: radial-gradient(circle, rgba(189, 0, 255, 0.25) 0%, rgba(255, 0, 128, 0.15) 70%, transparent 100%);
}

.corner-glow.glow-cyan-blue {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(0, 85, 255, 0.1) 70%, transparent 100%);
}

.corner-glow.top-left {
    top: -15%;
    left: -15%;
}

.corner-glow.bottom-right {
    bottom: -15%;
    right: -15%;
}

#intro2-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: transform;
}

.about-card {
    width: 100%;
    max-width: 1280px;
    margin: 0px auto 0 auto;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: auto;
}

.about-hero-block {
    flex-direction: row;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 50px;
    background: none;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 40px 20px;
    min-height: 450px;
    margin-top: 3rem;
}

.monolith-wrapper {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.monolith-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15) 0%, rgba(0, 229, 255, 0.1) 60%, rgba(255, 0, 200, 0.05) 100%);
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.monolith-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    background: rgba(5, 5, 8, 0.7);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    margin-left: 20px;
    max-width: 480px;
    margin-right: 5rem;
    border: 1px solid #00bcd4
}

.about-badge {
    align-self: flex-start;
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}



.about-title {
    font-size: clamp(2.2rem, 2.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.title-highlight {
    color: #00e5ff;
}

.about-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-white);
    font-weight: 400;
}

.about-desc:first-of-type {
    color: var(--color-white);
    font-weight: 500;
}

.btn-jornada {
    margin-top: 10px;
    align-self: flex-start;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    background: transparent;
    border: 1px solid var(--color-purple);
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-jornada:hover {
    background: rgba(189, 0, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.2);
}

.about-values-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.value-col {
    background-color: #000000b8;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.value-col:last-child {
    border-right: none;
}

.value-col:hover {
    background: rgba(255, 255, 255, 0.09);
}

.value-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
}

.value-col:hover .value-img {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 1));
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    font-family: var(--font-primary);

}

.value-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-400);
}

/* Products & Services Styles */
.products-section {
    position: relative;
    z-index: 5;
    background-color: transparent;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.products-container {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#intro3-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: transform;
}

.products-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.products-badge {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(189, 0, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(189, 0, 255, 0.2);
}

.products-title {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -1px;
    margin: 0;
}

.products-subtitle {
    font-size: 16px;
    color: var(--color-gray-400);
    max-width: 700px;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    min-height: 420px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.card-purple {
    border: 1px solid rgba(189, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.1);
}

.card-purple.p1 {
    padding-top: 12rem;
    background: url(../assets/img/vincullum_banner_home.png) no-repeat top center;
    background-size: 70%;
    background-color: #0a041a;
}


.card-blue {
    border: 1px solid rgba(0, 162, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.card-blue.p2 {
    padding-top: 12rem;
    background: url(../assets/img/sites_banner_home.png) no-repeat top center;
    background-size: 70%;
    background-color: #090d1e;
}

.card-cyan {
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.card-cyan.p3 {
    padding-top: 12rem;
    background: url(../assets/img/apps_banner_home.png) no-repeat top center;
    background-size: 70%;
    background-color: #090d1e;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(189, 0, 255, 0.15);
    border: 1px solid rgba(189, 0, 255, 0.3);
    color: #d884ff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 25px;
    margin-top: 10px;
}

.product-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 15px 0 5px 0;
    text-align: center;
}

.product-category {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 500;
    text-align: center;
    margin: 0 0 20px 0;
}

.product-desc {
    font-size: 13px;
    color: var(--color-gray-400);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: auto;
}

.feature-item {
    font-size: 12px;
    color: var(--color-gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-purple .feature-item i {
    color: #d884ff;
}

.card-blue .feature-item i {
    color: #00e5ff;
}

.card-footer {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    font-size: 12px;
    color: var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.products-bottom-banner {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.banner-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #d884ff;
    flex-shrink: 0;
    border: 1px solid rgba(189, 0, 255, 0.2);
}

.products-bottom-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--color-gray-300);
    line-height: 1.6;
    flex: 1;
}

.products-bottom-banner p strong {
    color: var(--color-white);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 5;
    background-color: transparent;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.contact-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 80px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#intro4-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: transform;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-title {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -1px;
}

.contact-desc {
    font-size: 16px;
    color: var(--color-gray-400);
    line-height: 1.6;
}

.social-spheres {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-sphere {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(189, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.1), inset 0 0 15px rgba(189, 0, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-sphere:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4), inset 0 0 20px rgba(0, 229, 255, 0.2);
    color: #00e5ff;
}

.social-sphere i {
    background: linear-gradient(135deg, #bd00ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.social-sphere:hover i {
    background: none;
    -webkit-text-fill-color: #00e5ff;
}

.contact-form-wrapper {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    color: var(--color-gray-300);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--color-white);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-purple);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(90deg, #8b5cf6, #bd00ff);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(189, 0, 255, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(189, 0, 255, 0.4);
    background: linear-gradient(90deg, #9d6ff7, #c833ff);
}

@media (max-width: 1150px) {
    .about-card {
        flex-direction: column;
    }

    .about-hero-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-bottom-banner {
        flex-direction: column;
        border-radius: 20px;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .about-values-block {
        grid-template-columns: 1fr 1fr;
    }

    .value-col:nth-child(2) {
        border-right: none;
    }

    .value-col:nth-child(1),
    .value-col:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .about-hero-block {
        flex-direction: column;
        text-align: center;
    }

    .monolith-wrapper {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-badge,
    .btn-jornada {
        align-self: center;
    }

    .about-badge::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-values-block {
        grid-template-columns: 1fr;
    }

    .value-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .value-col:last-child {
        border-bottom: none;
    }
}

/* Scroll Down Explorer Indicator */
.scroll-explorer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
    user-select: none;
}

.scroll-waveform {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 100px;
    z-index: -1;
    opacity: 0.5;
}

.waveform-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}

.waveform-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-wave 6s linear infinite;
}

@keyframes draw-wave {
    0% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

.scroll-mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1), inset 0 0 10px rgba(189, 0, 255, 0.1);
    animation: mouse-glow 4s ease-in-out infinite alternate;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: linear-gradient(to bottom, var(--color-cyan), var(--color-purple));
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scroll-wheel-anim 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    box-shadow: 0 0 6px var(--color-cyan);
}

.scroll-text {
    font-family: var(--font-tech);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-gray-400);
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(90deg, var(--color-gray-400), var(--color-white), var(--color-gray-400));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 3s linear infinite, text-glow 4s ease-in-out infinite alternate;
}

@keyframes scroll-wheel-anim {
    0% {
        transform: translateY(0);
        opacity: 0;
        height: 4px;
    }

    20% {
        opacity: 1;
        height: 8px;
    }

    60% {
        transform: translateY(12px);
        opacity: 0.3;
        height: 6px;
    }

    100% {
        transform: translateY(18px);
        opacity: 0;
        height: 4px;
    }
}

@keyframes mouse-glow {
    0% {
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
    }

    50% {
        border-color: var(--color-cyan);
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }

    100% {
        border-color: var(--color-purple);
        box-shadow: 0 0 20px rgba(189, 0, 255, 0.4);
    }
}

@keyframes text-shine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
    }

    50% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    }

    100% {
        text-shadow: 0 0 10px rgba(189, 0, 255, 0.3);
    }
}

@media (max-height: 750px),
(max-width: 768px) {
    .scroll-explorer {
        bottom: 20px;
        gap: 8px;
    }

    .scroll-waveform {
        display: none;
    }

    .scroll-mouse-icon {
        width: 20px;
        height: 34px;
    }

    .scroll-wheel {
        top: 5px;
        animation: scroll-wheel-anim-mobile 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    }

    .scroll-text {
        font-size: 8px;
        letter-spacing: 2px;
    }
}

@keyframes scroll-wheel-anim-mobile {
    0% {
        transform: translateY(0);
        opacity: 0;
        height: 3px;
    }

    20% {
        opacity: 1;
        height: 6px;
    }

    60% {
        transform: translateY(8px);
        opacity: 0.3;
        height: 4px;
    }

    100% {
        transform: translateY(14px);
        opacity: 0;
        height: 3px;
    }
}




/* Animated Words Parallax */
.transition-words {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.magic-word {
    position: absolute;
    font-family: var(--font-primary);
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0;
    white-space: nowrap;
}

/* Destaques (1, 2, 3) */
.word-1 {
    font-size: clamp(3rem, 5vw, 6rem);
    color: var(--color-purple);
    left: 15%;
    top: 60%;
    text-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
}

.word-2 {
    font-size: clamp(4rem, 6vw, 7rem);
    color: transparent;
    -webkit-text-stroke: 2px var(--color-cyan);
    right: 15%;
    top: 45%;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.word-3 {
    font-size: clamp(2.5rem, 4vw, 5rem);
    background: linear-gradient(90deg, #00f0ff, #bd00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 45%;
    transform: translateX(-50%);
    top: 25%;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Menores (4 ao 16) */
.word-4 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    left: 5%;
    top: 20%;
}

.word-5 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    right: 10%;
    top: 15%;
}

.word-6 {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    left: 30%;
    top: 10%;
}

.word-7 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    right: 35%;
    top: 25%;
}

.word-8 {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    left: 10%;
    top: 40%;
}

.word-9 {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5);
    right: 25%;
    top: 35%;
}

.word-10 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    left: 40%;
    top: 50%;
}

.word-11 {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
    right: 8%;
    top: 65%;
}

.word-12 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    left: 25%;
    top: 70%;
}

.word-13 {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.7);
    right: 40%;
    top: 80%;
}

.word-14 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    left: 50%;
    top: 85%;
}

.word-15 {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.8);
    left: 12%;
    top: 88%;
}

.word-16 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    right: 20%;
    top: 90%;
}


.section-header {
    margin-bottom: 50px;
}

.section-badge {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    display: inline-block;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 2.8vw, 3rem);
    color: var(--color-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-subtitle {
    font-size: 14.5px;
    color: var(--color-gray-600);
    margin-top: 8px;
    letter-spacing: 1px;
}

/* SHARED LAYOUT: PAGE INDICATORS & CONTENT WRAPPERS
   ========================================================================== */
.page-banner {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--color-black) 0%, transparent 20%, transparent 80%, var(--color-black) 100%),
        linear-gradient(0deg, var(--color-black) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.page-banner-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-headline);
    font-size: 80px;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(189, 0, 255, 0.8), 0 0 40px rgba(0, 240, 255, 0.6);
    letter-spacing: 2px;
    text-align: center;
    cursor: default;
}

@media (max-width: 768px) {
    .page-banner {
        height: 350px;
    }

    .page-banner-title {
        font-size: 50px;
    }
}

.indicator-bar {
    width: 100%;
    padding: 60px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 140px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.indicator-line {
    width: 60%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-purple), transparent);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
    margin-bottom: 25px;
    position: relative;
}

.indicator-line::after {
    content: '✨';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-cyan);
    font-size: 14px;
    text-shadow: 0 0 10px var(--color-cyan);
}

.indicator-title {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 3.2vw, 3.8rem);
    font-weight: 800;
    letter-spacing: 6px;
    color: var(--color-white);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.indicator-rune {
    color: var(--color-cyan);
    text-shadow: 0 0 8px var(--color-cyan);
    font-size: 0.8em;
}

.indicator-subtitle {
    font-family: var(--font-tech);
    font-size: 11px;
    color: var(--color-gray-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
}

.content-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 20px auto 80px auto;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

/* PAGE SPECIFIC: SERVICOS.HTML
   ========================================================================== */
/* Testimonials Section Styles */
.testimonials-section {
    margin-top: 100px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 260px auto 0 auto;
}

.testimonial-card {
    background: rgba(8, 8, 15, 0.85);
    border: 1.5px solid rgba(0, 160, 255, 0.3);
    border-radius: 24px;
    padding: 170px 40px 40px 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(189, 0, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.25), inset 0 0 25px rgba(189, 0, 255, 0.25);
    transform: translateY(-5px);
}

/* Card corner highlights */
.card-decor {
    position: absolute;
    font-size: 10px;
    color: var(--color-cyan);
    text-shadow: 0 0 8px var(--color-cyan);
    pointer-events: none;
    user-select: none;
}

.card-decor.tl {
    top: 15px;
    left: 15px;
}

.card-decor.tr {
    top: 15px;
    right: 15px;
}

.card-decor.bl {
    bottom: 15px;
    left: 15px;
}

.card-decor.br {
    bottom: 15px;
    right: 15px;
}

/* Magical Avatar Container */
.avatar-magical-container {
    position: relative;
    width: 100%;
    height: 470px;
    margin-top: -406px;
    margin-bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.avatar-axis-h {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 85, 255, 0.4), rgba(0, 240, 255, 0.7), rgba(0, 85, 255, 0.4), transparent);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    z-index: 1;
}

.crystal {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #bd00ff, #00f0ff);
    border: 1px solid #00f0ff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8), 0 0 20px rgba(189, 0, 255, 0.6);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 2;
}

.crystal-left {
    left: 12%;
    top: 50%;
}

.crystal-right {
    right: 12%;
    top: 50%;
}

.crystal-top {
    left: 50%;
    top: 30px;
}

.crystal-bottom {
    left: 50%;
    bottom: 30px;
}

.testimonial-avatar-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.runic-ring-svg {
    position: absolute;
    width: 320px;
    height: 320px;
    animation: rotate-ring 35s linear infinite;
    transform-origin: center;
    pointer-events: none;
    z-index: 1;
}

.ring-text {
    font-family: var(--font-tech);
    font-size: 14px;
    fill: #e0e7ff;
    letter-spacing: 6px;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.9), 0 0 24px rgba(189, 0, 255, 0.8);
    dominant-baseline: middle;
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.testimonial-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 240, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    z-index: 2;
}

/* Quote Container */
.quote-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px 0 45px;
    margin-top: 15px;
}

.quote-icon {
    position: absolute;
    left: 10px;
    top: -5px;
    font-size: 26px;
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(0, 85, 255, 0.6);
    font-family: var(--font-headline);
}

.testimonial-text {
    font-size: 14.5px;
    color: #d3e1f3;
    line-height: 1.8;
    text-align: center;
    font-weight: 400;
}

/* Divider Line */
.testimonial-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), rgba(189, 0, 255, 0.2), transparent);
    margin: 25px 0;
    position: relative;
}

.testimonial-divider::after {
    content: '✦';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-cyan);
    font-size: 8px;
    text-shadow: 0 0 6px var(--color-cyan);
}

.author-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
    text-shadow: 0 0 8px #00f0ff;
    font-size: 14px;
}

.testimonial-role {
    font-family: var(--font-tech);
    font-size: 11px;
    color: var(--color-cyan);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 0 8px var(--color-cyan);
}

.stars-decor {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
}

.stars-decor span {
    color: var(--color-cyan);
    text-shadow: 0 0 10px var(--color-cyan), 0 0 20px rgba(189, 0, 255, 0.6);
    font-size: 14px;
}

/* Portfolio Section Styles */
.portfolio-section {
    margin-top: 100px;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.portfolio-card {
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
    transform: translateY(-5px);
}

.portfolio-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    /* 5:3 Aspect Ratio */
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-thumb-wrapper::after {
    content: 'ᛏᛒᛖᛗᛚᛜ';
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-family: var(--font-tech);
    font-size: 10px;
    color: var(--color-cyan);
    text-shadow: 0 0 5px var(--color-cyan);
    opacity: 0.6;
    z-index: 2;
}

.portfolio-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-thumb {
    transform: scale(1.08);
}

.portfolio-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    flex: 1;
}

.portfolio-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.portfolio-desc {
    font-size: 13.5px;
    color: var(--color-gray-400);
    line-height: 1.6;
}

/* Premium Footer */
footer {
    background: rgba(8, 8, 12, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 80px 40px 80px;
    margin-top: 80px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    align-self: flex-start;
    filter: drop-shadow(0 0 10px rgba(189, 0, 255, 0.1));
}

.footer-desc {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 360px;
}

.footer-center h4,
.footer-right h4 {
    font-family: var(--font-tech);
    font-size: 12px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-center ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-center ul a {
    text-decoration: none;
    color: var(--color-gray-400);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-center ul a:hover {
    color: var(--color-cyan);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.2);
    padding-left: 4px;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.social-spheres {
    display: flex;
    gap: 15px;
}

.social-sphere {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(189, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(189, 0, 255, 0.05);
    backdrop-filter: blur(5px);
}

.social-sphere:hover {
    transform: translateY(-5px) scale(1.08);
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    color: #00e5ff;
}

.social-sphere i {
    background: linear-gradient(135deg, #bd00ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.social-sphere:hover i {
    background: none;
    -webkit-text-fill-color: #00e5ff;
}

.footer-bottom {
    width: 100%;
    max-width: 1280px;
    margin: 60px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-gray-600);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    header {
        padding: 0;
    }

    .header-container {
        padding: 10px 40px;
    }

    nav {
        display: none;
        /* Hide main links on smaller screens for clean layout */
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 60px 40px 30px 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .about-hero-block {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .monolith-wrapper {
        margin-bottom: 10px;
        flex: 0 0 260px;
    }

    .rune-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rune-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .action-block {
        padding: 40px 20px;
    }
}

/* Potion Epic Animations */
.potion-img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
    animation: float-potion 4s ease-in-out infinite;
    cursor: pointer;
}

.rune-item:hover .potion-img {
    transform: scale(1.15) translateY(-10px);
}

.rune-item.cyan:hover .potion-img {
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.8)) drop-shadow(0 0 50px rgba(0, 240, 255, 0.5)) !important;
}

.rune-item.green:hover .potion-img {
    filter: drop-shadow(0 0 25px rgba(0, 255, 128, 0.8)) drop-shadow(0 0 50px rgba(0, 255, 128, 0.5)) !important;
}

.rune-item.purple:hover .potion-img {
    filter: drop-shadow(0 0 25px rgba(189, 0, 255, 0.8)) drop-shadow(0 0 50px rgba(189, 0, 255, 0.5)) !important;
}

.rune-item.orange:hover .potion-img {
    filter: drop-shadow(0 0 25px rgba(255, 165, 0, 0.8)) drop-shadow(0 0 50px rgba(255, 165, 0, 0.5)) !important;
}

@keyframes float-potion {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ==========================================================================
/* PAGE SPECIFIC: SERVI�OS CSS CLEANUP
   ========================================================================== */

.page-services .about-card {
    background-image: url('../assets/img/bkg_servicos.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    border: none;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.page-services .about-hero-block {
    background: none;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 40px 20px;
    min-height: 450px;
}

.page-services .about-text-block {
    flex: 1;
    background: rgba(5, 5, 8, 0.7);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    margin-left: 20px;
}

.page-services .about-badge {
    color: #bd00ff;
    border: none;
    background: none;
    font-weight: 600;
    padding: 0;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.page-services .about-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-services .about-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-services .about-desc:last-of-type {
    margin-bottom: 0;
}

.page-services .rune-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
    padding: 0 20px 40px 20px;
    background: none;
    box-shadow: none;
    border: none;
}

.page-services .rune-item {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: none;
    backdrop-filter: none;
    height: 100%;
}

.page-services .potion-img {
    width: 100%;
    max-width: 190px;
    margin-bottom: 20px;
}

.page-services .potion-text-box {
    background: rgba(8, 8, 15, 0.7);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
}

/* Individual Potion Colors */
.page-services .rune-item.cyan .potion-img {
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.2));
}

.page-services .rune-item.cyan .potion-text-box {
    border: 1.5px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.15);
}

.page-services .rune-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-cyan);
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.page-services .rune-item.green .potion-img {
    filter: drop-shadow(0 0 10px rgba(0, 255, 128, 0.2));
}

.page-services .rune-item.green .potion-text-box {
    border: 1.5px solid rgba(0, 255, 128, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 255, 128, 0.15);
}

.page-services .rune-item.purple .potion-img {
    filter: drop-shadow(0 0 10px rgba(189, 0, 255, 0.2));
}

.page-services .rune-item.purple .potion-text-box {
    border: 1.5px solid rgba(189, 0, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(189, 0, 255, 0.15);
}

.page-services .rune-item.orange .potion-img {
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.2));
}

.page-services .rune-item.orange .potion-text-box {
    border: 1.5px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 165, 0, 0.15);
}