.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

html.lenis,
html.lenis html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

button, a, [onclick] {
    cursor: pointer !important;
}

body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

button, a, [onclick] {
    cursor: pointer !important;
}

body {
    background-color: #0e0e0e;
    color: #e5e2e1;
    overflow-x: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

body::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-hover:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
}

.text-gradient {
    background: linear-gradient(to bottom right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(107, 216, 203, 0.05) 0%, transparent 40%);
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.animate-scroll-line {
    animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* Hero Geometric Styles */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.animate-float {
    animation: float 12s ease-in-out infinite;
}

.elegant-shape {
    position: absolute;
    border-radius: 9999px;
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
}

.elegant-shape::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
}

/* --- CHATBOT WIDGET CSS --- */
:root {
    --dn-green: #2F8B65;
    --dn-green-light: #3fa77a;
    --dn-green-dark: #1b5e41;
    --bg-chat-main: #0f1115;
    --bg-chat: #15181d;
    --bg-bot: rgba(255, 255, 255, 0.02);
    --chat-border: rgba(255, 255, 255, 0.05);
    --chat-text: #e6edf3;
    --chat-text-soft: rgba(255, 255, 255, 0.6);
    --chat-text-dim: rgba(255, 255, 255, 0.4);
}

#chat-widget-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Inter', sans-serif;
}

#chat-widget-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dn-green), var(--dn-green-light));
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(47, 139, 101, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
}

#chat-widget-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(47, 139, 101, 0.6);
}

#chat-widget-toggle svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

#dn-app-wrapper {
    background-color: var(--bg-chat-main);
    color: var(--chat-text);
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 120px);
    max-width: calc(100vw - 48px);
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--chat-border);
    margin-bottom: 20px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#dn-app-wrapper.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-close-btn {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 50;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--chat-border);
    backdrop-filter: blur(10px);
    color: var(--chat-text-soft);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.background-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: normal;
    filter: blur(128px);
    animation: pulse 10s infinite alternate;
}

.blob-1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(47, 139, 101, 0.15);
}

.blob-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(63, 167, 122, 0.1);
    animation-delay: 2s;
}

.blob-3 {
    top: 25%;
    right: 33%;
    width: 16rem;
    height: 16rem;
    background-color: rgba(27, 94, 65, 0.15);
    filter: blur(96px);
    animation-delay: 4s;
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05) translate(20px, 20px);
        opacity: 1;
    }

    100% {
        transform: scale(0.95) translate(-20px, -20px);
        opacity: 0.8;
    }
}

.chat-app-container {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 1rem;
}

.chat-hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.6s ease-out forwards;
}

.hero-header {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-header .logo {
    height: 40px;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 0.8rem;
    color: var(--chat-text-dim);
}

.suggestions-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.suggestion-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    color: var(--chat-text-soft);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.suggestion-btn svg {
    width: 1rem;
    height: 1rem;
}

.suggestion-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.chat-box {
    display: none;
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
    margin-bottom: 1rem;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    margin-top: 3rem;
}

.chat-box::-webkit-scrollbar {
    width: 6px;
}

.chat-box::-webkit-scrollbar-track {
    background: transparent;
}

.chat-box::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chat-box.active {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

.msg {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    max-width: 85%;
    font-size: 0.875rem;
    line-height: 1.5;
    animation: fadeUp 0.3s ease;
    word-wrap: break-word;
}

.msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--dn-green), var(--dn-green-light));
    color: white;
    box-shadow: 0 4px 15px rgba(47, 139, 101, 0.3);
    border-bottom-right-radius: 0.25rem;
}

.msg.bot {
    align-self: flex-start;
    background: var(--bg-bot);
    border: 1px solid var(--chat-border);
    color: var(--chat-text);
    border-bottom-left-radius: 0.25rem;
    backdrop-filter: blur(10px);
}

.typing-indicator {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--chat-border);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.typing-avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.typing-text {
    font-size: 0.8rem;
    color: var(--chat-text-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dots {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.dot {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: typingBounce 1.2s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.15s;
}

.dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typingBounce {

    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.input-wrapper {
    margin-top: auto;
    width: 100%;
}

.input-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--chat-border);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.input-container:focus-within {
    border-color: rgba(47, 139, 101, 0.5);
    box-shadow: 0 0 20px rgba(47, 139, 101, 0.15), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.textarea-wrapper {
    padding: 0.75rem 1rem;
}

#userInput {
    width: 100%;
    min-height: 40px;
    max-height: 100px;
    background: transparent;
    border: none;
    resize: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
}

#userInput::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.input-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--chat-border);
}

.actions-left {
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--chat-text-dim);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.icon-btn svg {
    width: 1rem;
    height: 1rem;
}

.icon-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.icon-btn.recording {
    color: #ef4444;
    animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.send-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: var(--chat-text-dim);
}

.send-btn.active {
    background: white;
    color: #0A0A0B;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.send-btn.active:hover {
    transform: scale(1.02);
}

.send-btn.active:active {
    transform: scale(0.98);
}

.send-btn svg {
    width: 1rem;
    height: 1rem;
}

.action-divider {
    width: 1px;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.25rem;
}

.model-selector-inline {
    position: relative;
    display: flex;
    align-items: center;
}

.model-toggle-inline {
    background: transparent;
    border: none;
    color: var(--chat-text-soft);
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: inherit;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.model-toggle-inline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.model-toggle-inline .chevron {
    width: 0.8rem;
    height: 0.8rem;
    transition: transform 0.3s ease;
}

.model-toggle-inline.open .chevron {
    transform: rotate(180deg);
}

.model-menu-inline {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 0;
    width: 180px;
    background: var(--bg-chat);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.2s ease;
    z-index: 100;
}

.model-menu-inline.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.model-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.model-option:hover {
    background: rgba(255, 255, 255, 0.03);
}

.model-option.active {
    background: rgba(47, 139, 101, 0.1);
    border-color: rgba(47, 139, 101, 0.3);
}

.model-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.3rem;
    color: var(--chat-text-soft);
}

.model-option.active .model-icon {
    color: var(--dn-green-light);
    background: rgba(47, 139, 101, 0.2);
}

.model-icon svg {
    width: 1rem;
    height: 1rem;
}

.model-name {
    font-size: 0.75rem;
    color: var(--chat-text);
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--dn-green-light);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
}

.model-option.active .check-icon {
    opacity: 1;
    transform: scale(1);
}

.top-actions {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    gap: 0.5rem;
}

.top-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--chat-border);
    backdrop-filter: blur(10px);
    color: var(--chat-text-soft);
    padding: 0.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.top-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.top-btn svg {
    width: 1rem;
    height: 1rem;
}

.btn-text {
    display: none;
}

.chat-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1.2rem;
}

.chat-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.chat-modal-content {
    background: var(--bg-chat);
    border: 1px solid var(--chat-border);
    border-radius: 1rem;
    width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.chat-modal-overlay.active .chat-modal-content {
    transform: translateY(0);
}

.chat-modal-header {
    padding: 1rem;
    border-bottom: 1px solid var(--chat-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-modal-header h2 {
    font-size: 1rem;
    font-weight: 500;
}

.chat-close-modal-btn {
    background: transparent;
    border: none;
    color: var(--chat-text-soft);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
}

.chat-close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.chat-close-modal-btn svg {
    width: 1rem;
    height: 1rem;
}

.history-list {
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 300px;
}

.history-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    color: var(--chat-text);
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--chat-border);
}

.history-title {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-date {
    font-size: 0.7rem;
    color: var(--chat-text-dim);
}

.empty-history {
    text-align: center;
    color: var(--chat-text-dim);
    font-size: 0.85rem;
    padding: 2rem 0;
}

.recording-loader-overlay {
    position: absolute;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1.2rem;
}

.recording-loader-overlay.active {
    display: flex;
    opacity: 1;
}

.recording-loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.loader-letter {
    color: white;
    opacity: 0.4;
    animation: loaderLetter 3s infinite;
    font-size: 1rem;
    font-weight: 500;
}

.loader-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: loaderCircle 5s linear infinite;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.gm-fade {
    animation: fadeSlideIn 0.8s ease-out forwards;
    opacity: 0;
}

.gm-marquee {
    animation: marqueeScroll 40s linear infinite;
}

.gm-d1 {
    animation-delay: 0.1s;
}

.gm-d2 {
    animation-delay: 0.2s;
}

.gm-d3 {
    animation-delay: 0.3s;
}

.gm-d4 {
    animation-delay: 0.4s;
}

.gm-d5 {
    animation-delay: 0.5s;
}



@keyframes orbit-1 {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes orbit-2 {
    from {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
    }

    to {
        transform: rotate(-360deg) translateX(180px) rotate(360deg);
    }
}

@keyframes orbit-3 {
    from {
        transform: rotate(0deg) translateX(240px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(240px) rotate(-360deg);
    }
}

.node-orbit-1 {
    animation: orbit-1 20s linear infinite;
}

.node-orbit-2 {
    animation: orbit-2 25s linear infinite;
}

.node-orbit-3 {
    animation: orbit-3 30s linear infinite;
}

/* Media query para telas menores (ajustar raio da órbita) */
@media (max-width: 640px) {
    @keyframes orbit-1 {
        from {
            transform: rotate(0deg) translateX(90px) rotate(0deg);
        }

        to {
            transform: rotate(360deg) translateX(90px) rotate(-360deg);
        }
    }

    @keyframes orbit-2 {
        from {
            transform: rotate(0deg) translateX(130px) rotate(0deg);
        }

        to {
            transform: rotate(-360deg) translateX(130px) rotate(360deg);
        }
    }

    @keyframes orbit-3 {
        from {
            transform: rotate(0deg) translateX(170px) rotate(0deg);
        }

        to {
            transform: rotate(360deg) translateX(170px) rotate(-360deg);
        }
    }
}

/* --- Sticky Navbar Scroll Effect --- */
#main-header.scrolled-nav {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    width: 90% !important;
    max-width: 800px !important;
    border-radius: 40px !important;
    margin-top: 1.5rem !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transform: translateY(0) !important;
}

.dark #main-header.scrolled-nav {
    background: rgba(20, 20, 20, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(47, 107, 101, 0.15) !important;
}