[ignoring loop detection]
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #f7f5f9;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations & Glass Effects */
@keyframes animationIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 1;
}

/* Desativar animações pesadas no mobile/tablet para carregamento instantâneo */
@media (max-width: 1023px) {
    .animate-on-scroll {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

.glass-effect {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* GPU hardware acceleration for parallax images to prevent flickering */
img[src*="bg01"],
img[src*="bg02"],
img[src*="bg03"] {
    will-change: transform, scale;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

/* DS CORE FRAMEWORK (MODULAR CLASSES) */

/* 1. TYPOGRAPHY */
.ds-h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.375rem;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: normal;
    color: #111827;
}

.ds-h1-light {
    color: #ffffff;
}

@media (min-width: 768px) {
    .ds-h1 {
        font-size: 4rem;
    }
}

.ds-h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: normal;
    color: #111827;
}

.ds-h2-light {
    color: #ffffff;
}

@media (min-width: 768px) {
    .ds-h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .ds-h2 {
        font-size: 3.75rem;
    }
}

.ds-h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.875rem;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: normal;
    color: #111827;
}

.ds-h3-light {
    color: #ffffff;
}

@media (min-width: 1024px) {
    .ds-h3 {
        font-size: 2.25rem;
    }
}

.ds-h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.375;
    font-weight: 500;
    letter-spacing: normal;
    color: #111827;
}

.ds-h4-light {
    color: #ffffff;
}

.ds-p-lg {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.625;
    color: #374151;
}

.ds-p-md {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.625;
    color: #374151;
}

.ds-p-sm {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.625;
    color: #4b5563;
}

.ds-p-light {
    color: #9ca3af;
}

.ds-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #111827;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ds-subtitle-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.ds-label {
    font-family: monospace;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 2. LAYOUT */
.ds-container {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .ds-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1024px) {
    .ds-container {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

.ds-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.ds-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ds-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* 3. BUTTONS */
.ds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.ds-btn-lg {
    padding: 0.75rem 2rem;
}

.ds-btn-md {
    padding: 0.375rem 1rem;
}

.ds-btn-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    padding: 0;
}

.ds-btn-disabled {
    pointer-events: none;
    opacity: 0.6;
}

.ds-btn-primary {
    background-color: #2f2461;
    color: #ffffff;
}

.ds-btn-primary:hover {
    background-color: #1f2937;
}

.ds-btn-white {
    background-color: #ffffff;
    color: #000000;
}

.ds-btn-white:hover {
    background-color: #f7f5f9;
}

.ds-btn-brand {
    background-color: #75449c;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(117, 68, 156, 0.25);
}

.ds-btn-brand:hover {
    background-color: #2f2461;
}

.ds-btn-outline {
    background-color: transparent;
    border: 1px solid #d1d5db;
    color: #111827;
}

.ds-btn-outline:hover {
    background-color: #f9fafb;
}

.ds-btn-outline-light {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.ds-btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ds-btn-ghost {
    background-color: transparent;
    border-bottom: 1px solid #111827;
    border-radius: 0;
    padding: 0 0 0.125rem 0;
    color: #111827;
}

.ds-btn-ghost:hover {
    color: #75449c;
    border-color: #75449c;
}

.ds-btn-ghost-light {
    background-color: transparent;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    padding: 0 0 0.125rem 0;
    color: #ffffff;
}

.ds-btn-ghost-light:hover {
    color: #a78fc9;
    border-color: #a78fc9;
}

/* 4. CARDS & SURFACES */
.ds-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.ds-card-interactive:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.ds-card-dark {
    background-color: #2f2461;
    border-radius: 1.5rem;
    border: 1px solid #1f2937;
    padding: 2rem;
}

.ds-card-glass {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

/* 5. COMPONENTS */
.ds-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.ds-pill-brand {
    background-color: rgba(167, 143, 201, 0.1);
    border: 1px solid rgba(167, 143, 201, 0.3);
    color: #75449c;
}

.ds-pill-white {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ds-pill-dark {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
}

.ds-accordion {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.ds-accordion-dark {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Layout Utilities */
.hero-container {
    min-height: 100vh;
    height: auto;
    width: 100%;
    position: relative;
}

/* Infinite Editorial Carousel */
.feature-carousel-v3 {
    padding: 80px 0 100px !important;
    overflow: visible !important;
}

.swiper {
    overflow: visible !important;
}

.swiper-wrapper {
    overflow: visible !important;
}

.carousel-slide {
    width: min(950px, 90vw) !important;
    height: 480px;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    opacity: 0.4;
    filter: blur(6px);
    cursor: pointer;
}

@media (max-width: 767px) {
    .carousel-slide {
        filter: none !important;
    }
}

@media (min-width: 768px) {
    .carousel-slide {
        height: 650px;
        border-radius: 4rem;
    }
}

.carousel-slide.swiper-slide-active {
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.swiper-slide-next,
.swiper-slide-prev {
    z-index: 10 !important;
    opacity: 0.6;
}

.slide-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.35, 1);
}

.carousel-slide.swiper-slide-active .slide-bg-image {
    transform: scale(1.12);
}

.carousel-slide.swiper-slide-active:hover .slide-bg-image {
    transform: scale(1.20) !important;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 22, 53, 0.98) 0%, rgba(26, 22, 53, 0.9) 45%, rgba(26, 22, 53, 0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 95%;
    padding: 2.5rem 2rem;
    color: #ffffff;
    transition: transform 0.8s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .slide-content {
        width: 85%;
        padding: 5rem;
    }
}

.carousel-slide.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.carousel-slide h3 {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.5rem !important;
}

.carousel-slide p {
    font-size: 0.85rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
}

.carousel-slide .w-16.h-16 {
    width: 2.75rem !important;
    height: 2.75rem !important;
    margin-bottom: 0.75rem !important;
}

.carousel-slide .w-16.h-16 iconify-icon {
    font-size: 1.35rem !important;
}

.carousel-slide ul {
    margin-bottom: 0px !important;
    gap: 0.5rem !important;
}

.carousel-slide li {
    font-size: 0.85rem !important;
}

@media (min-width: 768px) {
    .carousel-slide h3 {
        font-size: 2.75rem !important;
        margin-bottom: 1rem !important;
    }

    .carousel-slide p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .carousel-slide .w-16.h-16 {
        width: 4rem !important;
        height: 4rem !important;
        margin-bottom: 1.5rem !important;
    }

    .carousel-slide .w-16.h-16 iconify-icon {
        font-size: 1.875rem !important;
    }
}

/* Custom Navigation & Pagination */
.feature-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.feature-nav-btn iconify-icon {
    font-size: 1.25rem !important;
}

@media (min-width: 768px) {
    .feature-nav-btn {
        width: 50px;
        height: 50px;
    }

    .feature-nav-btn iconify-icon {
        font-size: 1.5rem !important;
    }
}

.feature-nav-btn:hover {
    background: #ffffff;
    color: #75449c;
    transform: translateY(-50%) scale(1.1);
}

.feature-prev {
    left: 0.25rem;
}

.feature-next {
    right: 0.25rem;
}

@media (min-width: 1024px) {
    .feature-prev {
        left: 2rem;
    }

    .feature-next {
        right: 2rem;
    }
}

.feature-pagination {
    position: absolute !important;
    bottom: -60px !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100% !important;
    z-index: 40 !important;
}

.feature-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #75449c !important;
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
    cursor: pointer;
    border: 2px solid transparent;
}

.feature-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 20px;
    opacity: 1;
    background: #75449c !important;
    box-shadow: 0 0 15px rgba(117, 68, 156, 0.4);
}

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

.animate-float {
    animation: floating 3s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floating 3.5s ease-in-out infinite 1s;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* PARTNERS SECTION */
.partners-flex {
    display: flex;
    gap: 1.25rem;
    height: 580px;
    width: 100%;
}

.partner-card {
    position: relative;
    flex: 1;
    border-radius: 2.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: flex 1.2s cubic-bezier(0.25, 1, 0.35, 1);
    background: #2f2461;
    will-change: flex, height, transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.partner-card.is-active {
    flex: 2.8;
}

.partner-card.is-active .partner-label-vertical {
    opacity: 0;
}

.partner-card.is-active .partner-info-expanded {
    opacity: 1;
    transform: translateY(0);
}

.partner-card.is-active .partner-logo-container {
    opacity: 1;
}

@media (min-width: 1025px) {
    .partners-flex:hover .partner-card {
        flex: 0.6;
    }

    .partners-flex:hover .partner-card .partner-label-vertical {
        opacity: 1;
    }

    .partners-flex:hover .partner-card .partner-info-expanded {
        opacity: 0;
        transform: translateY(20px);
    }

    .partners-flex:hover .partner-card .partner-logo-container {
        opacity: 0;
    }

    .partners-flex .partner-card:hover {
        flex: 2.8 !important;
    }

    .partners-flex .partner-card:hover .partner-label-vertical {
        opacity: 0 !important;
    }

    .partners-flex .partner-card:hover .partner-info-expanded {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .partners-flex .partner-card:hover .partner-logo-container {
        opacity: 1 !important;
    }
}

.partner-card .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: all 0.8s ease;
    mix-blend-mode: normal;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 25, 0.98) 0%, rgba(10, 8, 25, 0.85) 30%, rgba(10, 8, 25, 0.3) 70%, transparent 100%);
    z-index: 5;
    opacity: 0.85;
    transition: opacity 0.8s ease;
}

.partner-card:hover .bg-img {
    opacity: 0.6;
    transform: scale(1.05);
}

.partner-card:hover::after {
    opacity: 0.95;
}

.partner-card-content {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.partner-label-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    transition: opacity 0.4s ease;
}

.partner-card:hover .partner-label-vertical {
    opacity: 0;
}

.partner-info-expanded {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.35, 1) 0.3s;
}

@media (min-width: 1025px) {
    .partner-card:hover .partner-info-expanded {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-info-expanded span {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    display: inline-block;
}

.partner-logo-container {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

@media (min-width: 1025px) {
    .partner-card:hover .partner-logo-container {
        transform: scale(1.1);
        background: white;
    }
    .partner-card:hover .partner-logo-container iconify-icon {
        color: #75449c;
    }
}

@media (max-width: 1024px) {
    .partners-flex {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    .partner-card {
        height: 110px;
        flex: none !important;
        width: 100%;
        transition: height 0.5s cubic-bezier(0.25, 1, 0.35, 1);
    }
    .partner-card.is-active {
        height: 440px;
    }
    .partner-label-vertical {
        display: none;
    }
    .partner-card-content {
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        transition: justify-content 0.3s ease;
    }
    .partner-card.is-active .partner-card-content {
        justify-content: space-between;
    }
    .partner-logo-container {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
        opacity: 0;
        visibility: hidden;
        display: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .partner-card.is-active .partner-logo-container {
        opacity: 1;
        visibility: visible;
        display: flex !important;
    }
    .partner-info-expanded {
        opacity: 1;
        transform: none;
        display: flex;
        flex-direction: column;
    }
    .partner-info-expanded h4 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .partner-info-expanded p,
    .partner-info-expanded span {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        margin: 0 !important;
        transition: opacity 0.3s ease, max-height 0.4s ease, margin 0.3s ease;
    }
    .partner-card.is-active .partner-info-expanded p,
    .partner-card.is-active .partner-info-expanded span {
        opacity: 1;
        max-height: 250px;
    }
    .partner-card.is-active .partner-info-expanded p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.25rem !important;
    }
}

.ds-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    will-change: transform;
}

.ds-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle 180px at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.08), transparent 80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.ds-card:hover::after {
    opacity: 1;
}

.ds-btn {
    position: relative;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    will-change: transform;
}

.glass-badge,
[class*="bg-[#75449c]/20"],
[class*="bg-[#61d2d3]/10"] {
    will-change: transform;
}

#main-header {
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), top 0.4s ease, padding 0.4s ease !important;
    will-change: transform;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

#main-header.header-scrolled-padding {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 768px) {
    #main-header.header-scrolled-padding {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

.header-hidden {
    transform: translateY(-150%) !important;
}

.header-state-top {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    max-width: 1600px !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    border-radius: 0px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

@media (min-width: 768px) {
    .header-state-top {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

@media (min-width: 1024px) {
    .header-state-top {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
}

.header-state-scrolled {
    background-color: rgba(19, 13, 43, 0.82) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 40px rgba(10,5,30,0.35) !important;
    max-width: 72rem !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    border-radius: 9999px !important;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500 !important;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #75449c, #c084fc) !important;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), left 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-link:hover {
    color: #ffffff !important;
}

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

.mobile-bar {
    background-color: #2f2461 !important;
}

#mobile-menu-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    width: 340px !important;
    max-width: 88vw !important;
    background: linear-gradient(135deg, rgba(47, 36, 97, 0.88), rgba(117, 68, 156, 0.92)) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    will-change: transform, opacity;
}

#mobile-menu-drawer.drawer-open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#mobile-menu-backdrop {
    transition: opacity 0.45s ease !important;
    will-change: opacity;
}

#mobile-menu-backdrop.backdrop-active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

html {
    scroll-behavior: smooth !important;
}

section[id], div[id] {
    scroll-margin-top: 100px !important;
}
