html {
    scroll-behavior: smooth;
}

/* Variaveis baseadas no design_system2.html */
:root {
    --lilac-dark: #4B007D;
    --lilac-dark2: #510e7edb;
    --lilac-accent: #A459D1;
    --lilac-soft: #D7B8FF;
    --lilac-soft2: #b685f7;
    --lilac-surface: #EDE2FF;
    --lilac-bg: #F8F6FC;
    --text-main: #4A4A4A;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    background-color: transparent;
    /* Alterado para enxergar o vídeo ao fundo */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 72px;
    /* Compensa o menu fixo */
}

/* Utilitários de Animação */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes floatReverse {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(-4deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes floatGentle {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(164, 89, 209, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(164, 89, 209, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(164, 89, 209, 0);
    }
}

@keyframes lightPass {
    0% {
        transform: translateX(-150%) skew(-15deg);
    }

    100% {
        transform: translateX(250%) skew(-15deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }

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

/* SEÇÃO HERO */
.hero {
    position: relative;
    min-height: 80vh;
    max-height: 1080px;
    /* Evita que a seção fique gigante em telas muito grandes ou com zoom baixo */
    display: flex;
    align-items: stretch;
    /* Centraliza o container verticalmente */
    justify-content: center;
    background-color: transparent;
    overflow: hidden;
    z-index: 1;
}

/* Video Background Global */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-color: var(--lilac-bg);
    /* Fallback: cor de fundo caso o vídeo demore a carregar */
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Força GPU compositing para o vídeo não travar a thread principal */
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D7B8FF;
    opacity: 0.85;
    z-index: 0;
}

/* Efeito de Luz Lilás Forte e Elegante */
.hero-light-effect {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 300%;
    height: 200%;
    background: linear-gradient(115deg,
            transparent 35%,
            rgba(164, 89, 209, 0.4) 48%,
            rgba(75, 0, 125, 0.3) 50%,
            rgba(164, 89, 209, 0.4) 52%,
            transparent 65%);
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* Bubbles de Fundo como no design system */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background-color: var(--lilac-accent);
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(200px);
    opacity: 0.08;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 70%;
    background-color: var(--lilac-soft);
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(250px);
    opacity: 0.15;
    z-index: 0;
}

.hero-container {
    width: 100%;
    max-width: 1300px;
    margin: 90px auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* CONTEÚDO (Esquerda) */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(164, 89, 209, 0.3);
    color: var(--lilac-dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    width: max-content;
    box-shadow: 0 4px 15px rgba(75, 0, 125, 0.05);
    animation: fadeInUp 0.8s ease-out both;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    /* Evita que o ponto seja esmagado quando o texto quebra */
    background-color: var(--lilac-accent);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.8rem;
    /* Reduzido para melhor balanceamento */
    line-height: 0.9;
    /* Ajuste leve devido a fonte menor */
    color: var(--lilac-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(to right, var(--lilac-dark), var(--lilac-accent), var(--lilac-soft2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 5px;
    /* Ajuste acompanhando tamanho menor */
}

.hero-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    max-width: 500px;
    /* Alinhado melhor com o novo tamanho do titulo */
    border-left: 4px solid var(--lilac-accent);
    padding-left: 1.25rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Botões baseados no design system */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--lilac-dark);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(75, 0, 125, 0.2);
}

.btn-primary:hover {
    background: var(--lilac-dark2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(164, 89, 209, 0.4);
}

.btn-primary i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--lilac-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1.2rem 2.5rem;
    border-radius: 9999px;
    border: 2px solid var(--lilac-accent);
    /* Borda mais forte para não sumir no fundo */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-secondary:hover {
    background: var(--lilac-soft);
    border-color: var(--lilac-accent);
    transform: translateY(-2px);
}

.btn-secondary i {
    width: 20px;
    height: 20px;
}

/* IMAGEM E ÍCONES (Direita) */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    /* Mantém na parte inferior da grid */
    padding-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    max-height: 95vh;
    /* Ajusta conforme o viewport da tela grande */
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform: scale(1.15);
    /* Removido o translateY para ficar grudada no final */
    transform-origin: bottom center;
    /* Efeito de transparência na parte de baixo para parecer estar surgindo */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    will-change: transform;
}

/* ÍCONES FLUTUANTES */
.floating-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(75, 0, 125, 0.08);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/* Z-Index (Profundidade) */
.floating-icon {
    z-index: 3;
    opacity: 1;
    filter: drop-shadow(0 10px 20px rgba(75, 0, 125, 0.1));
}

.floating-icon.behind {
    z-index: 1;
    opacity: 0.8;
}

/* Tamanhos */
.size-sm {
    width: 45px;
    height: 45px;
    border-radius: 12px;
}

.size-sm i {
    width: 20px;
    height: 20px;
}

.size-md {
    width: 64px;
    height: 64px;
    border-radius: 20px;
}

.size-md i {
    width: 28px;
    height: 28px;
}

.size-lg {
    width: 80px;
    height: 80px;
    border-radius: 24px;
}

.size-lg i {
    width: 36px;
    height: 36px;
}

/* Estilos Visuais */
.style-glass {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(215, 184, 255, 0.8);
    color: var(--lilac-accent);
}

.style-solid {
    background: white;
    border: 1px solid var(--lilac-surface);
    color: var(--lilac-dark);
}

.style-gradient {
    background: linear-gradient(135deg, rgba(237, 226, 255, 0.9), rgba(255, 255, 255, 1));
    border: none;
    color: var(--lilac-accent);
}

.style-dark {
    background: var(--lilac-dark);
    color: white;
    box-shadow: 0 10px 30px rgba(75, 0, 125, 0.3);
}

.style-vibrant {
    background: linear-gradient(135deg, var(--lilac-accent), var(--lilac-dark));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Posições dos 6 ícones - 3 de cada lado, evitando o topo extremo */
/* Lado Esquerdo da Imagem */
.icon-1 {
    top: 25%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    top: 50%;
    left: 10%;
    animation: floatReverse 7s ease-in-out infinite;
}

.icon-3 {
    bottom: 15%;
    left: 0%;
    animation: floatGentle 5s ease-in-out infinite;
}

/* Lado Direito da Imagem - Afastados mais para a direita */
.icon-4 {
    top: 20%;
    right: -12%;
    animation: float 8s ease-in-out infinite;
}

.icon-5 {
    top: 45%;
    right: 5%;
    animation: floatReverse 6s ease-in-out infinite;
}

.icon-6 {
    bottom: 20%;
    right: -8%;
    animation: floatGentle 7s ease-in-out infinite;
}

.mobile-fade {
    display: none;
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.8rem;
    }
}

@media (max-width: 992px) {
    .hero {
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        margin-top: 40px;
        padding: 0 1.5rem;
    }

    .hero-image-wrapper {
        order: -1;
        justify-content: center;
        padding-top: 2rem;
        margin-top: 0;
        margin-bottom: -2rem;
        position: relative;
    }

    .hero-image {
        max-height: 48vh;
        z-index: 1;
        transform: scale(1.05);
    }

    .mobile-fade {
        display: none;
    }

    .floating-icon.size-sm {
        width: 32px;
        height: 32px;
    }

    .floating-icon.size-md {
        width: 45px;
        height: 45px;
    }

    .floating-icon.size-lg {
        width: 55px;
        height: 55px;
    }

    /* Ícones: 3 do lado esquerdo (1,3,5), 3 do lado direito (2,4,6) */
    /* Lado Esquerdo */
    .icon-1 {
        top: 12%;
        left: 10%;
        right: auto;
    }

    .icon-3 {
        top: 42%;
        left: 8%;
        right: auto;
    }

    .icon-5 {
        top: 72%;
        left: 12%;
        right: auto;
    }

    /* Lado Direito */
    .icon-2 {
        top: 18%;
        right: 10%;
        left: auto;
    }

    .icon-4 {
        top: 48%;
        right: 8%;
        left: auto;
    }

    .icon-6 {
        top: 78%;
        right: 12%;
        left: auto;
    }

    .hero-content {
        padding-top: 0;
        margin-top: 0;
        position: relative;
        z-index: 4;
        align-items: center;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: 0.75rem;
        line-height: 1.0;
        width: 100%;
        word-wrap: break-word;
    }

    .hero-label {
        font-size: 0.75rem;
        margin: 0 auto 1.25rem auto;
        width: auto;
        max-width: 100%;
        white-space: normal;
        display: inline-flex;
        /* Restaurado para manter alinhamento com o ponto */
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1.25rem;
    }

    .hero-description {
        border-left: none;
        padding-left: 0;
        margin: 0 auto 2rem auto;
        font-size: 1rem;
        max-width: 85%;
        line-height: 1.5;
    }

    .hero-actions {
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .hero-image {
        max-height: 40vh;
    }

    /* Ajuste para 768px */
    .icon-1 {
        left: 2%;
    }

    .icon-3 {
        left: 1%;
    }

    .icon-5 {
        left: 5%;
    }

    .icon-2 {
        right: 2%;
    }

    .icon-4 {
        right: 1%;
    }

    .icon-6 {
        right: 5%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 0;
        min-height: auto;
        max-height: none;
    }

    .hero-container {
        padding: 0 1rem;
        margin-top: 10px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.2rem);
    }

    .hero-label {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .hero-image-wrapper {
        padding-top: 1rem;
        margin-bottom: -1.5rem;
    }

    .hero-image {
        max-height: 25vh;
    }

    .hero-description {
        margin: 0 auto 1rem auto;
        font-size: 0.95rem;
        max-width: 95%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        padding: 0;
        align-items: center;
        /* Centraliza os botões */
    }

    .hero-actions a {
        width: 100%;
        max-width: 280px;
        /* Garante um tamanho confortável sem ser tela toda */
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Ajuste fino para mobile extremo garantindo 3 de cada lado */
    .icon-1 {
        left: 5%;
        right: auto;
        top: 10%;
    }

    .icon-3 {
        left: 2%;
        right: auto;
        top: 40%;
    }

    .icon-5 {
        left: 8%;
        right: auto;
        top: 70%;
    }

    .icon-2 {
        right: 5%;
        left: auto;
        top: 15%;
    }

    .icon-4 {
        right: 2%;
        left: auto;
        top: 45%;
    }

    .icon-6 {
        right: 8%;
        left: auto;
        top: 75%;
    }
}

@media (max-width: 380px) {
    .hero-container {
        margin-top: -15px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 1.9rem);
        margin-bottom: 0.5rem;
    }

    .hero-label {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
        padding: 0.35rem 0.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.35;
    }

    .hero-image-wrapper {
        padding-top: 4rem;
        margin-bottom: -0.5rem;
    }

    .hero-image {
        max-height: 25vh;
        transform: scale(1.1);
    }

    .hero-actions {
        gap: 0.5rem;
    }

    .hero-actions a {
        padding: 0.85rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* =========================================
   SEÇÃO SOBRE MIM
========================================= */
.about {
    position: relative;
    padding: 8rem 0;
    z-index: 2;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    /* Reduzida para o vídeo aparecer mais */
    backdrop-filter: blur(5px);
    /* Dá um efeito sofisticado de vidro fosco */
    z-index: 0;
}

.about-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Levemente mais espaço pro texto */
    gap: 5rem;
    align-items: center;
}

/* IMAGEM (Esquerda) */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out both;
}

.about-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-4deg);
    width: 90%;
    height: 95%;
    background: linear-gradient(135deg, var(--lilac-accent), var(--lilac-soft));
    border-radius: 40px;
    z-index: 0;
    box-shadow: 0 20px 40px rgba(164, 89, 209, 0.2);
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image-bg {
    transform: translate(-50%, -50%) rotate(0deg);
}

.about-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(75, 0, 125, 0.15);
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
    transform: translateY(-10px);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(75, 0, 125, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    border: 1px solid var(--lilac-surface);
    animation: floatGentle 4s ease-in-out infinite;
}

.badge-icon {
    color: var(--lilac-accent);
    width: 24px;
    height: 24px;
}

.about-badge span {
    font-weight: 700;
    color: var(--lilac-dark);
    font-size: 0.95rem;
    white-space: nowrap;
}

/* CONTEÚDO (Direita) */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid rgba(164, 89, 209, 0.3);
    color: var(--lilac-accent);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    width: max-content;
    box-shadow: 0 4px 15px rgba(75, 0, 125, 0.05);
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    color: var(--lilac-dark);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.about-title .highlight {
    background: linear-gradient(to right, var(--lilac-dark), var(--lilac-accent), var(--lilac-soft2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 5px;
}

.about-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.about-description:last-of-type {
    margin-bottom: 2.5rem;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* RESPONSIVIDADE SOBRE MIM */
@media (max-width: 1200px) {
    .about-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
        padding: 0 1.5rem;
    }

    /* INVERTER ORDEM NO MOBILE: Texto Primeiro, Imagem Depois */
    .about-content {
        order: 1;
        align-items: center;
    }

    .about-image-wrapper {
        order: 2;
        padding: 0;
        max-width: 75%;
        margin: 2rem auto 0 auto;
    }

    .about-label {
        margin: 0 auto 1.5rem auto;
    }

    .about-description {
        text-align: center;
        margin: 0 auto 1.25rem auto;
        max-width: 85%;
    }

    .about-actions {
        justify-content: center;
    }

    .about-badge {
        right: 0%;
        bottom: -1rem;
        left: 25%;
        transform: translateX(-50%);
        width: max-content;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 5rem 0;
    }

    .about-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .about-image-bg {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 4rem 0;
    }

    .about-container {
        padding: 0 1rem;
        gap: 3rem;
    }

    .about-title {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
    }

    .about-badge {
        padding: 0.75rem 1rem;
        bottom: -1.5rem;
    }

    .about-badge span {
        font-size: 0.85rem;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
    }
}

/* =========================================
   SEÇÃO SERVIÇOS
========================================= */
.services {
    position: relative;
    padding: 8rem 0;
    z-index: 2;
    overflow: hidden;
    background-color: transparent;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    /* var(--lilac-bg) com opacidade */
    backdrop-filter: blur(8px);
    z-index: 0;
}

.services-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out both;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid rgba(164, 89, 209, 0.3);
    color: var(--lilac-accent);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(75, 0, 125, 0.05);
}

.services-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    color: var(--lilac-dark);
    letter-spacing: 1px;
}

.services-title .highlight {
    background: linear-gradient(to right, var(--lilac-dark), var(--lilac-accent), var(--lilac-soft2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.service-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(215, 184, 255, 0.6);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(75, 0, 125, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 184, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(164, 89, 209, 0.15);
    border-color: var(--lilac-accent);
    background: rgba(255, 255, 255, 0.9);
}

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

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lilac-surface), white);
    border: 1px solid var(--lilac-soft);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    transition: transform 0.4s ease, background 0.4s ease;
    box-shadow: 0 8px 20px rgba(75, 0, 125, 0.08);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--lilac-soft), white);
    border-color: var(--lilac-accent);
}

.service-icon {
    color: var(--lilac-dark);
    width: 36px;
    height: 36px;
    transition: color 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--lilac-accent);
}

.service-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lilac-dark);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.service-card-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service-btn {
    width: auto;
    padding: 1rem 2rem;
    align-self: center;
    /* Garante que não estique se o card for flex-column */
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    background: white;
    white-space: nowrap;
}

.service-card:hover .service-btn {
    background: var(--lilac-dark);
    color: white;
    border-color: var(--lilac-dark);
}

.service-card:hover .service-btn i {
    transform: translateX(5px);
}

/* RESPONSIVIDADE SERVIÇOS */
@media (max-width: 1200px) {
    .services-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 5rem 0;
    }

    .services-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 4rem 0;
    }

    .services-header {
        margin-bottom: 3.5rem;
    }

    .services-container {
        padding: 0 1rem;
    }

    .services-title {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
    }
}

.services-note {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(164, 89, 209, 0.2);
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.services-note i {
    color: var(--lilac-accent);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.services-note p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .services-note {
        flex-direction: column;
        text-align: center;
        margin-top: 3.5rem;
        padding: 1.25rem;
    }
}

/* =========================================
   SEÇÃO PROCESSO
========================================= */
.process {
    position: relative;
    padding: 8rem 0;
    z-index: 2;
    overflow: hidden;
    background-color: transparent;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(164, 89, 209, 0.3);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.process-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* --- LADO ESQUERDO: Visuals --- */
.process-visuals {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 1s ease-out both;
}

.process-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid rgba(164, 89, 209, 0.3);
    color: var(--lilac-accent);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    width: max-content;
    box-shadow: 0 4px 15px rgba(75, 0, 125, 0.05);
}

.process-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    color: var(--lilac-dark);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.process-title .highlight {
    background: linear-gradient(to right, var(--lilac-dark), var(--lilac-accent), var(--lilac-soft2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 5px;
}

.process-image-wrapper {
    position: relative;
    border-radius: 30px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-image-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(3deg);
    width: 95%;
    height: 90%;
    background: linear-gradient(135deg, var(--lilac-accent), var(--lilac-dark));
    border-radius: 40px;
    z-index: 0;
    transition: transform 0.4s ease;
}

.process-image-wrapper:hover .process-image-shape {
    transform: translate(-50%, -50%) rotate(0deg);
}

.process-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(75, 0, 125, 0.37);
    transition: transform 0.4s ease;
}

.process-image-wrapper:hover .process-image {
    transform: translateY(-5px);
}

.process-glass-badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(75, 0, 125, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    animation: floatGentle 4s ease-in-out infinite;
}

.process-glass-badge i {
    color: var(--lilac-accent);
}

.process-glass-badge span {
    font-weight: 700;
    color: var(--lilac-dark);
    font-size: 0.95rem;
}

/* --- LADO DIREITO: Timeline --- */
.process-timeline {
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    /* Centralizado com o marcador (1.5rem + 3px ajuste) */
    width: 2px;
    background: linear-gradient(to bottom, var(--lilac-dark), var(--lilac-accent), rgba(215, 184, 255, 0.3));
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 2rem;
    z-index: 1;
}

.timeline-marker {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--lilac-soft);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    margin-top: 2rem;
    /* Alinhado ao topo do card */
    z-index: 2;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.4s ease;
}

.timeline-item.group:hover .timeline-marker {
    border-color: var(--lilac-accent);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(164, 89, 209, 0.4);
}

.timeline-item.group:hover .timeline-dot {
    background: var(--lilac-accent);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(75, 0, 125, 0.05);
    border: 1px solid rgba(215, 184, 255, 0.4);
    transition: all 0.4s ease;
    overflow: hidden;
    flex-grow: 1;
}

.timeline-item.group:hover .timeline-content {
    background: white;
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(75, 0, 125, 0.1);
    border-color: var(--lilac-soft);
}

.timeline-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--lilac-surface);
    opacity: 0.5;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
}

.timeline-item.group:hover .timeline-number {
    color: var(--lilac-soft);
    opacity: 0.8;
}

.timeline-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--lilac-dark);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.timeline-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

/* RESPONSIVIDADE PROCESSO */
@media (max-width: 1200px) {
    .process-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .process-visuals {
        position: relative;
        top: 0;
        text-align: center;
        align-items: center;
    }

    .process-label {
        margin: 0 auto 1.5rem auto;
    }

    .process-image-wrapper {
        max-width: 75%;
        margin: 0 auto;
    }

    .process-glass-badge {
        left: 30%;
        bottom: -1rem;
        transform: translateX(-50%);
        width: max-content;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 5rem 0;
    }

    .process-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .process {
        padding: 4rem 0;
    }

    .process-container {
        padding: 0 1rem;
    }

    .process-title {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
    }

    .process-timeline {
        padding-left: 0;
        gap: 2rem;
    }

    .timeline-line {
        left: 11px;
        /* Centralizado para mobile */
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-number {
        font-size: 3rem;
        top: 0.5rem;
        right: 1rem;
    }

    .timeline-title {
        font-size: 1.2rem;
    }

    .timeline-description {
        font-size: 0.95rem;
    }
}

/* =========================================
   SEÇÃO PORTFÓLIO (BENTO GRID)
========================================= */
.portfolio {
    position: relative;
    padding: 8rem 0;
    z-index: 2;
    background-color: transparent;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.portfolio-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out both;
}

.portfolio-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(164, 89, 209, 0.3);
    color: var(--lilac-accent);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(75, 0, 125, 0.05);
}

.portfolio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    color: var(--lilac-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.portfolio-title .highlight {
    background: linear-gradient(to right, var(--lilac-dark), var(--lilac-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
}

/* CAROUSEL / SLIDER */
.portfolio-slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.portfolio-slider-track {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 3rem 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
}

.portfolio-slider-track::-webkit-scrollbar {
    display: none;
}

.slider-item {
    flex: 0 0 400px;
    height: 500px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    background: white;
    box-shadow: 0 15px 35px rgba(75, 0, 125, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(215, 184, 255, 0.4);
    animation: fadeInUp 1s ease-out both;
    transform: translate3d(0, 0, 0);
    /* Força bordas perfeitas */
}

.slider-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(164, 89, 209, 0.2);
    border-color: var(--lilac-accent);
    z-index: 10;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    /* Suporte para navegadores modernos */
    transform: translateZ(0);
    /* Força aceleração de hardware para nitidez */
    backface-visibility: hidden;
    filter: contrast(1.01) saturate(1.02);
    /* Leve realce para "saltar" aos olhos */
}

.slider-item:hover .slider-img {
    transform: scale(1.08);
}

.slider-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(75, 0, 125, 0.8), rgba(164, 89, 209, 0.3));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.slider-item:hover .slider-hover {
    opacity: 1;
}

.slider-btn {
    background: white;
    color: var(--lilac-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider-item:hover .slider-btn {
    transform: translateY(0);
}

.slider-btn i {
    width: 20px;
    height: 20px;
    color: var(--lilac-accent);
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    /* Aumentei um pouco para facilitar o clique */
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 25px rgba(75, 0, 125, 0.15);
    border: 1px solid var(--lilac-surface);
    color: var(--lilac-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 100;
    /* Garantir que fique acima de tudo */
}

.prev-btn {
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.next-btn {
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.slider-nav:hover {
    background: var(--lilac-dark);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.portfolio-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding: 0 2rem;
}

/* --- LIGHTBOX (MODAL) --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 0, 30, 0.9);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Começa do topo para facilitar o scroll */
    overflow-y: auto;
    /* Scroll agora é no fundo escuro */
    padding: 60px 0;
    /* Removendo padding lateral para a imagem crescer mais */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--lilac-accent) transparent;
}

.lightbox-overlay::-webkit-scrollbar {
    width: 8px;
}

.lightbox-overlay::-webkit-scrollbar-thumb {
    background: var(--lilac-accent);
    border-radius: 10px;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-container {
    position: relative;
    width: 95% !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    border-radius: 15px;
    display: block !important;
}

.lightbox-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.lightbox-img.loaded {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    color: var(--lilac-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    /* Escondido por padrão */
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000000;
    transition: all 0.3s ease;
}

.lightbox-close.active {
    display: flex;
}


.lightbox-close:hover {
    background: var(--lilac-dark);
    color: white;
    transform: scale(1.1) rotate(90deg);
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =========================================
   SEÇÃO DEPOIMENTOS
========================================= */
.testimonials {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(215, 184, 255, 0.7);
    /* Mesma cor base das outras sections */
    backdrop-filter: blur(8px);
    z-index: 0;
}

.testimonials-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.testi-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out both;
}

.testi-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(164, 89, 209, 0.3);
    color: var(--lilac-accent);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(75, 0, 125, 0.05);
}

.testi-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    color: var(--lilac-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.testi-title .highlight {
    background: linear-gradient(to right, var(--lilac-dark), var(--lilac-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 3rem 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testi-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(75, 0, 125, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    isolation: isolate;
}

/* Borda mágica legal baseada no design system */
.testi-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    /* Espessura da borda */
    background: linear-gradient(135deg, var(--lilac-accent), rgba(215, 184, 255, 0.2), var(--lilac-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(164, 89, 209, 0.2);
}

/* Ajuste estilo das estrelinhas */
.testi-stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.testi-stars i,
.testi-stars svg {
    width: 16px;
    height: 16px;
    color: #FFB800;
    fill: #FFB800;
    /* Preenche o ícone */
    stroke-width: 0;
    /* Remove a borda se quiser um preenchimento sólido total, ou mantenha 2 para contorno */
}

.testi-content {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    position: relative;
}

.testi-content::before {
    content: '"';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(164, 89, 209, 0.15);
    position: absolute;
    top: -2rem;
    left: -1.5rem;
    line-height: 1;
}

.testi-client {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(215, 184, 255, 0.3);
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--lilac-surface);
    color: var(--lilac-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(75, 0, 125, 0.1);
}

.init-only {
    background: linear-gradient(135deg, var(--lilac-surface), #D7B8FF);
}

.testi-info h4 {
    color: var(--lilac-dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.testi-info span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--lilac-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.testi-nav {
    top: 50%;
    transform: translateY(-50%);
}

/* =========================================
   SEÇÃO FAQ (PERGUNTAS FREQUENTES)
========================================= */
.faq {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 246, 252, 0.85);
    /* Tom mais claro para alternar com os depoimentos */
    backdrop-filter: blur(8px);
    z-index: 0;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out both;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(164, 89, 209, 0.3);
    color: var(--lilac-accent);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(75, 0, 125, 0.05);
}

.faq-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    color: var(--lilac-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.faq-title .highlight {
    background: linear-gradient(to right, var(--lilac-dark), var(--lilac-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.faq-item {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.faq-item.gradient-border-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(164, 89, 209, 0.5), rgba(215, 184, 255, 0.2), rgba(75, 0, 125, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(75, 0, 125, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 1.8rem 2.2rem;
    cursor: pointer;
    text-align: left;
    outline: none;
    z-index: 2;
    position: relative;
}

.faq-question h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lilac-dark);
    margin: 0;
    padding-right: 1.5rem;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--lilac-accent);
}

.faq-icon-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lilac-surface);
    color: var(--lilac-dark);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon-wrapper {
    background: var(--lilac-accent);
    color: white;
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.faq-icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 2.2rem 1.8rem 2.2rem;
    z-index: 2;
    position: relative;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(75, 0, 125, 0.08);
}

.faq-item.active .faq-question h3 {
    color: var(--lilac-accent);
}

.faq-item.active .faq-icon-wrapper {
    background: var(--lilac-dark);
    color: white;
    transform: rotate(180deg);
}

.faq-item.active .faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* Efeito Flashlight do Design System */
.flashlight-effect {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.7), transparent 40%);
    z-index: 0;
}

.has-flashlight:hover .flashlight-effect {
    opacity: 1;
}

/* RESPONSIVIDADE CAROUSEL/SLIDER GERAL */
@media (max-width: 1200px) {
    .portfolio-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 300px;
        height: 400px;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }

    .testi-card {
        flex: 0 0 380px;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 5rem 0;
    }

    .portfolio-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .portfolio-slider-track {
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .slider-item {
        flex: 0 0 280px;
        height: 380px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }

    .testimonials {
        padding: 6rem 0;
    }

    .testi-title {
        font-size: clamp(2.5rem, 8vw, 3.2rem);
    }

    .testi-card {
        flex: 0 0 320px;
        padding: 2rem;
    }

    .testimonials-track {
        gap: 1.5rem;
        padding: 1rem 1rem 3rem 1rem;
    }

    .faq {
        padding: 6rem 0;
    }

    .faq-title {
        font-size: clamp(2.5rem, 8vw, 3.2rem);
    }

    .faq-question {
        padding: 1.5rem 1.8rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-answer-inner {
        padding: 0 1.8rem 1.5rem 1.8rem;
    }
}

@media (max-width: 576px) {
    .portfolio {
        padding: 4rem 0;
    }

    .portfolio-title {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
    }

    .slider-item {
        flex: 0 0 85vw;
        /* Ocupar quase toda a tela no mobile */
        height: 380px;
    }

    .prev-btn,
    .next-btn {
        display: flex;
        /* Habilitado novamente a pedido */
        width: 45px;
        height: 45px;
        z-index: 110;
        background: rgba(255, 255, 255, 0.9);
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .testi-card {
        flex: 0 0 85vw;
        padding: 1.5rem;
        min-height: 350px;
    }

    .testi-content {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .testi-content::before {
        font-size: 3rem;
        top: -1.5rem;
        left: -0.75rem;
    }

    .testi-avatar {
        width: 50px;
        height: 50px;
    }

    .testi-info h4 {
        font-size: 0.95rem;
    }

    .testi-nav {
        display: flex !important;
        width: 40px;
        height: 40px;
        z-index: 100;
        background: rgba(255, 255, 255, 0.9);
    }

    .prev-btn.testi-nav {
        left: 0;
    }

    .next-btn.testi-nav {
        right: 0;
    }

    .portfolio-actions .btn-primary {
        width: auto;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        display: inline-flex;
        margin: 0 auto;
    }

    .portfolio-actions .btn-primary i {
        margin-left: 0;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .faq {
        padding: 4rem 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer-inner {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* =========================================
   SEÇÃO CTA FINAL
========================================= */
.cta {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(75, 0, 125, 0.92) 0%,
            rgba(120, 20, 180, 0.88) 50%,
            rgba(164, 89, 209, 0.85) 100%);
    z-index: 0;
}

/* Bubbles de fundo decorativas */
.cta-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cta-bubble-1 {
    width: 500px;
    height: 500px;
    background: rgba(215, 184, 255, 0.2);
    top: -150px;
    right: -100px;
}

.cta-bubble-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -100px;
    left: -80px;
}

.cta-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- Conteúdo esquerda --- */
.cta-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: fadeInUp 0.8s ease-out both;
}

.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
    width: max-content;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5.5rem;
    line-height: 0.88;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.cta-title .highlight {
    background: linear-gradient(to right, #D7B8FF, #b685f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 4px;
}

.cta-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 500;
    border-left: 3px solid rgba(215, 184, 255, 0.6);
    padding-left: 1.25rem;
}

.cta-whatsapp-btn {
    align-self: flex-start;
    background: white !important;
    color: var(--lilac-dark) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    margin-bottom: 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    white-space: nowrap;
}

.cta-whatsapp-btn:hover {
    background: var(--lilac-surface) !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3) !important;
}

.cta-whatsapp-btn i {
    width: 20px;
    height: 20px;
    color: var(--lilac-accent);
}

.cta-arrow {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
    color: var(--lilac-dark) !important;
}

.cta-whatsapp-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* --- Contatos --- */
.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.6rem 0;
}

.cta-contact-item:hover {
    color: white;
    transform: translateX(6px);
}

.cta-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-contact-item:hover .cta-contact-icon {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(215, 184, 255, 0.5);
}

.cta-contact-icon i,
.cta-insta-svg {
    width: 18px;
    height: 18px;
    color: inherit;
    stroke: currentColor;
}

.cta-insta-svg .insta-dot {
    fill: currentColor;
    stroke: none;
}

/* --- Imagem direita --- */
.cta-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-image-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 120px;
    background: rgba(215, 184, 255, 0.35);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
}

.cta-image {
    position: relative;
    z-index: 1;
    max-height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

/* Responsividade CTA */
@media (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-content {
        align-items: center;
    }

    .cta-label {
        align-self: center;
    }

    .cta-title {
        font-size: 4.5rem;
    }

    .cta-description {
        border-left: none;
        padding-left: 0;
        max-width: 600px;
        text-align: center;
    }

    .cta-whatsapp-btn {
        align-self: center;
    }

    .cta-contact-item {
        justify-content: center;
    }

    .cta-image-wrapper {
        order: -1;
    }

    .cta-image {
        max-height: 360px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 6rem 0 4rem;
    }

    .cta-title {
        font-size: 3.8rem;
    }

    .cta-image {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .cta {
        padding: 5rem 0 3.5rem;
    }

    .cta-container {
        padding: 0 1.25rem;
    }

    .cta-title {
        font-size: clamp(3rem, 12vw, 3.8rem);
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-image {
        max-height: 260px;
    }
}

/* =========================================
   NAVEGAÇÃO (MENU FIXO)
========================================= */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    background: rgba(248, 246, 252, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(215, 184, 255, 0.35);
    box-shadow: 0 4px 30px rgba(75, 0, 125, 0.06);
    transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

/* Estado ao rolar: fica mais sólido e menor */
.site-nav.scrolled {
    height: 62px;
    background: rgba(248, 246, 252, 0.95);
    box-shadow: 0 4px 30px rgba(75, 0, 125, 0.12);
}

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

/* --- Logo --- */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lilac-dark), var(--lilac-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(75, 0, 125, 0.3);
    transition: transform 0.6s ease, box-shadow 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(180deg);
    box-shadow: 0 8px 25px rgba(164, 89, 209, 0.5);
}

.nav-logo-icon i {
    width: 20px;
    height: 20px;
    color: white;
}

.nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.85rem;
    color: var(--lilac-dark);
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 3px;
}

.nav-logo-accent {
    color: var(--lilac-accent);
}

/* --- Links Desktop --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-main);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--lilac-dark), var(--lilac-accent));
    transition: width 0.35s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 1.7rem);
}

.nav-link.active {
    color: var(--lilac-dark);
}

/* --- Ações (botão CTA + hamburger) --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: var(--lilac-dark);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(75, 0, 125, 0.25);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--lilac-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164, 89, 209, 0.45);
}

.nav-cta i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(4px);
}

/* --- Hamburger --- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(215, 184, 255, 0.2);
    border: 1px solid rgba(164, 89, 209, 0.25);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.nav-hamburger:hover {
    background: rgba(215, 184, 255, 0.4);
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--lilac-dark);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

/* Animação X ao abrir */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* --- Menu Mobile --- */
.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(248, 246, 252, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(215, 184, 255, 0.4);
    box-shadow: 0 20px 40px rgba(75, 0, 125, 0.1);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.nav-mobile.open {
    max-height: 500px;
    opacity: 1;
    pointer-events: all;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0.25rem;
}

.nav-mobile-link {
    text-decoration: none;
    color: var(--text-main);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-mobile-link:hover {
    color: var(--lilac-accent);
    background: rgba(164, 89, 209, 0.06);
    border-left-color: var(--lilac-accent);
    padding-left: 1.5rem;
}

.nav-mobile-cta {
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    background: var(--lilac-dark);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(75, 0, 125, 0.25);
    transition: all 0.3s ease;
}

.nav-mobile-cta:hover {
    background: var(--lilac-accent);
    transform: translateY(-2px);
}

/* --- Offset de scroll para o menu fixo --- */
[id]:not(.nav-hamburger):not(.nav-mobile):not(.site-nav):not(.portfolio-lightbox):not(.lightbox-close-btn):not(.lightbox-image):not(.portfolio-track):not(.testimonials-track) {
    scroll-margin-top: 80px;
}

/* --- Responsividade --- */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0;
    }

    .nav-link {
        font-size: 0.82rem;
        padding: 0.5rem 0.65rem;
    }
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 1.25rem;
    }

    .nav-cta {
        display: none;
    }
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    position: relative;
    z-index: 2;
    background: rgba(75, 0, 125, 0.96);
    border-top: 1px solid rgba(215, 184, 255, 0.25);
    backdrop-filter: blur(16px);
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    margin: 0;
    text-align: center;
}

.site-footer p strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

@media (max-width: 576px) {
    .site-footer p {
        font-size: 0.78rem;
    }
}