/* =============================================
           RESET & VARIÁVEIS (cores do mock)
        ============================================= */
        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        html { scroll-behavior: smooth; }
                * { box-sizing: border-box; scrollbar-width: thin; scrollbar-color: #65067c transparent; }
        *::-webkit-scrollbar { width: 5px; height: 5px; }
        *::-webkit-scrollbar-track { background: transparent; }
        *::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
        *::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        :root {
            --black: #06060b;
            --deep: #0d0b18;
            --void: #12101f;
            --purple-deep: #3d1c75;
            --purple-deep2: #210b47;            
            --purple-mid: #52168a;
            --purple-vivid: #65067c;
            --purple-glow: #8b2fc9;
            --purple-light: #c084fc;
            --white: #f4f0ff;
            --white-dim: rgba(244,240,255,0.6);
            --white-ghost: rgba(244,240,255,0.08);
            --gradient: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-vivid) 100%);
            --gradient-text: linear-gradient(90deg, #65067c, #9937f5, #7c3aed, #65067c);
            --glow: 0 0 40px rgba(101,6,124,0.5), 0 0 80px rgba(61,28,117,0.3);
            --glow-sm: 0 0 20px rgba(101,6,124,0.4);
            --font-display: 'Kanit', monospace;
            --font-body: 'Syne', sans-serif;
            --font-mono: 'Syne', monospace;
            
            /* Tema claro (opcional) */
            --bg: var(--black);
            --bg-card: var(--void);
            --border: rgba(101,6,124,0.2);
        }
        [data-theme="light"] {
            --bg: #f4f5f8;
            --bg-card: #ffffff;
            --border: rgba(61,28,117,0.15);
            --white: #111318;
            --white-dim: #4a5268;
            --white-ghost: rgba(0,0,0,0.05);
        }

        body {
            background: var(--bg);
            color: var(--white);
            font-family: var(--font-body);
            overflow-x: hidden;
            cursor: none;
            transition: background 0.3s, color 0.3s;
        }
        .rating-stars i {
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-3);
            transition: color 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: var(--purple-light);
        }
        /* CURSOR */
        .cursor, .cursor-ring {
            position: fixed; pointer-events: none; z-index: 9999;
            transform: translate(-50%,-50%);
        }
        .cursor {
            width: 12px; height: 12px;
            background: var(--purple-vivid); border-radius: 50%;
            transition: transform 0.1s, width 0.3s, height 0.3s;
            mix-blend-mode: screen;
        }
        .cursor-ring {
            width: 36px; height: 36px;
            border: 1px solid rgba(101,6,124,0.6); border-radius: 50%;
            transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
        }

        /* STARS BACKGROUND */
        .stars-canvas {
            position: fixed; top:0; left:0; width:100%; height:100%;
            z-index: 0; pointer-events: none;
        }
        /* NOISE OVERLAY */
        body::after {
            content: '';
            position: fixed; inset: 0; z-index: 1; pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            opacity: 0.4;
        }

        /* NAV */
        nav {
            position: fixed; top:0; left:0; right:0; z-index: 100;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 6%; height: 72px;
            background: rgba(6,6,11,0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(101,6,124,0.2);
            transition: all 0.3s;
        }
        nav.scrolled {
            background: rgba(6,6,11,0.92);
            border-bottom-color: rgba(101,6,124,0.4);
        }
        .nav-logo {
            display: flex; align-items: center; gap: 10px; text-decoration: none;
        }
        .nav-logo > .logo-img {
            display: flex;
            align-items: center;
            height: 48px;
            flex-shrink: 0;
        }
        .nav-logo > .logo-img > img.logo-img {
            display: block;
            width: auto;
            height: 100%;
        }
        .footer-logo {
            display: flex;
            align-items: center;
        }
        .footer-logo > img.logo-img {
            display: block;
            width: auto;
            height: 56px;
        }


        .logo-icon svg { width:100%; height:100%; }
        .logo-text {
            font-family: var(--font-display);
            font-size: 1rem; font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--white);
        }
        .logo-text span {
            background: var(--gradient-text);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .nav-links {
            display: flex; align-items: center; gap: 2.5rem;
            list-style: none;
        }
        #navUserWrap {
            display: flex;
            align-items: center;
        }
        #navUserWrap:empty {
            display: none;
        }
        .nav-links a {
            font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
            color: var(--white-dim); text-decoration: none;
            font-weight: 600; transition: color 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom:-4px; left:0; right:0; height:1px;
            background: var(--purple-vivid); transform: scaleX(0); transition: transform 0.3s;
        }
        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after { transform: scaleX(1); }
        .nav-cta {
            padding: 9px 22px; border-radius: 12px;
            background: var(--gradient);
            font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.1em; color: var(--white);
            text-decoration: none; text-transform: uppercase;
            border: 1px solid rgba(101,6,124,0.5);
            box-shadow: var(--glow-sm);
            transition: all 0.3s;
        }
        .nav-cta:hover { box-shadow: var(--glow); transform: translateY(-1px); }
        .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
        .hamburger span { width:24px; height:1px; background:var(--white); display:block; transition:all 0.3s; }

      
        .mobile-menu {
            display:none; position:fixed; top:72px; left:0; right:0;
            background:rgba(6,6,11,0.97); backdrop-filter:blur(20px);
            z-index:99; flex-direction:column;
            border-bottom:1px solid rgba(101,6,124,0.3);
        }
        .mobile-menu.open { display:flex; }
        .mobile-menu a {
            padding:1rem 6%; color:rgba(244,240,255,0.6); text-decoration:none;
            font-size:0.88rem; font-weight:600; text-transform:uppercase;
            letter-spacing:0.1em; border-bottom:1px solid rgba(101,6,124,0.1);
            transition:color 0.2s, background 0.2s;
        }
        .mobile-menu a:hover { color:var(--purple-light); background:rgba(101,6,124,0.06); }
        @media (max-width:768px) {
            .nav-links { display:none; }
            .hamburger { display:flex; }
            nav {
                padding:0 4%;
                justify-content:flex-start;
                gap:12px;
            }
            .nav-logo { margin-right:auto; }
            .nav-cta,
            #navUserWrap {
                margin-right:0.35rem;
            }
            .nav-cta {
                padding: 8px 16px;
            }
            .user-chip {
                gap: 0.45rem;
                padding: 0.35rem 0.65rem 0.35rem 0.35rem;
            }
            .user-chip-name {
                max-width: 74px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .nav-logo > .logo-img { height:48px !important; }
        }

        /* User chip sempre visível e fixo no canto direito */
        .user-chip {
            position: relative;
        }
        
        /* HERO */
        #hero {
            position: relative; z-index: 2;
            min-height: 100vh; display: flex; align-items: center;
            padding: 0 6%; overflow: hidden;
            align-items: center; justify-content: center; text-align: center;
        }
        .hero-content {
            margin-top: 7%; margin-bottom: 10%;
            max-width: 1080px; padding-top: 12px;
            animation: fadeUp 1s ease both;
            position: relative;
        }
        .hero-tag {
            display: inline-flex; align-items: center; gap: 8px;
            font-family: var(--font-mono); font-size: 0.72rem;
            letter-spacing: 0.2em; text-transform: uppercase;
            color: var(--purple-light); margin-bottom: 28px;
            padding: 6px 16px; border: 1px solid rgba(192,132,252,0.2);
            border-radius: 22px; background: rgba(192,132,252,0.04);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 7vw, 6rem);
            font-weight: 900; line-height: 1.0;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
        .hero-title .line1 { color: var(--white); display:block; }
        .hero-title .line2 {
            display: block;
            background: var(--gradient-text);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-size: 200%; animation: shimmer 4s linear infinite;
        }
        .hero-subtitle {
            font-size: 1.1rem; color: var(--white-dim); line-height: 1.7;
            max-width: 920px; margin: 24px 0 48px;
            font-weight: 300; align-items: center; justify-content: center;
        }
        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap;
        align-items: center; justify-content: center; }
        .btn-primary {
            padding: 14px 36px; background: var(--gradient);

            color: var(--white); text-decoration: none;
            font-family: var(--font-display); font-size: 0.75rem;
            font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
            border-radius: 12px; border: 1px solid rgba(101,6,124,0.4);
            box-shadow: var(--glow-sm); transition: all 0.3s; display:inline-block;
        }
        .btn-primary:hover { box-shadow: var(--glow); transform: translateY(-2px); }
        
        

        .btn-outline {
            padding: 14px 36px; background: transparent;
            color: var(--white); text-decoration: none;
            font-family: var(--font-display); font-size: 0.75rem;
            font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
            border-radius: 12px; border: 1px solid rgba(244,240,255,0.2);
            transition: all 0.3s; display:inline-block;
        }
        .btn-outline:hover { background: var(--purple-glow); border-color: var(--purple-deep); color: var(--white); }
        .hero-stats {
            display:inline-flex; gap: 48px; margin-top: 64px; margin-bottom: 14px;
            padding-top: 40px; border-top: 1px solid var(--white-ghost);
            align-items: center; justify-content: center;
        }
        .stat-num {
            font-family: var(--font-display); font-size: 2rem; font-weight: 900;
            background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            
        }
        .stat-label { font-size: 0.75rem; color: var(--white-dim); letter-spacing: 0.1em; text-transform: uppercase; }
        .scroll-hint {
            position: absolute; bottom: 10px; left: 0; right: 0; width: max-content; margin: 0 auto;
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
            font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em;
            color: var(--white-dim); text-transform: uppercase; z-index: 2; text-align: center;
            animation: fadeUp 1.5s 0.5s both; 
        }
        .scroll-hint span {
            display: block;
            width: 100%;
            line-height: 1;
            text-align: center;
        }
        .scroll-line {
            width: 2px; height: 48px;
            background: linear-gradient(to bottom, transparent, var(--purple-vivid));
            margin: 0 auto;
            animation: scrollDrop 2s infinite;
        }

        /* SECTIONS */
        section { position: relative; z-index: 2; scroll-margin-top: 104px; }
        .section-header { text-align: center; margin-bottom: 64px; }
        .section-tag {
            font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.25em;
            text-transform: uppercase; color: var(--purple-light);
            display: block; margin-bottom: 16px;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 700; letter-spacing: -0.02em;
            color: var(--white);
        }
        .section-title span {
            background: var(--gradient-text);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .section-line {
            width: 160px; height: 2px; margin: 20px auto 0;
            background: var(--gradient); border-radius: 1px;
        }

        /* SOBRE */
#sobre {
    padding: 1px 2%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-visual {
    position: relative;
    height: 500px;
    width: 100%;
    max-width: 485px;          /* Limita a largura máxima para não esticar demais */
    margin: 0 auto;            /* Centraliza dentro da coluna */
}

.sobre-card {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    border: 0px solid rgba(204, 0, 255, 0.3);
}

/* Card da imagem principal */
.sobre-card-main {
    width: 380px;              /* largura fixa */
    height: 380px;             /* altura fixa */
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    will-change: transform;
    animation: mascotDrift 9.2s ease-in-out infinite;
}


.sobre-card-accent {
    width: 260px;          
    height: 200px;   
    bottom: 200px;  
    right: 10px; 
    background: linear-gradient(135deg, var(--purple-deep2), var(--purple-vivid));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow);
    border-radius: 190px;
    z-index: -2;  }


.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform, filter;
    transform-origin: 50% 58%;
    filter: drop-shadow(0 18px 30px rgba(61,28,117,0.18));
    animation: mascotFloat 6s ease-in-out infinite;
}

.mp-img {
    width: 40%;
    object-fit: cover;
    display: block;
}


.sobre-orb {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101,6,124,0.6) 0%, transparent 50%);
    filter: blur(20px);
    top: 50px;
    left: 50px;
    z-index: -1;
}
@keyframes mascotDrift {
    0%, 100% {
        transform: translate3d(-3px, 0, 0);
    }
    50% {
        transform: translate3d(5px, -4px, 0);
    }
}
@keyframes mascotFloat {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
        filter: drop-shadow(0 18px 30px rgba(61,28,117,0.18));
    }
    50% {
        transform: translateY(-12px) rotate(1.5deg);
        filter: drop-shadow(0 24px 40px rgba(101,6,124,0.26));
    }
}
@media (prefers-reduced-motion: reduce) {
    .sobre-card-main,
    .card-img {
        animation: none;
    }
}
        .sobre-content { 
                padding: 10px 6%;

        }
        .sobre-intro {
            font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em;
            color: var(--purple-light); text-transform: uppercase; margin-bottom: 20px;
        }
        .sobre-title {
            font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
            line-height: 1.2; margin-bottom: 24px;
        }
        .sobre-title span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .sobre-text { color: var(--white-dim); line-height: 1.8; font-size: 0.95rem; margin-bottom: 16px; font-weight: 300; }
        .sobre-skills {
            display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px;
        }
        .skill-tag {
            padding: 6px 14px; border: 1px solid rgba(101,6,124,0.4);
            border-radius: 15px; font-size: 0.75rem; letter-spacing: 0.08em;
            color: var(--purple-light); background: rgba(61,28,117,0.1);
            font-family: var(--font-mono);
        }

        /* SERVIÇOS */
#servicos {
    padding: 10px 6%;
    background: linear-gradient(180deg, transparent 0%, rgba(61,28,117,0.05) 50%, transparent 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    text-align: center;
    padding: 32px 24px;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
}
.service-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--purple-glow);
    background: transparent !important;
    border: none !important;
    width: auto;
    height: auto;
}
.service-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}
.service-desc {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

        /* PORTFOLIO */
        #portfolio { padding: 20px 6%; }
        .portfolio-filters {
            display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
        }
        .filter-btn {
            padding: 8px 20px; border-radius: 12px; cursor: pointer;
            font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
            border: 1px solid rgba(244,240,255,0.1); background: transparent; color: var(--white-dim);
            transition: all 0.3s;
        }
        .filter-btn.active, .filter-btn:hover {
            border-color: var(--purple-vivid); color: var(--white); background: rgba(101,6,124,0.15);
        }
        .portfolio-grid {
            display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
        }
        .portfolio-item {
            position: relative; overflow: hidden; border-radius: 14px;
            border: 1px solid rgba(101,6,124,0.15);
            cursor: pointer; transition: all 0.4s;
            background: var(--bg-card);
        }
        .portfolio-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
        .portfolio-item:nth-child(2) { grid-column: span 4; }
        .portfolio-item:nth-child(3) { grid-column: span 3; }
        .portfolio-item:nth-child(4) { grid-column: span 7; }
        .portfolio-item:nth-child(5) { grid-column: span 4; grid-row: span 2; }
        .portfolio-item:nth-child(6) { grid-column: span 3; }
        .portfolio-item:nth-child(7) { grid-column: span 5; }
        .portfolio-thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-thumb-inner {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
        .portfolio-item:hover .portfolio-thumb-inner { transform: scale(1.08); }
        .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,6,11,0.95) 0%, rgba(6,6,11,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    pointer-events: none; /* para não interferir no hover da imagem */
}
        .portfolio-item:hover .portfolio-overlay { opacity: 1; }
        .portfolio-item:hover { border-color: rgba(101,6,124,0.4); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
        .portfolio-cat {
            font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em;
            color: var(--purple-light); text-transform: uppercase; margin-bottom: 4px;
        }
        .portfolio-title-item { font-family: var(--font-display); font-size: 0.9rem; color: var(--white); }
        .empty-state {
            width: 100%;
            padding: 1.25rem 1rem;
            text-align: center;
            font-style: italic;
            color: rgba(244, 240, 255, 0.52);
            opacity: 0.9;
            letter-spacing: 0.02em;
        }

        /* BLOG */
        #blog {
            padding: 20px 6%;
            background: linear-gradient(180deg, transparent, rgba(61,28,117,0.05) 50%, transparent);
        }
        .blog-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
        }
        .blog-grid-full {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .blog-grid-full .blog-card {
            min-width: 0;
        }
        @media (max-width:480px) {
            .blog-grid-full {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }
            .blog-grid-full .blog-thumb {
                height: 116px;
            }
            .blog-grid-full .blog-body {
                padding: 16px 14px 15px;
            }
            .blog-grid-full .blog-meta {
                gap: 8px;
                margin-bottom: 10px;
                flex-direction: column;
                align-items: flex-start;
            }
            .blog-grid-full .blog-title-item {
                font-size: 0.82rem;
                margin-bottom: 8px;
            }
            .blog-grid-full .blog-excerpt {
                font-size: 0.76rem;
                line-height: 1.5;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .blog-grid-full .blog-read {
                margin-top: 14px;
                font-size: 0.62rem;
                letter-spacing: 0.08em;
            }
        }
        .blog-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 14px; overflow: hidden; transition: all 0.4s; cursor: pointer;
        }
        .blog-card:hover { border-color: rgba(101,6,124,0.5); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
        .blog-thumb {
            height: 180px; position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: center; font-size: 3rem;
            transition: transform 0.5s;
            background-size: cover; background-position: center;
        }
        .blog-card:hover .blog-thumb { transform: scale(1.04); }
        .blog-body { padding: 28px; }
        .blog-meta {
            display: flex; gap: 12px; align-items: center; margin-bottom: 14px;
        }
        .blog-tag-pill {
            padding: 3px 10px; font-size: 0.65rem; letter-spacing: 0.12em;
            border-radius: 12px; background: rgba(101,6,124,0.25);
            color: var(--purple-light); font-family: var(--font-mono); text-transform: uppercase;
        }
        .blog-date { font-size: 0.72rem; color: var(--white-dim); font-family: var(--font-mono); }
        .blog-title-item {
            font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
            color: var(--white); line-height: 1.4; margin-bottom: 12px;
            letter-spacing: 0.01em;
        }
        .blog-excerpt { font-size: 0.85rem; color: var(--white-dim); line-height: 1.7; font-weight: 300; }
        .blog-read {
            display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
            font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em;
            color: var(--purple-light); text-transform: uppercase;
            transition: gap 0.3s;
        }
        .blog-card:hover .blog-read { gap: 10px; }

        /* DEPOIMENTOS */
        #depoimentos { padding: 20px 6%; }
        .testimonials-wrapper { position: relative; overflow: hidden; }
        .testimonials-track {
            display: flex; gap: 24px;
            transition: transform 0.5s ease;
        }
        .testimonial-card {
            min-width: calc(50% - 12px);
            padding: 40px;
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 14px; position: relative;
            flex-shrink: 0;
        }
        .testimonial-card::before {
            content: '\201C'; position: absolute; top: 20px; left: 30px;
            font-size: 5rem; line-height: 1; color: rgba(101,6,124,0.3);
            font-family: Georgia, serif;
        }
        .testimonial-text {
            font-size: 0.95rem; color: var(--white-dim); line-height: 1.8;
            font-weight: 300; font-style: italic; padding-top: 20px; margin-bottom: 28px;
        }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .author-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--gradient); display: flex; align-items: center;
            justify-content: center; font-size: 1.1rem;
            border: 2px solid rgba(101,6,124,0.4);
            overflow: hidden;
        }
        .author-avatar img { width:100%; height:100%; object-fit:cover; }
        .author-name { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--white); }
        .author-role { font-size: 0.72rem; color: var(--white-dim); font-family: var(--font-mono); }
        .testimonial-stars { color: var(--purple-light); font-size: 0.8rem; letter-spacing: 2px; margin-top: 4px; }
        .slider-controls {
            display: flex; justify-content: center; gap: 12px; margin-top: 40px;
            align-items: center;
        }
        .slider-btn {
            width: 44px; height: 44px; border-radius: 50%;
            border: 1px solid rgba(101,6,124,0.4); background: transparent;
            color: var(--white); cursor: pointer; font-size: 1.1rem;
            transition: all 0.3s; display: flex; align-items: center; justify-content: center;
        }
        .slider-btn:hover { background: rgba(101,6,124,0.3); border-color: var(--purple-vivid); }
        .slider-dots { display: flex; gap: 8px; }
        .slider-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: rgba(244,240,255,0.2); cursor: pointer; transition: all 0.3s;
        }
        .slider-dot.active { background: var(--purple-vivid); width: 20px; border-radius: 13px; }

        /* CONTATO */
        #contato {
            padding: 20px 6%;
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
            background: linear-gradient(180deg, transparent, rgba(61,28,117,0.06) 50%, transparent);
        }
        .contato-info {}
        .contato-title {
            font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
            line-height: 1.2; margin-bottom: 20px;
        }
        .contato-title span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .contato-desc { color: var(--white-dim); line-height: 1.8; font-weight: 300; margin-bottom: 40px; }
        .contato-items { display: flex; flex-direction: column; gap: 20px; }
        .contato-item {
            display: flex; align-items: center; gap: 16px;
            padding: 16px 20px; border: 1px solid var(--border);
            border-radius: 14px; background: var(--bg-card);
            transition: border-color 0.3s;
        }
        .contato-item:hover { border-color: rgba(101,6,124,0.5); }
        .contato-item-icon {
            width: 40px; height: 40px; border-radius: 14px;
            background: rgba(61,28,117,0.3); display: flex; align-items: center;
            justify-content: center; font-size: 1.1rem; flex-shrink: 0;
        }
        .contato-item-label { font-size: 0.72rem; color: var(--white-dim); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
        .contato-item-value { font-size: 0.9rem; color: var(--white); font-weight: 600; }
        .contato-form { display: flex; flex-direction: column; gap: 16px; }
        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .form-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); }
        .form-input, .form-textarea, .form-select {
            padding: 14px 16px;
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 12px; color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
            transition: border-color 0.3s, box-shadow 0.3s; outline: none;
            appearance: none;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            border-color: var(--purple-vivid); box-shadow: 0 0 0 3px rgba(101,6,124,0.15);
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-submit {
            padding: 16px; background: var(--gradient);
            border: none; border-radius: 12px; color: var(--white); cursor: pointer;
            font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
            letter-spacing: 0.15em; text-transform: uppercase;
            transition: all 0.3s; box-shadow: var(--glow-sm);
        }
        .form-submit:hover { box-shadow: var(--glow); transform: translateY(-2px); }
        .whatsapp-btn {
            display: flex; align-items: center; gap: 10px; margin-top: 8px;
            padding: 14px 20px; border: 1px solid rgba(37,211,102,0.3);
            border-radius: 12px; background: rgba(37,211,102,0.06); color: #25d366;
            font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
            text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-decoration: none;
        }
        .whatsapp-btn:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.5); }

        /* FOOTER */
        footer {
            position: relative; z-index: 2;
            padding: 64px 6% 32px;
            border-top: 1px solid var(--border);
            background: var(--deep);
            overflow: hidden;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        @media (max-width: 900px) {
            .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
        }
        @media (max-width: 540px) {
            .footer-top { grid-template-columns: 1fr; gap: 28px; }
        }
        .footer-tagline { font-size: 0.85rem; color: var(--white-dim); line-height: 1.7; max-width: 280px; font-weight: 300; }
        .footer-social { display: flex; gap: 10px; margin-top: 24px; }
        .social-link {
            width: 36px; height: 36px; border-radius: 14px;
            border: 1px solid var(--border); background: rgba(61,28,117,0.1);
            display: flex; align-items: center; justify-content: center;
            color: var(--white-dim); text-decoration: none; font-size: 0.9rem;
            transition: all 0.3s;
        }
        .social-link:hover { border-color: var(--purple-vivid); color: var(--white); background: rgba(101,6,124,0.2); }
        .footer-col-title {
            font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
            letter-spacing: 0.15em; text-transform: uppercase; color: var(--white);
            margin-bottom: 20px;
        }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-links a {
            font-size: 0.85rem; color: var(--white-dim); text-decoration: none;
            transition: color 0.3s; font-weight: 300;
        }
        .footer-links a:hover { color: var(--purple-light); }
        .footer-bottom {
            padding-top: 32px; border-top: 1px solid var(--white-ghost);
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.75rem; color: var(--white-dim); font-family: var(--font-mono);
            flex-wrap: wrap; gap: 12px;
        }
        .footer-bottom span { color: var(--purple-light); }

        /* MODAL */
        .modal-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            align-items: center; justify-content: center;
            padding: 2rem;
        }
        .modal-overlay.open { display: flex; }
        .modal-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            max-width: 860px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalIn 0.2s ease;
        }
        .modal-header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid var(--border);
        }
        .modal-header h2 { font-family: var(--font-display); font-size: 1.4rem; margin:0; }
        .modal-close {
            background: none; border: none; font-size: 1.2rem;
            color: var(--white-dim); cursor: pointer;
        }
        .modal-body { padding: 1.5rem; }
        .modal-body img { max-width: 100%; border-radius: 14px; margin: 1rem 0; }

        /* Quill content rendered inside modals */
        .modal-body .ql-snow.ql-toolbar { display: none; }
        .modal-body .ql-snow { border: none !important; }
        .modal-body .ql-editor {
            padding: 0 !important;
            color: var(--white) !important;
            background: transparent !important;
            font-family: var(--font-body);
            font-size: 0.95rem;
            line-height: 1.8;
        }
        .modal-body .ql-editor p { margin-bottom: 0.75rem; }
        .modal-body .ql-editor h1, .modal-body .ql-editor h2, .modal-body .ql-editor h3 {
            font-family: var(--font-display);
            color: var(--white);
            margin: 1.2rem 0 0.5rem;
        }
        .modal-body .ql-editor a { color: var(--purple-light); }
        .modal-body .ql-editor blockquote {
            border-left: 3px solid var(--purple-vivid);
            padding-left: 1rem;
            color: var(--white-dim);
            margin: 1rem 0;
        }
        .modal-body .ql-editor img { max-width: 100%; border-radius: 10px; }
        .modal-body .ql-editor .ql-video { width: 100%; aspect-ratio: 16/9; border-radius: 10px; border: none; }
        @keyframes modalIn {
            from { opacity:0; transform:translateY(20px); }
            to { opacity:1; transform:translateY(0); }
        }

        /* AUTH MODAL */
        .auth-modal {
            max-width: 420px;
        }
        .auth-logo {
            font-family: var(--font-display);
            font-size: 1.8rem; letter-spacing: 0.05em;
            text-align: center; margin-bottom: 0.3rem;
        }
        .auth-subtitle {
            text-align: center; font-size: 0.85rem; color: var(--white-dim);
            margin-bottom: 1.8rem;
        }
        .auth-tabs {
            display: flex; border-bottom: 1px solid var(--border);
            margin-bottom: 1.5rem;
        }
        .auth-tab {
            flex: 1; text-align: center; padding: 0.7rem;
            font-family: 'Kanit', monospace;
            font-size: 0.85rem; font-weight: 700;
            letter-spacing: 0.07em; text-transform: uppercase;
            color: var(--white-dim); cursor: pointer;
            border-bottom: 2px solid transparent; margin-bottom: -1px;
            background: none; border-top: none; border-left: none; border-right: none;
        }
        .auth-tab:hover { color: var(--white); }
        .auth-tab.active { color: var(--purple-light); border-bottom-color: var(--purple-vivid); }
        .auth-form { display: none; }
        .auth-form.active { display: block; }
        .form-error {
            background: rgba(224,85,85,0.1); border: 1px solid rgba(224,85,85,0.3);
            color: #e05555; border-radius: 8px; padding: 0.7rem 1rem;
            font-size: 0.82rem; margin-top: 0.8rem; display: none;
        }
        .form-error.show { display: block; }
        .auth-register-note {
            padding: 1.1rem;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: rgba(101,6,124,0.08);
        }
        .auth-register-note h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            margin-bottom: 0.45rem;
        }
        .auth-register-note p {
            color: var(--white-dim);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        .auth-register-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            margin-bottom: 1rem;
        }
        .auth-register-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            color: var(--white);
            font-size: 0.84rem;
            line-height: 1.55;
        }
        .auth-register-list i { color: var(--purple-light); margin-top: 0.2rem; }
        .auth-register-hint {
            margin-top: 0.8rem;
            color: var(--white-dim);
            font-size: 0.78rem;
            line-height: 1.6;
        }
        .register-cta {
            width: 100%;
            margin-top: 0.2rem;
        }

        /* USER AVATAR */
        .user-chip {
            display: flex; align-items: center; gap: 0.6rem;
            padding: 0.4rem 0.8rem 0.4rem 0.4rem;
            border: 1px solid var(--border);
            border-radius: 50px;
            cursor: pointer;
            transition: 0.2s;
            background: var(--bg-card);
        }
        .user-chip:hover { border-color: var(--purple-vivid); background: rgba(101,6,124,0.1); }
        .user-avatar-sm {
            width: 32px; height: 32px;
            border-radius: 50%;
            background: var(--bg-4);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; font-weight: 700; color: var(--purple-light);
            overflow: hidden;
            flex-shrink: 0;
        }
        .user-avatar-sm img {
            width: 100%; height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }
        .user-chip-name { font-size: 0.8rem; font-weight: 600; color: var(--white); }
        .user-dropdown {
            position: absolute; right: 1rem; top: 70px;
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 12px;
            padding: 0.5rem;
            min-width: 200px;
            box-shadow: var(--glow-sm);
            display: none;
            z-index: 999;
        }
        .user-dropdown.open { display: block; animation: fadeDown 0.15s ease; }
        @keyframes fadeDown {
            from { opacity: 0; transform: translateY(-6px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .dropdown-item {
            display: flex; align-items: center; gap: 0.7rem;
            padding: 0.6rem 0.8rem;
            border-radius: 8px;
            font-size: 0.85rem; font-weight: 500;
            color: var(--white-dim);
            cursor: pointer;
            transition: 0.15s;
            border: none; background: none; width: 100%; text-align: left;
        }
        .dropdown-item:hover { background: var(--bg-3); color: var(--white); }
        .dropdown-item i { width: 16px; color: var(--purple-light); }
        .dropdown-divider { height: 1px; background: var(--border); margin: 0.3rem 0; }

        /* TOAST */
        .toast-container {
            position: fixed; bottom: 1.5rem; right: 1.5rem;
            z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem;
        }
        .toast {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 8px; padding: 0.8rem 1rem;
            font-size: 0.85rem; color: var(--white);
            display: flex; align-items: center; gap: 0.6rem;
            animation: toastIn 0.2s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .toast.success i { color: #4caf80; }
        .toast.error i { color: #e05555; }
        @keyframes toastIn {
            from { opacity:0; transform:translateX(20px); }
            to { opacity:1; transform:translateX(0); }
        }

        /* ANIMAÇÕES */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes shimmer {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }
        @keyframes blink {
            0%,100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        @keyframes scrollDrop {
            0% { transform: scaleY(0); transform-origin: top; }
            50% { transform: scaleY(1); transform-origin: top; }
            51% { transform: scaleY(1); transform-origin: bottom; }
            100% { transform: scaleY(0); transform-origin: bottom; }
        }
        .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* MOBILE */
@media (max-width: 900px) {
    #sobre {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .sobre-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    .sobre-card-main {
        width: 90%;
        height: 80%;
    }
    .sobre-card-accent {
        width: 60%;
        height: 40%;
        bottom: 23%;
        right: -3%;
    }
    #contato {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 6%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .sobre-visual {
        max-width: 320px;
    }
    .sobre-card-accent {
        width: 65%;
        height: 35%;
    }
    .sobre-card-accent div div:first-child,
    .sobre-card-accent div div:last-child {
        font-size: 0.65rem;
    }
    .sobre-card-accent div div:nth-child(2) {
        font-size: 1.5rem;
    }
}
