* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    text-decoration: none;
}

#cur,
#cur-r {
    position: fixed !important;
    
    pointer-events: none;
    z-index: 99999;
    
}

#cur {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #B424FB;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: left, top;
}

#cur-r {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(180, 36, 251, .5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, border-color .3s;
    will-change: left, top;
}

body.h #cur-r {
    width: 56px;
    height: 56px;
    border-color: #B424FB;
}

body.h #cur {
    opacity: .4;
}

span {
    color: #b324fb;
    font-family: "DM Serif Display", sans-serif;
    font-style: italic;
    font-weight: 300;
    flex-wrap: nowrap;
}

body {
    background: #111;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    cursor: none;
    overflow-x: hidden;
    

}

:root {
    
    --x: 50vw;
    --y: 50vh;

    
    --dp-accent: #B424FB;
    --dp-accent-soft: rgba(180, 36, 251, 0.16);
    --dp-accent-glow: rgba(180, 36, 251, 0.45);
    --dp-bg: #050505;
    --dp-card-bg: rgba(15, 11, 26, 0.97);
    --dp-card-border: rgba(180, 36, 251, 0.13);
    --dp-card-active: rgba(180, 36, 251, 0.28);
    --dp-text: rgba(255, 255, 253, 0.84);
    --dp-muted: rgba(255, 255, 253, 0.35);
    --dp-white: #ffffff;
    --dp-ease: cubic-bezier(0.4, 0, 0.2, 1);

    
    --pf-accent: #B424FB;
    --pf-accent-dim: rgba(180, 36, 251, 0.18);
    --pf-bg: #070709;
    --pf-text: rgba(255, 255, 253, 0.85);
    --pf-muted: rgba(255, 255, 253, 0.32);
    --pf-ease: cubic-bezier(0.4, 0, 0.2, 1);

    
    --fq-accent: #B424FB;
    --fq-accent-glow: rgba(180, 36, 251, 0.35);
    --fq-accent-soft: rgba(180, 36, 251, 0.12);
    --fq-bg: #070709;
    --fq-surface: rgba(255, 255, 255, 0.03);
    --fq-border: rgba(255, 255, 255, 0.07);
    --fq-border-hover: rgba(180, 36, 251, 0.3);
    --fq-text: rgba(255, 255, 253, 0.82);
    --fq-muted: rgba(255, 255, 253, 0.58);
    --fq-white: #ffffff;
    --fq-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --fq-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    
    --ct-accent: #B424FB;
    --ct-accent-light: #d068ff;
    --ct-accent-glow: rgba(180, 36, 251, 0.55);
    --ct-accent-soft: rgba(180, 36, 251, 0.10);
    --ct-bg: #04030a;
    --ct-text: rgba(255, 255, 253, 0.88);
    --ct-muted: rgba(255, 255, 253, 0.38);
    --ct-border: rgba(180, 36, 251, 0.18);
    --ct-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ct-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    
    --ft-accent: #B424FB;
    --ft-bg: #070709;
    --ft-border: rgba(255, 255, 255, 0.07);
    --ft-text: rgba(255, 255, 253, 0.80);
    --ft-muted: rgba(255, 255, 253, 0.55);
    --ft-white: #ffffff;
    --ft-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

header {
    position: fixed;
    display: flex;
    padding: 3rem 7rem;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

header.header-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.logo a img {
    height: auto;
    width: 200px;
}

nav {
    display: flex;
    margin: auto;
    gap: 2rem;

    & a {
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: rgba(255, 255, 253, .9);
        text-decoration: none;
        position: relative;
        padding: 4px 0;

        transition: 0.5s ease;
    }
}

nav a:hover {
    font-size: 14px;
    transform: translateY(-4px)
}

header .nav-btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background: #B324FB;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    cursor: none;
    transition: box-shadow .3s, transform .2s;
    text-decoration: none;
}

header .nav-btn:hover {
    box-shadow: 0 0 32px #B324FB, 0 0 64px rgba(180, 36, 251, .1);
    transform: translateY(-2px)
}

.header-compact {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(10, 10, 14, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 12px 10px 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(180, 36, 251, 0.06);
    
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    white-space: nowrap;
}

.header-compact.compact-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.header-compact .hc-logo img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(1.1);
    margin-right: 20px;
}

.header-compact .hc-nav {
    display: flex;
    gap: 0;
    margin: 0;
}

.header-compact .hc-nav a {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: rgba(255, 255, 253, 0.72);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 40px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

.header-compact .hc-nav a:hover {
    color: #fff;
}

.header-compact .hc-nav a.hc-active {
    color: #fff;
    font-weight: 600;
}

.header-compact .hc-nav a.hc-active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #B424FB;
    border-radius: 50%;
}

.header-compact .hc-btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 8px 20px 8px 16px;
    cursor: pointer;
    transition: border-color .25s, background .25s;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-left: 8px;
    white-space: nowrap;
}

.header-compact .hc-btn:hover {
    border-color: rgba(180, 36, 251, 0.5);
    background: rgba(180, 36, 251, 0.08);
}

.header-compact .hc-btn .hc-btn-arrow {
    font-size: 14px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.header-compact .hc-btn:hover .hc-btn-arrow {
    transform: translateX(3px);
}

.hamburger {
    display: none;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(180, 36, 251, 0.1);
    border-color: rgba(180, 36, 251, 0.3);
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-drawer {
    display: none;
    
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    max-height: 100vh;
    box-sizing: border-box;
    z-index: 900;
    
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    
    gap: 8px;
    padding-left: 20px;
    
    
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-drawer.drawer-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-drawer a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.8rem, 4vw, 1.8rem);
    font-weight: 400;
    color: rgba(255, 255, 253, 0.75);
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease;
    text-align: left;
    width: 100%;
    max-width: 320px;
}

.mobile-drawer a:hover {
    color: #fff;
    background: rgba(180, 36, 251, 0.08);
}

.mobile-drawer .drawer-cta {
    margin-top: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    color: #fff;
    background: #B424FB;
    padding: 14px 36px;
    transition: box-shadow 0.3s ease;
}

.mobile-drawer .drawer-cta:hover {
    box-shadow: 0 0 32px rgba(180, 36, 251, 0.5);
    background: rgba(180, 36, 251, 1);
}

.mobile-drawer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 36, 251, 0.4), transparent);
}

.hero {
    position: relative;
    min-height: 100vh;
    
    display: flex;
    align-items: center;
    
    overflow: hidden;
    
    padding: 2rem;
    width: 100%;
}

.hero .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    
    transform: translate(-50%, -50%);
    
    object-fit: contain;
    
    opacity: 0.5;
    
}

.hero-video.video-fade {
    animation: fadeThroughBlack 1.2s ease-in-out forwards;
}

@keyframes fadeThroughBlack {
    0% {
        opacity: 0.3;
    }

    
    50% {
        opacity: 0;
    }

    
    100% {
        opacity: 0.3;
    }

    
}

.hero .hero-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 40%;
    gap: 1rem;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    margin-left: 250px;

    & .hero-tagline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Manrope', sans-serif;
        font-size: .7rem;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: #b324fb;
        border: 1px solid rgba(180, 36, 251, .2);
        border-radius: 50px;
        padding: 6px 16px;
        margin-bottom: 28px;
        width: 33%;
        backdrop-filter: blur(10px);
        
        -webkit-backdrop-filter: blur(10px);
        
    }

    & .hero-tagline::before {
        content: '';
        width: 6px;
        height: 6px;
        background: #B424FB;
        border-radius: 50%;
        animation: blink 2s infinite;
    }

}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero .hero-content h1 {
    font-size: 5rem;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
}

.hero .hero-content .p-hero {
    font-size: 18px;
    color: rgba(255, 255, 253, .9);
    width: 80%;
    font-weight: 200;
}

.hero .hero-content .btn-container {
    display: flex;
    gap: 10px;
    
}

.hero .hero-content .btn-container .btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: .86rem;
    letter-spacing: .04em;
    color: #fff;
    background: #B324FB;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    cursor: none;
    transition: box-shadow .3s, transform .2s;
    text-decoration: none;
    display: inline-block
}

.hero .hero-content .btn-container .btn a, .btn-2 a {
    color: #fff;
}

.hero .hero-content .btn-container .btn:hover {
    box-shadow: 0 0 32px #B324FB, 0 0 64px rgba(180, 36, 251, .1);
    transform: translateY(-2px)
}

.hero .hero-content .btn-container .btn-2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: .86rem;
    color: rgba(255, 255, 253, .9);
    background: transparent;
    border: 1px solid rgba(255, 255, 253, .1);
    border-radius: 50px;
    padding: 13px 28px;
    cursor: none;
    transition: border-color .3s, color .3s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero .hero-content .btn-container .btn-2:hover {
    border-color: #b324fb;
    color: #fff
}

.carousel {
    border-top: 1px solid rgba(180, 36, 251, .2);
    border-bottom: 1px solid rgba(180, 36, 251, .2);
    padding: 20px;
    width: 100%;
    
    overflow: hidden;
    
    display: flex;
    white-space: nowrap;
    
    height: auto;
    background-color: rgba(64, 1, 95, 0.2);
}

.group {
    display: flex;
    flex-shrink: 0;
    
    gap: 80px;
    
    padding-right: 20px;
    
    animation: scroll 20s infinite linear;
    height: auto;
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
}

.card {
    transition: 0.4s ease-in-out;
}

.card:hover {
    color: #b324fb;
    transform: translateY(-2px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.carousel:hover .group {
    animation-play-state: paused;
}

.pain-section {
    padding: 10vh 5% 8vh;
    background: #050505;
}

.pain-intro,
.pain-outro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;

}

.pain-intro h2 {
    font-size: 42px;
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 1rem;
}

.cards-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    
}

.pain-card {
    position: sticky;
    top: 15vh;
    
    width: 100%;
    max-width: 900px;
    min-height: 300px;
    background: #0d0d0d;
    border: 1px solid rgba(180, 36, 251, 0.5);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 -20px 40px #b324fb1f;
    
}

.card-1 {
    transform: scale(0.95);
    background: #08030a;
    
}

.card-2 {
    transform: scale(0.97);
    background: #0e0613;
    
}

.card-3 {
    transform: scale(0.99);
    background: #14081b;
    
}

.card-4 {
    transform: scale(1.00);
    background: #1b0b24;
    
}

.pain-card span {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #b324fb;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: "Space Grotesk", sans-serif;
}

.pain-card p {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
}

.pain-outro {
    margin-top: 150px;
}

.pain-outro h2 {
    font-size: 3rem;
    color: var(--w);
}

.pain-outro h3 {
    font-family: 'Manrope', serif;
    color: var(--p);
    font-size: 2rem;
    margin: 20px 0;
}

.spotlight-overlay {
    position: fixed;
    inset: 0;
    background: black;
    z-index: 99990;
    
    opacity: 0;
    pointer-events: none;
    
    transition: opacity 0.5s ease;
    
    mask-image: radial-gradient(circle 150px at var(--x) var(--y), transparent 100%, black 100%);
    -webkit-mask-image: radial-gradient(circle 150px at var(--x) var(--y), transparent 0%, black 100%);
}

body.spotlight-active .spotlight-overlay {
    opacity: 0.95;
    
}

.spotlight-trigger {
    cursor: none;
    position: relative;
    z-index: 99991;
    
    transition: color 0.2s;
}

.sobre {
    position: relative;
    min-height: 100vh;
    padding: 100px;
    overflow: hidden;
    background: #0c0c0c;
    
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(180, 36, 251, 0.35) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.sb-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
    
}

.sb-label {
    font-family: 'Manrope', sans-serif;
    
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #B424FB;
    
    text-transform: uppercase;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;

    
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sb-label::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #B424FB;
    opacity: 0.5;
}

.sb-label.sb-visible {
    opacity: 1;
    transform: translateY(0);
}

.sb-headline-wrap {
    margin-bottom: 100px;
}

.sb-headline {
    font-family: 'Space Grotesk', sans-serif;
    
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;

    
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.sb-headline.sb-visible {
    opacity: 1;
    transform: translateY(0);
}

.sb-headline-em {
    font-family: 'DM Serif Display', serif;
    
    font-style: italic;
    font-weight: 400;
    color: #B424FB;
    position: relative;
}

.sb-headline-em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B424FB;
    transition: width 1.5s ease 1s;
    
}

.sb-headline.sb-visible .sb-headline-em::after {
    width: 100%;
}

.sb-manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.sb-letter-col {
    padding-right: 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-letter-block {
    margin-bottom: 64px;

    
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.sb-letter-block.sb-visible {
    opacity: 1;
    transform: translateX(0);
}

.sb-block-num {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #B424FB;
    opacity: 0.7;
    margin-bottom: 16px;
}

.sb-letter-text {
    font-family: 'Manrope', sans-serif;
    
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.85;
    color: rgba(255, 255, 253, 0.65);
    
    font-weight: 300;
}

.sb-letter-text strong {
    color: #fff;
    font-weight: 700;
}

.sb-letter-text--typing::after {
    content: '|';
    color: #B424FB;
    
    animation: blink 1s step-end infinite;
}

.sb-side-col {
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sb-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

.sb-stat-card {
    background: rgba(180, 36, 251, 0.04);
    border: 1px solid rgba(180, 36, 251, 0.15);
    
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    cursor: none;

    
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sb-stat-card.sb-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sb-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(180, 36, 251, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sb-stat-card:hover::before {
    opacity: 1;
}

.sb-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B424FB, transparent);
    transition: width 0.6s ease;
}

.sb-stat-card:hover::after {
    width: 100%;
}

.sb-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.sb-stat-number .sb-stat-accent {
    color: #B424FB;
}

.sb-stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 253, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
}

.sb-closing {
    padding: 52px 40px;
    background: rgba(180, 36, 251, 0.04);
    border: 1px solid rgba(180, 36, 251, 0.12);
    position: relative;
    overflow: hidden;

    
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.sb-closing.sb-visible {
    opacity: 1;
    transform: translateY(0);
}

.sb-closing::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 20px;
    font-family: 'DM Serif Display', serif;
    
    font-size: 200px;
    color: rgba(180, 36, 251, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.sb-closing-text {
    font-family: 'DM Serif Display', serif;
    
    font-size: clamp(17px, 2vw, 22px);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 253, 0.85);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    
}

.sb-closing-dot {
    display: inline-block;
    color: #B424FB;
    animation: sb-pulse 2s ease-in-out infinite;
}

.sb-closing-dot:nth-child(2) {
    animation-delay: 0.4s;
}

.sb-closing-dot:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes sb-pulse {

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

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

.sb-cta-strip {
    padding: 80px 0 20px;
    display: flex;
    align-items: center;
    gap: 48px;

    
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sb-cta-strip.sb-visible {
    opacity: 1;
    transform: translateY(0);
}

.sb-cta-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.sb-cta-text {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 253, 0.3);
    text-transform: uppercase;
    white-space: nowrap;
}

.servicos {
    position: relative;
    background: #050505;
    padding: 80px 0 80px;
    overflow: hidden;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(180, 36, 251, 0.35) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.sv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.sv-container a,
.sv-container button,
.sv-container .sv-card {
    pointer-events: auto;
}

.sv-header {
    margin-bottom: 72px;
    animation: svFadeUp 0.9s ease 0.1s both;
}

@keyframes svFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sv-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #B424FB;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sv-label::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #B424FB;
    opacity: 0.5;
}

.sv-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(42px, 4.5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.sv-headline-em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #B424FB;
}

.sv-subline {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 253, 0.5);
    max-width: 480px;
    padding-bottom: 32px;
}

.sv-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(180, 36, 251, 0.45);
    pointer-events: none;
    animation: svFadeUp 0.9s ease 0.6s both, svHintOut 0.8s ease 5.5s forwards;
}

.sv-hint-dot {
    width: 6px;
    height: 6px;
    background: rgba(180, 36, 251, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
    
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes svHintOut {
    to {
        opacity: 0;
    }
}

.sv-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sv-card {
    background: #0d0d14;
    border: 1px solid rgba(180, 36, 251, 0.18);
    border-radius: 20px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: none;
    animation: svFadeUp 0.8s ease both;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.sv-card:nth-child(1) {
    animation-delay: 0.25s;
}

.sv-card:nth-child(2) {
    animation-delay: 0.42s;
}

.sv-card:nth-child(3) {
    animation-delay: 0.59s;
}

.sv-card:hover {
    border-color: rgba(180, 36, 251, 0.45);
    box-shadow: 0 0 40px rgba(180, 36, 251, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.sv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top left,
            rgba(180, 36, 251, 0.07) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.sv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B424FB, transparent);
    transition: width 0.6s ease;
}

.sv-card:hover::after {
    width: 60%;
}

.sv-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(180, 36, 251, 0.12);
    border: 1px solid rgba(180, 36, 251, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.sv-card:hover .sv-card-icon {
    background: rgba(180, 36, 251, 0.2);
    border-color: rgba(180, 36, 251, 0.4);
}

.sv-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #B424FB;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sv-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sv-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 253, 0.55);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
    
}

.sv-card-quote {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(180, 36, 251, 0.7);
    line-height: 1.5;
    margin-bottom: 24px;
    padding-left: 12px;
    border-left: 2px solid rgba(180, 36, 251, 0.3);
}

.sv-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.sv-tag {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(180, 36, 251, 0.8);
    background: rgba(180, 36, 251, 0.07);
    border: 1px solid rgba(180, 36, 251, 0.18);
    border-radius: 50px;
    padding: 4px 12px;
    transition: background 0.3s ease, color 0.3s ease;
}

.sv-card:hover .sv-tag {
    background: rgba(180, 36, 251, 0.13);
    color: #B424FB;
}

.sv-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 12px 24px;
    text-decoration: none;
    cursor: none;
    
    transition: color 0.3s ease, border-color 0.3s ease,
        background 0.3s ease, box-shadow 0.3s ease,
        transform 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
}

.sv-card-btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.sv-card-btn:hover {
    color: #fff;
    border-color: #B424FB;
    background: rgba(180, 36, 251, 0.12);
    box-shadow: 0 0 20px rgba(180, 36, 251, 0.15);
    transform: translateY(-2px);
}

.sv-card-btn:hover .sv-card-btn-arrow {
    transform: translateX(4px);
}

.metodo {
    width: 100%;
    height: 90vh;
    display: grid;
    
    grid-template-columns: 42% 58%;
    column-gap: 0;
    
    position: relative;
    overflow: hidden;
    background: #0C0C0C;
}

.metodo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(180, 36, 251, 0.4) 40%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.mt-wheel-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding-bottom: 70px;
    
    padding-left: 100px;
    overflow: hidden;
    background-color: #0C0C0C;
}

.mt-wheel-container {
    position: relative;
    width: clamp(300px, 38vw, 460px);
    height: clamp(300px, 38vw, 460px);
    flex-shrink: 0;
    
}

.mt-wheel-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    

}

.mt-arc-group {
    cursor: none;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    
}

.mt-arc-path {
    transition: fill 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    fill: #1a0a2e;
    opacity: 0.5;
}

.mt-arc-group.mt-arc-active .mt-arc-path {
    fill: url(#mtArcGrad);
    opacity: 1;
    filter: drop-shadow(0 0 16px rgba(180, 36, 251, 0.8));
}

.mt-arc-num {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    fill: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    transition: fill 0.4s ease;
}

.mt-arc-group.mt-arc-active .mt-arc-num {
    fill: rgba(255, 255, 255, 0.9);
}

.mt-ring {
    fill: none;
    pointer-events: none;
}

.mt-center-circle {
    fill: #0e0b1a;
    stroke: rgba(180, 36, 251, 0.25);
    stroke-width: 1.5;
    pointer-events: none;
}

.mt-center-ring-inner {
    fill: none;
    stroke: rgba(180, 36, 251, 0.08);
    stroke-width: 1;
    pointer-events: none;
}

.mt-wheel-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22%;
    aspect-ratio: 1;
}

.mt-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    
    width: clamp(28px, 3.8vw, 48px);
    height: clamp(28px, 3.8vw, 48px);
}

.mt-center-icon.mt-icon-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mt-center-icon.mt-icon-exit {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
}

.mt-center-icon svg {
    width: 100%;
    height: 100%;
    stroke: #d068ff;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(180, 36, 251, 0.6));
}

.mt-content-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    padding: 40px 60px 40px 56px;
    position: relative;
    z-index: 2;
}

.mt-content-header {
    margin-bottom: 28px;
    
}

.mt-label {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #B424FB;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.mt-label.mt-visible {
    opacity: 1;
    transform: translateY(0);
}

.mt-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #B424FB;
    opacity: 0.5;
}

.mt-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(42px, 3vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.mt-title.mt-visible {
    opacity: 1;
    transform: translateY(0);
}

.mt-title-em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #B424FB;
}

.mt-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 420px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.mt-subtitle.mt-visible {
    opacity: 1;
    transform: translateY(0);
}

.mt-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 24px;
    flex-shrink: 0;
    cursor: none;
}

.mt-tab {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    padding: 10px 22px 12px;
    background: none;
    border: none;
    position: relative;
    cursor: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.mt-tab:hover {
    color: rgba(255, 255, 255, 0.80);
}

.mt-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #B424FB;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mt-tab.mt-tab-active {
    color: #fff;
}

.mt-tab.mt-tab-active::after {
    transform: scaleX(1);
}

.mt-panels-wrap {
    position: relative;
    flex: 1;
    min-height: 0;
    max-height: 350px;
}

.mt-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;

    
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.mt-panel.mt-panel-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    
    position: relative;
}

.mt-panel.mt-panel-exit {
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
}

.mt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 18px 22px;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.mt-card:hover {
    border-color: rgba(180, 36, 251, 0.35);
    background: rgba(180, 36, 251, 0.04);
}

.mt-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 7px;
}

.mt-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.65;
}

.mt-content-footer {
    margin-top: 80px;
    
    padding-top: 12px;
    
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.mt-content-footer.mt-visible {
    opacity: 1;
    transform: translateY(0);
}

.mt-footer-text {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(15px, 1.5vw, 20px);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.35;
}

.mt-footer-text strong {
    color: #B424FB;
    font-weight: 400;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
}

.mt-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.89;
    color: #fff;
    background: #B424FB;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none;
    cursor: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: box-shadow 0.3s, transform 0.2s;
}

.mt-footer-btn:hover {
    box-shadow: 0 0 28px rgba(180, 36, 251, 0.7);
    transform: translateY(-2px);
}

.mt-footer-btn-arrow {
    transition: transform 0.3s;
}

.mt-footer-btn:hover .mt-footer-btn-arrow {
    transform: translateX(3px);
}

.depoimentos {
    position: relative;
    background: var(--dp-bg);
    overflow: hidden;
    padding: 10px 0 88px;
    width: 100%;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(180, 36, 251, 0.35) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.dp-stage-light {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 450px;
    background: radial-gradient(ellipse 65% 55% at 50% 0%,
            rgba(180, 36, 251, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dp-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    padding: 0 0 0 48px;
    
}

.dp-sidebar {
    display: flex;
    flex-direction: column;
    padding-right: 36px;
    position: relative;
    z-index: 3;
}

.dp-sidebar::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(180, 36, 251, 0.28) 25%,
            rgba(180, 36, 251, 0.28) 75%,
            transparent 100%);
}

.dp-label {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--dp-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;

    
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.dp-label.dp-visible {
    opacity: 1;
    transform: translateX(0);
}

.dp-label::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--dp-accent);
    opacity: 0.5;
}

.dp-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(42px, 2.6vw, 40px);
    font-weight: 800;
    color: var(--dp-white);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;

    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;

}

.dp-title.dp-visible {
    opacity: 1;
    transform: translateX(0);
}

.dp-title-em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--dp-accent);
    display: block;
}

.dp-sidebar-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--dp-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 210px;

    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.dp-sidebar-desc.dp-visible {
    opacity: 1;
    transform: translateX(0);
}

.dp-sidebar-counter {
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
}

.dp-sidebar-counter.dp-visible {
    opacity: 1;
}

.dp-current-num {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--dp-accent);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 2px;
    
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.dp-sidebar-total {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--dp-muted);
    letter-spacing: 0.05em;
}

.dp-carousel-col {
    position: relative;
    
    overflow: hidden;
    padding: 28px 0;
}

.dp-track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 12px 80px;
    
    position: relative;
    z-index: 1;
    will-change: transform;
}

.dp-slide {
    flex: 0 0 460px;
    cursor: pointer;
    transition:
        opacity 0.68s var(--dp-ease),
        filter 0.68s var(--dp-ease),
        transform 0.68s var(--dp-ease);
    will-change: transform, opacity, filter;
    
    contain: layout style;
}

.dp-slide:not(.dp-slide-active) {
    opacity: 0.12;
    filter: blur(8px);
    transform: scale(1);
    z-index: 1;
}

.dp-slide.dp-slide-active {
    opacity: 1;
    filter: none;
    transform: scale(1);
    cursor: default;
    z-index: 4;
}

.dp-orbit-adj {
    opacity: 0.45;
    filter: blur(3px);
    z-index: 3;
}

.dp-orbit-far {
    opacity: 0.12;
    filter: blur(8px);
    z-index: 1;
}

.dp-card {
    background: rgba(18, 10, 34, 0.99);
    border: 1px solid var(--dp-card-border);
    border-radius: 18px;
    padding: 30px 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(180, 36, 251, 0.09),
        0 20px 80px rgba(0, 0, 0, 0.55),
        0 0 90px rgba(180, 36, 251, 0.07);
}

.dp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(180, 36, 251, 0.28);
    opacity: 0;
    transition: opacity 0.6s var(--dp-ease);
    pointer-events: none;
    z-index: 0;
}

.dp-slide.dp-slide-active .dp-card {
    margin-left: 25px;
}

.dp-slide.dp-slide-active .dp-card::before {
    opacity: 1;
}

.dp-slide.dp-slide-active .dp-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(180, 36, 251, 0.75) 40%,
            rgba(180, 36, 251, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.dp-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.dp-star {
    font-size: 13px;
    color: var(--dp-accent);
    line-height: 1;
    opacity: 0.4;
    transition: opacity 0.5s ease;
    
    will-change: opacity;
}

.dp-slide.dp-slide-active .dp-star {
    opacity: 1;
    animation: dpStarGlow 3.2s ease-in-out infinite;
}

.dp-slide.dp-slide-active .dp-star:nth-child(1) {
    animation-delay: 0.00s;
}

.dp-slide.dp-slide-active .dp-star:nth-child(2) {
    animation-delay: 0.11s;
}

.dp-slide.dp-slide-active .dp-star:nth-child(3) {
    animation-delay: 0.22s;
}

.dp-slide.dp-slide-active .dp-star:nth-child(4) {
    animation-delay: 0.33s;
}

.dp-slide.dp-slide-active .dp-star:nth-child(5) {
    animation-delay: 0.44s;
}

@keyframes dpStarGlow {
    0%,
    55%,
    100% {
        opacity: 1;
    }

    28% {
        opacity: 0.7;
    }
}

.dp-quote {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(14px, 1.35vw, 17px);
    color: var(--dp-text);
    line-height: 1.8;
    flex: 1;
    
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.dp-divider {
    width: 50px;
    height: 1px;
    background: rgba(180, 36, 251, 0.22);
    margin-bottom: 18px;
    flex-shrink: 0;
    transform: scaleX(0.56);
    transform-origin: left center;
    transition: transform 0.5s var(--dp-ease), background 0.5s ease;
    will-change: transform;
}

.dp-slide.dp-slide-active .dp-divider {
    transform: scaleX(1);
    background: rgba(180, 36, 251, 0.55);
}

.dp-author {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.dp-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(180, 36, 251, 0.18);
    border: 1.5px solid rgba(180, 36, 251, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--dp-accent);
    letter-spacing: 0.04em;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

.dp-slide.dp-slide-active .dp-avatar {
    opacity: 1;
}

.dp-author-info {
    flex: 1;
    min-width: 0;
}

.dp-author-name {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dp-author-role {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--dp-muted);
}

.dp-badge {
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(180, 36, 251, 0.9);
    padding: 4px 10px;
    border: 1px solid rgba(180, 36, 251, 0.38);
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

.dp-slide.dp-slide-active .dp-badge {
    opacity: 1;
}

.dp-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.38);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}

.dp-nav:hover {
    background: rgba(180, 36, 251, 0.13);
    border-color: rgba(180, 36, 251, 0.44);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.dp-nav:active {
    transform: translateY(-50%) scale(0.94);
}

.dp-nav svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-nav-prev {
    left: 8px;
}

.dp-nav-next {
    right: 8px;
}

.dp-dots-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.dp-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.13);
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: width 0.4s var(--dp-ease), background 0.4s ease, box-shadow 0.4s ease;
}

.dp-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.dp-dot.dp-dot-active {
    width: 22px;
    background: var(--dp-accent);
    box-shadow: 0 0 8px rgba(180, 36, 251, 0.5);
}

.portfolio {
    position: relative;
    background: #0C0C0C;
    padding: 110px 0 80px;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent, rgba(180, 36, 251, 0.35), transparent);
    pointer-events: none;
    z-index: 1;
}

.pf-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 52px;
}

.pf-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--pf-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.pf-label.pf-visible {
    opacity: 1;
    transform: translateY(0);
}

.pf-label::after {
    
    content: '';
    width: 36px;
    height: 1px;
    background: var(--pf-accent);
    opacity: 0.5;
}

.pf-title {
    font-size: clamp(42px, 4vw, 54px);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease 0.08s, transform 0.8s ease 0.08s;
}

.pf-title.pf-visible {
    opacity: 1;
    transform: translateY(0);
}

.pf-title-em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--pf-accent);
    text-wrap: nowrap;
}

.pf-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--pf-muted);
    line-height: 1.75;
    max-width: 500px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.pf-subtitle.pf-visible {
    opacity: 1;
    transform: translateY(0);
}

.pf-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    
    grid-template-rows: 310px;
    gap: 14px;
}

.pf-row2 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    height: 252px;
}

.pf-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--pf-ease), transform 0.75s var(--pf-ease), box-shadow 0.6s ease;
    box-shadow: 0 0 0 rgba(180, 36, 251, 0);
}

.pf-card.pf-visible {
    opacity: 1;
    transform: translateY(0);
}

.pf-card:hover {
    box-shadow: 0 0 40px 8px rgba(180, 36, 251, 0.25), 0 0 80px 12px rgba(180, 36, 251, 0.12);
}

.pf-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: scale(1.1) translate(var(--pf-rx, 0px), var(--pf-ry, 0px));
    transition: transform 0.9s var(--pf-ease);
    will-change: transform;
}

.pf-bg-a {
    background:
        radial-gradient(ellipse 80% 70% at 25% 20%, rgba(130, 20, 210, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 75% 85%, rgba(55, 5, 120, 0.65) 0%, transparent 58%),
        linear-gradient(145deg, #0f0822 0%, #1c0a38 50%, #0a0515 100%);
}

.pf-bg-b {
    background:
        radial-gradient(ellipse 70% 65% at 70% 25%, rgba(85, 15, 185, 0.6) 0%, transparent 58%),
        radial-gradient(ellipse 80% 55% at 20% 75%, rgba(150, 30, 230, 0.55) 0%, transparent 62%),
        linear-gradient(155deg, #0d0723 0%, #160c30 55%, #080514 100%);
}

.pf-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(180, 36, 251, 0.15);
    z-index: 10;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.pf-card:not(.pf-card-soon):hover::after {
    border-color: rgba(180, 36, 251, 0.42);
}

.pf-card:not(.pf-card-soon) {
    cursor: none;
}

.pf-card-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.pf-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    
    transform: scale(1.0);
    transition: opacity 0.7s var(--pf-ease), transform 0.9s var(--pf-ease);
}

.pf-card:hover .pf-card-img img {
    opacity: 0.35;
    
    transform: scale(1.07);
    
}

.pf-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(8, 3, 18, 0.2) 0%,
            rgba(8, 3, 18, 0.75) 55%,
            rgba(8, 3, 18, 0.97) 100%);
    z-index: 1;
}

.pf-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(4, 1, 12, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.pf-card:hover .pf-card-overlay {
    opacity: 1;
}

.pf-card-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 16px;
    box-shadow: inset 0 0 0px rgba(180, 36, 251, 0);
    pointer-events: none;
    transition: box-shadow 0.6s ease;
}

.pf-card:hover .pf-card-glow {
    box-shadow: inset 0 0 100px rgba(180, 36, 251, 0.25), inset 0 0 50px rgba(180, 36, 251, 0.15);
}

.pf-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 24px 24px 22px;
    transform: translateY(0);
    transition: transform 0.55s var(--pf-ease);
}

.pf-card:hover .pf-card-info {
    transform: translateY(-8px);
    
}

.pf-tag {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pf-accent);
    margin-bottom: 7px;
    
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.pf-card:hover .pf-tag {
    opacity: 1;
    transform: translateY(0);
}

.pf-card-title {
    font-size: clamp(15px, 1.7vw, 21px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
    opacity: 0.88;
    transition: opacity 0.4s ease;
}

.pf-card:hover .pf-card-title {
    opacity: 1;
}

.pf-card-client {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 253, 0.4);
    margin-bottom: 14px;
    transition: color 0.4s ease;
}

.pf-card:hover .pf-card-client {
    color: rgba(255, 255, 253, 0.62);
}

.pf-result {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(180, 36, 251, 0.95);
    background: rgba(180, 36, 251, 0.1);
    border: 1px solid rgba(180, 36, 251, 0.25);
    border-radius: 50px;
    padding: 5px 13px 5px 10px;
    
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.12s, transform 0.4s ease 0.12s;
}

.pf-card:hover .pf-result {
    opacity: 1;
    transform: translateY(0);
}

.pf-result::before {
    content: '↑';
    font-size: 12px;
    color: var(--pf-accent);
}

.pf-card-soon {
    cursor: default;
}

.pf-soon-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    user-select: none;
}

.pf-soon-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(180, 36, 251, 0.25);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-soon-dot::before {
    
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(180, 36, 251, 0.65);
    animation: pfDotPulse 2.6s ease-in-out infinite;
}

.pf-soon-dot::after {
    
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(180, 36, 251, 0.14);
    animation: pfRingExpand 2.6s ease-in-out infinite;
}

@keyframes pfDotPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

@keyframes pfRingExpand {
    0% {
        transform: scale(0.75);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(0.75);
        opacity: 0.35;
    }
}

.pf-soon-label {
    
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.04em;
}

.pf-soon-cat {
    
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.1);
}

.pf-cursor {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--pf-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    will-change: transform, left, top;
    transition: transform 0.35s var(--pf-ease), opacity 0.35s ease;
}

.pf-cursor.pf-cursor-on {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.pf-cursor span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
}

.pf-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 48px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.pf-footer.pf-visible {
    opacity: 1;
    transform: translateY(0);
}

.pf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pf-accent);
    background: transparent;
    border: 1px solid rgba(180, 36, 251, 0.32);
    border-radius: 50px;
    padding: 12px 26px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.25s;
}

.pf-btn:hover {
    background: rgba(180, 36, 251, 0.1);
    border-color: rgba(180, 36, 251, 0.6);
    color: #fff;
    transform: translateX(3px);
}

.pf-btn-arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.pf-btn:hover .pf-btn-arrow {
    transform: translateX(4px);
}

.pf-footer-note {
    font-size: 11px;
    color: rgba(255, 255, 253, 0.18);
}

.faq-section {
    position: relative;
    background: var(--fq-bg);
    padding: 120px 0 100px;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(180, 36, 251, 0.4) 50%,
            transparent 100%);
    pointer-events: none;
}

.fq-bg-glow {
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(180, 36, 251, 0.05) 0%,
            transparent 65%);
    pointer-events: none;
}

.fq-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 72px;
}

.fq-label {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--fq-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;

    
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fq-label.fq-visible {
    opacity: 1;
    transform: translateY(0);
}

.fq-label::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--fq-accent);
    opacity: 0.5;
}

.fq-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 800;
    color: var(--fq-white);
    line-height: 1.1;
    letter-spacing: -0.025em;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.fq-title.fq-visible {
    opacity: 1;
    transform: translateY(0);
}

.fq-title-em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--fq-accent);
}

.fq-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.fq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;

    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.fq-accordion.fq-visible {
    opacity: 1;
    transform: translateX(0);
}

.fq-item {
    position: relative;
    border-bottom: 1px solid var(--fq-border);
    overflow: hidden;
    
}

.fq-item:first-child {
    border-top: 1px solid var(--fq-border);
}

.fq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0%;
    
    background: linear-gradient(180deg,
            transparent 0%,
            var(--fq-accent) 30%,
            var(--fq-accent) 70%,
            transparent 100%);
    transition: height 0.45s var(--fq-ease);
    pointer-events: none;
    z-index: 1;
}

.fq-item.fq-open::before {
    height: 100%;
}

.fq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0 24px 20px;
    
    text-align: left;
    transition: background 0.3s ease;
}

.fq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.fq-question-text {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--fq-text);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.fq-item.fq-open .fq-question-text {
    color: var(--fq-white);
}

.fq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--fq-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s var(--fq-ease);
}

.fq-item.fq-open .fq-icon {
    border-color: var(--fq-accent);
    background: var(--fq-accent-soft);
    transform: rotate(45deg);
    
}

.fq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--fq-muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke 0.3s ease;
}

.fq-item.fq-open .fq-icon svg {
    stroke: var(--fq-accent);
}

.fq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.45s var(--fq-ease);
}

.fq-item.fq-open .fq-answer {
    height: var(--fq-h, auto);
}

.fq-answer-inner {
    padding: 0 20px 24px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--fq-muted);
    line-height: 1.78;
}

.fq-form-col {
    position: sticky;
    top: 40px;
    

    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

.fq-form-col.fq-visible {
    opacity: 1;
    transform: translateX(0);
}

.fq-form-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--fq-border);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.fq-form-card:focus-within {
    border-color: rgba(180, 36, 251, 0.25);
}

.fq-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(180, 36, 251, 0.6) 35%,
            rgba(180, 36, 251, 0.2) 100%);
}

.fq-form-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--fq-white);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.fq-form-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--fq-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.fq-field {
    position: relative;
    margin-bottom: 20px;
}

.fq-input,
.fq-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--fq-border);
    border-radius: 10px;
    padding: 20px 16px 10px;
    
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--fq-white);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    
    caret-color: var(--fq-accent);
}

.fq-input::placeholder,
.fq-textarea::placeholder {
    color: transparent;
}

.fq-textarea {
    resize: none;
    height: 110px;
    line-height: 1.6;
}

.fq-input:focus,
.fq-textarea:focus {
    border-color: rgba(180, 36, 251, 0.5);
    background: rgba(180, 36, 251, 0.04);
    box-shadow: 0 0 0 3px rgba(180, 36, 251, 0.08);
}

.fq-label-float {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--fq-muted);
    pointer-events: none;
    transition: top 0.25s ease, font-size 0.25s ease,
        color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.fq-field--textarea .fq-label-float {
    top: 18px;
    transform: none;
}

.fq-input:focus+.fq-label-float,
.fq-input:not(:placeholder-shown)+.fq-label-float {
    top: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--fq-accent);
    transform: none;
}

.fq-textarea:focus+.fq-label-float,
.fq-textarea:not(:placeholder-shown)+.fq-label-float {
    top: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--fq-accent);
}

.fq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fq-submit {
    position: relative;
    width: 100%;
    padding: 15px 24px;
    border: 1px solid var(--fq-accent);
    border-radius: 50px;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--fq-accent);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    transition: color 0.35s ease, border-color 0.35s ease;
}

.fq-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fq-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s var(--fq-ease);
    z-index: 0;
}

.fq-submit:hover {
    color: #fff;
    border-color: var(--fq-accent);
}

.fq-submit:hover::before {
    transform: scaleX(1);
}

.fq-submit span {
    position: relative;
    z-index: 1;
}

.fq-submit-arrow {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.fq-submit:hover .fq-submit-arrow {
    transform: translateX(4px);
}

.fq-submit.fq-loading {
    pointer-events: none;
    opacity: 0.7;
}

.fq-submit.fq-loading span::after {
    content: '...';
    animation: fqDots 1s steps(3) infinite;
}

@keyframes fqDots {
    0% {
        content: '.';
    }

    33% {
        content: '..';
    }

    66% {
        content: '...';
    }
}

.fq-success {
    display: none;
    text-align: center;
    padding: 20px 0 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(180, 36, 251, 0.9);
    line-height: 1.6;
}

.fq-success.fq-show {
    display: block;
}

.fq-success strong {
    color: #fff;
}

.fq-form-note {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.18);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

.fq-item {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease var(--fq-item-delay, 0s),
        transform 0.6s var(--fq-ease) var(--fq-item-delay, 0s),
        background 0.3s ease;
    
}

.fq-item.fq-visible {
    opacity: 1;
    transform: translateY(0);
}

.ct-section {
    position: relative;
    background: var(--ct-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 24px;
}

.ct-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(180, 36, 251, 0.5) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.ct-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ct-grid-inner {
    position: absolute;
    bottom: -10%;
    left: -20%;
    right: -20%;
    height: 120%;

    
    transform-origin: bottom center;
    transform: rotateX(55deg);

    
    background-image:
        linear-gradient(rgba(180, 36, 251, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 36, 251, 0.10) 1px, transparent 1px);
    background-size: 70px 70px;

    
    -webkit-mask-image: linear-gradient(to top,
            black 0%,
            black 35%,
            transparent 72%);
    mask-image: linear-gradient(to top,
            black 0%,
            black 35%,
            transparent 72%);
}

.ct-halo-outer {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 800px;

    background: radial-gradient(ellipse 65% 50% at 50% 100%,
            
            rgba(180, 36, 251, 0.35) 0%,
            rgba(180, 36, 251, 0.12) 40%,
            rgba(180, 36, 251, 0.03) 65%,
            transparent 80%);

    pointer-events: none;
    z-index: 1;

    
    animation: ctHaloBreathe 6s ease-in-out infinite;
    will-change: transform, opacity;
}

.ct-halo-core {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;

    background: radial-gradient(ellipse 55% 45% at 50% 100%,
            rgba(180, 36, 251, 0.25) 0%,
            rgba(180, 36, 251, 0.07) 50%,
            transparent 70%);

    pointer-events: none;
    z-index: 1;

    
    animation: ctHaloBreathe 6s ease-in-out infinite reverse;
    animation-delay: -3s;
    
    will-change: transform, opacity;
}

@keyframes ctHaloBreathe {

    0%,
    100% {
        opacity: 0.85;
        transform: translateX(-50%) scaleY(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1.12);
    }
}

.ct-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ct-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 780px;
    width: 100%;
}

.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--ct-accent);
    margin-bottom: 36px;

    
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ct-eyebrow.ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.ct-eyebrow::before,
.ct-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--ct-accent);
    opacity: 0.45;
}

.ct-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(38px, 6.5vw, 88px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 30px;

    
    opacity: 0;
    transition: opacity 0.01s;
}

.ct-title.ct-title-ready {
    opacity: 1;
}

.ct-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: inherit;
}

.ct-word+.ct-word {
    margin-left: 0.22em;
}

.ct-word-inner {
    display: inline-block;
    transform: translateY(115%);
    
    transition: transform 0.75s var(--ct-spring);
}

.ct-word-inner.ct-word-up {
    transform: translateY(0);
}

.ct-title-em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--ct-accent-light);
    letter-spacing: -0.01em;
}

.ct-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 300;
    color: var(--ct-muted);
    line-height: 1.78;
    max-width: 520px;
    margin: 0 auto 54px;

    
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.ct-subtitle.ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.ct-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;

    
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.72s, transform 0.7s ease 0.72s;
}

.ct-actions.ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.span-2 {
    color: #fff;
}

.ct-btn-wa {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 34px;
    background: var(--ct-accent);
    border: none;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    

    
    box-shadow:
        0 0 40px rgba(180, 36, 251, 0.35),
        0 4px 24px rgba(0, 0, 0, 0.4);

    transition:
        transform 0.3s var(--ct-spring),
        box-shadow 0.35s ease;
}

.ct-btn-wa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 80px at var(--ct-bx, 50%) var(--ct-by, 50%),
            rgba(255, 255, 255, 0.28) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.ct-btn-wa:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 0 60px rgba(180, 36, 251, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.5);
}

.ct-btn-wa:hover::before {
    opacity: 1;
}

.ct-btn-wa:active {
    transform: translateY(0) scale(0.97);
}

.ct-btn-wa svg,
.ct-btn-wa>span {
    position: relative;
    z-index: 1;
}

.ct-btn-portfolio {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 34px;
    background: transparent;
    border: 1px solid rgba(180, 36, 251, 0.4);
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.25s ease;
}

.ct-btn-portfolio::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ct-accent-soft);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s var(--ct-ease);
    pointer-events: none;
}

.ct-btn-portfolio:hover {
    color: #fff;
    border-color: rgba(180, 36, 251, 0.7);
    transform: translateY(-3px);
}

.ct-btn-portfolio:hover::before {
    transform: scaleX(1);
}

.ct-btn-portfolio:active {
    transform: translateY(0);
}

.ct-btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.ct-btn-portfolio:hover .ct-btn-arrow {
    transform: translateX(5px);
}

.ct-btn-portfolio>span {
    position: relative;
    z-index: 1;
}

.ct-footnote {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 253, 0.2);
    letter-spacing: 0.02em;

    opacity: 0;
    transition: opacity 0.8s ease 1s;
}

.ct-footnote.ct-visible {
    opacity: 1;
}

.ct-footnote strong {
    font-weight: 600;
    color: rgba(255, 255, 253, 0.38);
}

.ft-footer {
    position: relative;
    background: var(--ft-bg);
    overflow-x: hidden;
}

.ft-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(180, 36, 251, 0.45) 50%,
            transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.ft-top {
    width: 1280px;
    margin: 0 auto;
    padding: 72px 48px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.ft-brand {
    display: flex;
    flex-direction: column;
}

.ft-logo-wrap {
    display: block;
    margin-bottom: 18px;
    text-decoration: none;
    line-height: 0;
    
}

.ft-logo-wrap img {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}

.ft-logo-fallback {
    height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    background: rgba(180, 36, 251, 0.08);
    border: 1px dashed rgba(180, 36, 251, 0.3);
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(180, 36, 251, 0.45);
}

.ft-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--ft-muted);
    line-height: 1.72;
    max-width: 230px;
    margin-bottom: 24px;
}

.ft-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.ft-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--ft-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ft-muted);
    text-decoration: none;
    flex-shrink: 0;
    transition:
        border-color 0.28s ease,
        color 0.28s ease,
        background 0.28s ease,
        transform 0.25s ease;
}

.ft-social-link:hover {
    border-color: rgba(180, 36, 251, 0.5);
    color: #fff;
    background: rgba(180, 36, 251, 0.1);
    transform: translateY(-2px);
}

.ft-social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    display: block;
}

.ft-copy {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--ft-muted);
    line-height: 1.6;
}

.ft-nav-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.ft-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 253, 1);
    margin-bottom: 22px;
    display: block;
    font-style: normal;
}

.ft-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ft-nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--ft-text);
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.25s ease;
}

.ft-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--ft-accent);
    transition: width 0.3s var(--ft-ease);
}

.ft-nav-link:hover {
    color: #fff;
    transform: translateY(0px);
    font-size: 13px;
}

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

}

.ft-legal-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ft-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ft-text);
    background: transparent;
    border: 1px solid var(--ft-border);
    border-radius: 50px;
    padding: 10px 14px 10px 18px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 36px;
    transition:
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.ft-top-btn:hover {
    border-color: rgba(180, 36, 251, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.ft-top-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.35s ease;
}

.ft-top-btn:hover .ft-top-icon {
    border-color: rgba(180, 36, 251, 0.6);
    background: rgba(180, 36, 251, 0.15);
    transform: translateY(-3px);
}

.ft-divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.ft-divider-line {
    border: none;
    border-top: 1px solid var(--ft-border);
    margin: 0;
}

.ft-logo-stage {
    width: 100%;
    overflow: hidden;
    
    height: clamp(180px, 26vw, 320px);
    
    position: relative;
    
}

.ft-logo-row {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    
    padding: 0 48px;
    gap: 0;
    box-sizing: border-box;
}

.ft-logo-part {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    

    transform: translateY(var(--ft-ty, 120%));
    will-change: transform;
}

.ft-logo-part img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    
    opacity: 0.11;
    filter: brightness(0) invert(1);
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

.ft-logo-part.ft-text-mode {
    justify-content: center;
}

.ft-logo-part.ft-text-mode::before {
    content: attr(data-ft-label);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(90px, 15vw, 220px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    

    
    color: rgba(255, 255, 255, 1.0);

    user-select: none;
    pointer-events: none;

    
    display: block;
    width: 100%;
    text-align: center;
}

.ft-logo-part.ft-text-mode img {
    display: none;
}

@media (hover: none) {
    #cur-r {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }

}

@media (max-width: 1100px) {
    .dp-inner {
        grid-template-columns: 1fr;
        padding: 0 32px;
    }

    .dp-sidebar {
        padding-right: 0;
    }

    .dp-sidebar::before {
        display: none;
    }

    .dp-sidebar-desc {
        max-width: 100%;
    }

    .dp-sidebar-counter {
        display: none;
    }

    .dp-track {
        padding: 12px 60px;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
        padding: 56px 32px 48px;
    }

    .ft-brand {
        grid-column: 1 / -1;
    }

    .ft-logo-stage {
        height: clamp(130px, 22vw, 220px);
    }

    .ft-logo-row {
        padding: 0 32px;
    }

    .ft-divider {
        padding: 0 32px;
    }

}

@media (max-width: 1024px) {
    .sv-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .sv-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .pf-footer {
        padding-left: 32px;
        padding-right: 32px;
    }

    .pf-row2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .fq-grid {
        padding: 0 32px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fq-form-col {
        position: static;
    }

    .faq-section {
        padding: 88px 0 72px;
    }

    .fq-header {
        padding: 0 32px 56px;
    }

    
    .fq-accordion,
    .fq-form-col {
        opacity: 1;
        transform: none;
    }

    header {
        padding: 2rem 3rem;
    }

    nav {
        gap: 1.2rem;
    }

    
    .header-compact .hc-nav a {
        padding: 6px 10px;
        font-size: 12px;
    }

    .hero .hero-content {
        margin-left: 80px;
        width: 50%;
    }

    .sobre {
        padding: 80px 48px;
    }

    .sv-cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .metodo {
        height: auto;
        min-height: 100vh;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .mt-wheel-panel {
        padding: 72px 24px 40px;
        min-height: 420px;
        overflow: visible;
        margin-left: -10px;
        
    }

    .mt-wheel-container {
        width: clamp(280px, 70vw, 420px);
        height: clamp(280px, 70vw, 420px);
    }

    .mt-content-panel {
        padding: 24px 20px 48px;
        width: 90vw;

    }

    .dp-layout {
        grid-template-columns: 1fr;
    }

    .dp-carousel-col {
        min-height: 400px;
    }

    .pf-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .pf-card-hero {
        grid-column: 1 / -1;
    }

    .pf-card-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .fq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fq-form-sticky {
        position: static;
        top: auto;
    }

    .ct-section {
        padding: 80px 40px;
    }

    .ct-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

}

@media (max-width: 768px) {

    
    .sb-manifesto {
        grid-template-columns: 1fr;
    }

    
    .sb-letter-col {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 60px;
        margin-bottom: 60px;
    }

    
    .sb-side-col {
        padding-left: 0;
    }

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

    
    .sb-container {
        padding: 0 24px;
    }

    
    .sb-closing {
        padding: 36px 24px;
    }

    
    .sb-ghost-number {
        font-size: 160px;
        right: -30px;
    }

    
    .sb-headline-wrap {
        margin-bottom: 60px;
    }

    .servicos {
        padding: 80px 20px 10px;
    }

    .sv-container {
        padding: 0 24px;
    }

    .sv-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sv-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .sv-card {
        padding: 12px 14px;
        min-height: auto;
    }

    .dp-inner {
        padding: 0 0px;
    }

    .dp-slide {
        padding: 32px 20px;
    }

    .dp-slide.dp-slide-active {
        opacity: 1;
        filter: none;
        transform: scale(1) translateY(0);
    }

    .dp-slide:not(.dp-slide-active) {
        opacity: 0.15;
        filter: blur(6px);
        
        transform: scale(0.85);
    }

    .dp-track {
        padding: 12px 20px;
    }

    .dp-card {
        padding: 24px 20px 20px;
        min-height: 260px;
        width: 340px;
        display: flex;
        flex-direction: column;
    }

    
    .dp-quote {
        font-size: clamp(13px, 3.8vw, 16px);
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        color: rgba(255, 255, 253, 0.84);
        flex: 1;
    }

    .dp-slide:not(.dp-slide-active) .dp-quote {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .dp-author-name {
        font-size: 13px;
    }

    .dp-author-role {
        font-size: 11px;
    }

    .portfolio {
        padding: 110px 24px 80px;
    }

    .pf-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 16px;
    }

    .pf-grid>.pf-card {
        height: 230px;
    }

    .pf-row2 {
        grid-template-columns: 1fr;
        height: auto;
    }

    .pf-row2 .pf-card {
        height: 190px;
    }

    .pf-header {
        padding: 0 24px;
    }

    .pf-footer {
        padding: 24px 20px 0;
    }

    .pf-cursor {
        display: none;
    }

    .pf-result {
        opacity: 1;
        transform: translateY(0);
    }

    .ct-section {
        padding: 20px 10px;
    }

    .ct-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ct-btn-portfolio {
        justify-content: center;
    }

    .ct-halo-outer {
        width: 600px;
    }

    .ct-halo-core {
        width: 300px;
    }

    html {
        overflow-x: hidden;
    }

    header {
        padding: 1.25rem 1.5rem;
        background: rgba(7, 7, 9, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    nav {
        display: none;
    }

    
    .logo a img {
        width: 140px;
    }

    header .nav-btn {
        display: none;
    }

    
    
    .hamburger {
        display: flex;
    }

    
    .mobile-drawer {
        display: flex;
    }

    
    .header-compact {
        display: none;
    }

    body {
        font-size: 14px;
    }

    h6 {
        font-size: 24px;
    }

    [role="button"] {
        font-size: 16px;
    }

    .ct-eyebrow {
        font-size: 10px;
    }

    .hero .hero-content {
        margin-left: 0;
        width: 100%;
        padding: 0 1.5rem;
        text-align: left;
    }

    .hero .hero-content .btn-container .btn {
        width: 100%;
    }

    .hero .hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 4rem);
    }

    .hero .hero-content .p-hero {
        font-size: 16px;
        width: 100%;
    }

    .hero .hero-content .hero-tagline {
        width: auto;
    }

    .hero .hero-content .btn-container {
        flex-wrap: wrap;
    }

    .hero .hero-content .btn-container .btn-2 {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .group {
        gap: 40px;
        font-size: 12px;
    }

    .pain-section {
        padding: 10vh 24px 8vh;
    }

    .pain-intro h2 {
        font-size: 32px;
    }

    .pain-outro h2 {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    .pain-outro h3 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .pain-card {
        padding: 32px 24px;
    }

    .pain-card h3 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .pain-card p {
        font-size: 1rem;
    }

    .cards-stack {
        gap: 24px;
    }

    .sv-header-label {
        font-size: 10px;
    }

    .sv-header-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .sv-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 24px;
    }

    .metodo {
        padding: 0 24px;
    }

    .mt-wheel-panel {
        display: none;
    }

    .mt-wheel-container {
        width: min(85vw, 340px);
        height: min(85vw, 340px);
        margin: 0 auto;
    }

    .mt-content-panel {
        padding: 64px 20px 48px;
    }

    .mt-headline {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .mt-panel-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .mt-tab {
        padding: 10px 12px;
        font-size: 8.5px;
    }

    .mt-tabs {
        overflow: hidden;
    }

    .dp-header {
        padding: 0 24px;
        margin-bottom: 40px;
    }

    .dp-headline {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .dp-quote-text {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .dp-nav-row {
        padding: 0 24px;
    }

    .dp-nav {
        top: 90%;
    }

    .pf-headline {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .pf-card-tall {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 220px;
    }

    .faq-section {
        padding: 80px 24px;
    }

    .fq-container {
        padding: 0 24px;
    }

    .fq-headline {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .fq-question {
        font-size: 15px;
        padding: 18px 0;
    }

    .fq-answer-inner {
        font-size: 14px;
    }

    .fq-form select {
        font-size: 16px;
        
    }

    .ft-legal-col {
        flex-direction: column;
    }

    .ft-top-btn {
        align-self: flex-start;
    }

    .hero {
        padding: 1.5rem;
    }
    
    .hero .hero-content {
        width: 100%; /* No mobile ocupa a largura toda */
    }

    .hero .hero-video {
        height: 100%;
        width: auto;
        opacity: 0.3;
    }

    .sobre {
        padding: 100px 24px;
    }

    .depoimentos {
        padding: 48px 10px 10px;
    }

    .dp-inner {
        padding: 0 10px;
    }

}

@media (max-width: 680px) {
    .ft-top {
        grid-template-columns: 1fr;
        padding: 48px 20px 40px;
        width: 90%;
        text-align: left;
    }

    .ft-brand {
        grid-column: auto;
    }

    .ft-logo-stage {
        height: clamp(90px, 28vw, 150px);
    }

    .ft-logo-row {
        padding: 0 20px;
    }

    .ft-divider {
        padding: 0 20px;
    }

    .ft-legal-col {
        text-align: left;
    }

}

@media (max-width: 640px) {

    #cur,
    #cur-r {
        display: none;
    }

    .faq-section {
        padding: 72px 0 60px;
    }

    .fq-header {
        padding: 0 20px 44px;
    }

    
    .fq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .fq-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fq-form-card {
        padding: 28px 22px;
    }

}

@media (max-width: 480px) {
    .ct-title {
        letter-spacing: -0.02em;
    }

    .ct-grid-inner {
        background-size: 50px 50px;
    }

}

@media (max-width: 420px) {
    .ft-logo-part.ft-text-mode::before {
        font-size: clamp(56px, 17vw, 100px);
    }

}