@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ================================
   VARIÁVEIS & RESET
================================ */
:root {
    --accent: #c8ff5f;
    --accent-2: #7c5cbf;
    --dark: #0a0a0f;
    --dark-2: #111118;
    --dark-3: #1a1a24;
    --light: #f4f4f0;
    --light-2: #e8e8e2;
    --muted: #888899;
    --white: #ffffff;
    --shadow-soft: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-hard: 0 20px 60px rgba(0,0,0,0.25);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ================================
   CURSOR PERSONALIZADO
================================ */
.cursor {
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(200, 255, 95, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

body:hover .cursor { opacity: 1; }

/* ================================
   LOADER
================================ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99997;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner { text-align: center; }

.loader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2rem;
    letter-spacing: -2px;
    animation: pulse 1s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--accent);
    width: 0%;
    animation: load 1.5s ease forwards;
}

@keyframes load {
    to { width: 100%; }
}

/* ================================
   NAVBAR
================================ */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-brand span { color: var(--accent); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--accent);
    color: var(--dark) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,255,95,0.3); }
.nav-cta::after { display: none; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark-2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu ul { list-style: none; text-align: center; }

.mobile-link {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    padding: 0.5rem 0;
    color: var(--light);
    transition: var(--transition-fast);
}

.mobile-link:hover { color: var(--accent); }

/* ================================
   HERO
================================ */
header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.orb1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124, 92, 191, 0.3), transparent);
    top: -100px; left: -100px;
    animation-delay: 0s;
}

.orb2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200, 255, 95, 0.15), transparent);
    bottom: -50px; right: -50px;
    animation-delay: -3s;
}

.orb3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.2), transparent);
    top: 50%; left: 60%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 255, 95, 0.1);
    border: 1px solid rgba(200, 255, 95, 0.3);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.title-line { display: block; }

.highlight {
    color: var(--accent);
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200, 255, 95, 0.35);
}

.btn-primary.large { padding: 1.1rem 2.5rem; font-size: 1rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--light);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
    cursor: none;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
}

.btn-arrow { font-size: 1.1rem; transition: transform 0.2s ease; }
.btn-primary:hover .btn-arrow, .btn-ghost:hover .btn-arrow { transform: translate(2px, -2px); }

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat span { color: var(--accent); }

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: -4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 0.0rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.75rem;
    z-index: 2;
}

.scroll-indicator {
    width: 24px; height: 40px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ================================
   PARALLAX WRAPPER
================================ */
.parallax-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.parallax-bg {
    position: absolute;
    inset: -30%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.65);
}

.parallax-overlay.dark { background: rgba(10, 10, 15, 0.75); }

/* ================================
   CONTAINER
================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   SECTION COMUNS
================================ */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-tag.light { color: var(--accent); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-header h2 em { color: var(--accent); font-style: normal; }

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ================================
   SOBRE
================================ */
.section-sobre {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sobre-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.sobre-text p {
    color: rgba(244, 244, 240, 0.75);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.sobre-text .btn-primary { margin-top: 1rem; }

.sobre-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.sobre-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.sobre-card:hover {
    background: rgba(200, 255, 95, 0.05);
    border-color: rgba(200, 255, 95, 0.2);
    transform: translateY(-4px);
}

.card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

.sobre-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.sobre-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ================================
   PROJETOS
================================ */
.section-projetos {
    padding: 8rem 0;
    background: var(--dark-2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 255, 95, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.project-number {
    position: absolute;
    top: 1rem; right: 1rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    z-index: 2;
}

.project-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
}

.project-card:hover .project-icon { transform: scale(1.15) rotate(5deg); }

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.project-link {
    background: var(--accent);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.project-link:hover { transform: scale(1.05); }

.project-info { padding: 1.5rem; }

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.project-tags span {
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(200, 255, 95, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    border: 1px solid rgba(200, 255, 95, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.project-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ================================
   HABILIDADES
================================ */
.section-habilidades {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.skill-category h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.skill-bars { display: flex; flex-direction: column; gap: 1.5rem; }

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--light);
}

.skill-bar-header span:last-child { color: var(--accent); font-weight: 600; }

.skill-bar-bg {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    border-radius: 4px;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================
   EXPERIÊNCIA
================================ */
.section-experiencia {
    padding: 8rem 0;
    background: var(--dark);
}

.section-experiencia .section-header h2 { color: var(--white); }

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content { order: -1; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { order: 1; }

.timeline-dot {
    width: 14px; height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 2px var(--accent);
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.timeline-content:hover {
    background: rgba(200, 255, 95, 0.04);
    border-color: rgba(200, 255, 95, 0.15);
}

.timeline-date {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.timeline-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ================================
   DEPOIMENTOS
================================ */
.section-depoimentos {
    padding: 8rem 0;
    background: var(--dark-2);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.depoimento-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 255, 95, 0.15);
}

.depoimento-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 1.5rem;
    display: block;
}

.depoimento-card p {
    color: rgba(244, 244, 240, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.depoimento-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.depoimento-author span { font-size: 0.8rem; color: var(--muted); }

/* ================================
   FOOTER
================================ */
.footer-cta {
    background: var(--dark-3);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200, 255, 95, 0.05), transparent 70%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content h2 em { color: var(--accent); font-style: normal; }

.cta-content p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.footer-bottom {
    background: var(--dark);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-brand { font-size: 1.8rem; display: block; margin-bottom: 1rem; }

.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links-group ul { list-style: none; }

.footer-links-group li { margin-bottom: 0.8rem; }

.footer-links-group a {
    color: var(--muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links-group a:hover { color: var(--accent); }

.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bar p { font-size: 0.85rem; color: var(--muted); }

.back-to-top {
    font-size: 0.85rem;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.back-to-top:hover { color: var(--accent); }

/* ================================
   ANIMAÇÕES DE REVEAL
================================ */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

[data-delay="100"] { transition-delay: 0.1s !important; }
[data-delay="150"] { transition-delay: 0.15s !important; }
[data-delay="200"] { transition-delay: 0.2s !important; }
[data-delay="300"] { transition-delay: 0.3s !important; }

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .skills-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
    .timeline::before { display: none; }
    .timeline-item { grid-template-columns: 1fr; }
    .timeline-item:nth-child(odd) .timeline-content { order: 1; text-align: left; }
    .timeline-dot { display: none; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }

    .hero-title { letter-spacing: -2px; }
    .hero-stats { gap: 1.5rem; }
    .stat-number { font-size: 2rem; }

    .projects-grid { grid-template-columns: 1fr; }
    .sobre-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bar { flex-direction: column; gap: 1rem; text-align: center; }

    .hero-scroll { bottom: 2.0rem; }

    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
}

/* ================================
   LOGO NA NAV
================================ */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

/* ================================
   SOBRE — ícones SVG
================================ */
.card-icon-svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.card-icon-svg svg {
    width: 100%;
    height: 100%;
}

/* ================================
   SERVIÇOS
================================ */
.section-servicos {
    padding: 8rem 0;
    background: var(--dark);
}

.servicos-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.tab-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    font-weight: 700;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.servicos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Lista de serviços individuais */
.servicos-list {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.servico-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 1rem;
    transition: background 0.2s ease;
}

.servico-item:last-child { border-bottom: none; }

.servico-item:hover { background: rgba(200, 255, 95, 0.04); }

.servico-name {
    font-size: 0.88rem;
    color: var(--light-2);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
}

.servico-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-em-breve {
    font-size: 0.65rem;
    background: rgba(200,255,95,0.12);
    color: var(--accent);
    border: 1px solid rgba(200,255,95,0.25);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cards de pacotes */
.pacotes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pacote-card {
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.pacote-card:hover {
    transform: translateY(-4px);
}

.pacote-card.green {
    background: rgba(67, 233, 123, 0.06);
    border-color: rgba(67, 233, 123, 0.2);
}

.pacote-card.yellow {
    background: rgba(200, 255, 95, 0.06);
    border-color: rgba(200, 255, 95, 0.2);
}

.pacote-card.red {
    background: rgba(245, 87, 108, 0.06);
    border-color: rgba(245, 87, 108, 0.2);
}

.pacote-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.pacote-preco {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.pacote-card ul {
    list-style: none;
    margin-bottom: 1.2rem;
}

.pacote-card ul li {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.pacote-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
}

.btn-pacote {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-pacote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,255,95,0.3);
}

.em-breve-banner {
    background: rgba(200,255,95,0.08);
    border: 1px solid rgba(200,255,95,0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Responsivo serviços */
@media (max-width: 900px) {
    .servicos-layout {
        grid-template-columns: 1fr;
    }
    .pacotes-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* ================================
   SERVIÇOS — layout texto descritivo
================================ */
.servico-desc {
    padding: 0.5rem 0;
}

.servico-desc h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.servico-desc p {
    color: rgba(244, 244, 240, 0.7);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.pacote-desc {
    font-size: 0.85rem;
    color: rgba(244, 244, 240, 0.65);
    line-height: 1.7;
    margin: 0.8rem 0 1.2rem;
}

/* Remove estilos antigos de lista/preço que não existem mais */
.pacote-preco { display: none; }
.pacote-card ul { display: none; }

/* ================================
   SERVIÇOS — centralizado sem cards
================================ */
.servico-central {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 0 2rem;
}

.servico-central h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 1.4rem;
    line-height: 1.15;
}

.servico-central p {
    color: rgba(244, 244, 240, 0.65);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.servico-central .btn-primary {
    margin-top: 1.5rem;
}

.servico-central .em-breve-banner {
    margin-bottom: 1.5rem;
}
