/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: var(--fonte-corpo);
}

html {
    scroll-behavior: smooth;
}

:root {
    --primaria: #4f46e5;
    --secundaria: #7c3aed;
    --acento: #8b5cf6;

    --escuro: #0f172a;
    --maisEscuro: #0a0f1c;

    --claro: #e2e8f0;
    --texto-suave: #94a3b8;

    --vidro: rgba(255, 255, 255, 0.1);

    --borda: rgba(99, 102, 241, 0.35);

    --fonte-titulo: 'Space Grotesk', 'Segoe UI', sans-serif;
    --fonte-corpo: 'Inter', 'Segoe UI', sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background: transparent;
    color: var(--claro);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--fonte-titulo);
}

/* Estado inicial das animações de entrada (GSAP assume o controle) */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
}

.palavra {
    display: inline-block;
    opacity: 0;
    transform: translateY(115%);
    will-change: transform, opacity;
}

.linha-split {
    display: block;
    overflow: hidden;
}


/* =====================================================
   PRELOADER
===================================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;

    background: var(--maisEscuro);

    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.escondido {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-marca {
    font-family: var(--fonte-titulo);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
}

.preloader-marca span {
    color: var(--primaria);
}

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

.preloader-barra span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primaria), var(--secundaria));
    transition: width 0.4s ease;
}


/* =====================================================
   CURSOR CUSTOMIZADO
===================================================== */

.cursor-ponto,
.cursor-anel {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
}

.cursor-ponto {
    width: 7px;
    height: 7px;
    background: #fff;
}

.cursor-anel {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cursor-anel.ativo {
    width: 58px;
    height: 58px;
    background: rgba(99, 102, 241, 0.14);
    border-color: var(--primaria);
}

body.cursor-pronto,
body.cursor-pronto a,
body.cursor-pronto button {
    cursor: none;
}

@media (pointer: coarse), (max-width: 900px) {
    .cursor-ponto,
    .cursor-anel {
        display: none;
    }
}


/* =====================================================
   BARRA DE PROGRESSO DE SCROLL
===================================================== */

.progresso-scroll {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg, var(--primaria), var(--secundaria));

    transform: scaleX(0);
    transform-origin: left center;

    z-index: 101;
    pointer-events: none;
}


/* =====================================================
   CTA FIXO (MOBILE)
===================================================== */

.cta-fixa-mobile {
    display: none;
}

@media (max-width: 768px) {
    .cta-fixa-mobile {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 99;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        padding: 0.95rem 1.5rem;
        padding-bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));

        border-radius: 50px;
        background: linear-gradient(90deg, var(--primaria), var(--secundaria));

        color: #fff;
        font-weight: 600;
        font-size: 0.92rem;
        text-decoration: none;

        box-shadow: 0 15px 40px rgba(79, 70, 229, 0.45);

        transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    }

    .cta-fixa-mobile.escondido {
        transform: translateY(120%);
        opacity: 0;
    }

    .cta-fixa-mobile .status {
        background: #fff;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    .rodape {
        padding-bottom: 6.5rem;
    }
}


/* =====================================================
   FUNDO ANIMADO
===================================================== */

#animated-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: var(--maisEscuro);
    overflow: hidden;
}

#animated-bg::before {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.16), transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(124, 58, 237, 0.14), transparent 42%);
    animation: bg-flutuar 22s ease-in-out infinite alternate;
}

#animated-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 28, 0.18), rgba(10, 15, 28, 0.72));
    pointer-events: none;
}

@keyframes bg-flutuar {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(2%, -2%, 0) scale(1.06);
    }
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.10), transparent 45%);
}


.navegacao,
main,
footer {
    position: relative;
    z-index: 1;
}

/* =====================================================
   NAVEGAÇÃO
===================================================== */

.navegacao {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1.5rem 3rem;

    background: transparent;

    z-index: 100;

    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.5s var(--ease);
}

.navegacao.scrolled {
    padding: 0.95rem 3rem;

    background: rgba(10, 15, 28, 0.78);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navegacao.escondida {
    transform: translateY(-100%);
}

.marca {
    font-family: var(--fonte-titulo);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
    text-decoration: none;
}

.marca span {
    color: var(--primaria);
}

.menu {
    display: flex;

    align-items: center;

    justify-content: center;

    list-style: none;

    gap: 3rem;
}

.menu-link {
    position: relative;

    padding: 0.5rem 0;

    color: var(--claro);

    text-decoration: none;

    font-weight: 500;
    font-size: 0.95rem;

    transition: color 0.3s ease;
}

.menu-link::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--primaria),
            var(--secundaria)
        );

    transition: width 0.4s ease;
}

.menu-link:hover::after,
.menu-link.ativo::after {
    width: 100%;
}

.menu-link.ativo {
    color: #fff;
}

.nav-cta {
    padding: 0.65rem 1.5rem;

    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);

    color: #fff;
    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 600;

    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.nav-cta:hover {
    background: linear-gradient(90deg, var(--primaria), var(--secundaria));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    width: 34px;
    height: 34px;

    background: none;
    border: none;
    cursor: pointer;

    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform 0.35s var(--ease), opacity 0.3s ease;
}

.menu-toggle.ativo span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.ativo span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.ativo span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-mobile {
    position: fixed;
    inset: 0;
    z-index: 105;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;

    background: rgba(8, 12, 24, 0.98);
    backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);

    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease), transform 0.4s var(--ease);
}

.menu-mobile.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-mobile ul {
    list-style: none;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 1.75rem;
}

.menu-mobile-link {
    color: #fff;
    text-decoration: none;

    font-family: var(--fonte-titulo);
    font-size: 2rem;
    font-weight: 600;
}

.menu-mobile-cta {
    padding: 0.9rem 2.2rem;

    border-radius: 30px;

    background: linear-gradient(90deg, var(--primaria), var(--secundaria));

    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {
    .menu,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 115px 3rem 60px;

    overflow: hidden;
}

.hero-scene {
    position: absolute;

    top: 0;
    right: -5%;

    width: 58%;
    height: 100%;

    z-index: 0;

    pointer-events: none;
}

.hero-scene canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-conteudo {
    position: relative;
    z-index: 1;

    max-width: 760px;
}

.hero-disponivel {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 0.55rem 1.1rem;

    margin-bottom: 1.4rem;

    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(10px);

    font-size: 0.82rem;
    color: var(--claro);
}

.hero-titulo {
    max-width: 760px;

    margin-bottom: 1.1rem;

    font-size: clamp(2.3rem, 4.6vw, 4.1rem);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 700;

    color: #f8fafc;
}

.hero-titulo span {
    background: linear-gradient(90deg, var(--primaria), var(--acento));

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-subtitulo {
    max-width: 560px;

    margin-bottom: 1.6rem;

    color: var(--texto-suave);

    font-size: 1.05rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;

    margin-bottom: 2.25rem;
}

.botao {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    padding: 1rem 2.1rem;

    border-radius: 10px;

    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;

    transition: transform 0.4s var(--ease), box-shadow 0.4s ease, background 0.4s ease;
}

.botao-primario {
    color: #fff;

    background: linear-gradient(90deg, var(--primaria), var(--secundaria));

    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.35);
}

.botao-primario:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(79, 70, 229, 0.5);
}

.botao-secundario {
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.botao-secundario:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    gap: 3rem;

    padding-top: 1.3rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px;
}

.hero-stat strong {
    font-family: var(--fonte-titulo);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat > span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primaria);
}

.hero-stat p {
    width: 100%;
    margin-top: 0.3rem;

    color: var(--texto-suave);
    font-size: 0.8rem;
}

.hero-stat-texto {
    font-size: 1.5rem !important;
}

.hero-scroll {
    position: absolute;

    left: 3rem;
    bottom: 2.5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;

    color: var(--texto-suave);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-scroll-linha {
    position: relative;

    width: 1px;
    height: 55px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-linha i {
    position: absolute;

    top: -50%;
    left: 0;

    width: 100%;
    height: 50%;

    background: linear-gradient(180deg, transparent, var(--primaria));

    animation: scroll-linha 2s ease-in-out infinite;
}

@keyframes scroll-linha {
    0% {
        top: -50%;
    }
    100% {
        top: 100%;
    }
}

@media (max-width: 1100px) {
    .hero-scene {
        width: 70%;
        opacity: 0.55;
    }
}

/* Em janelas baixas (notebooks comuns) o indicador de scroll perde
   espaço para o resto do conteúdo do Hero — some para evitar sobreposição. */
@media (max-height: 760px) {
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 130px 25px 90px;
        text-align: left;
    }

    .hero-scene {
        width: 100%;
        right: 0;
        top: -6%;
        opacity: 0.5;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-scroll {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .botao {
        justify-content: center;
        width: 100%;
    }
}


/* =====================================================
   LABEL DE SEÇÃO (reutilizável)
===================================================== */

.secao-label {
    display: block;

    margin-bottom: 14px;

    text-align: center;

    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 700;

    color: var(--acento);
}


/* =====================================================
   SOBRE MIM
===================================================== */

.sobre {
    position: relative;

    max-width: 1450px;

    margin: 0 auto;

    padding: 8rem 40px;

    overflow: hidden;
}


/* =====================================================
   TOPO
===================================================== */

.sobre-topo {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr;

    gap: 60px;

    align-items: center;

    margin-bottom: 45px;
}

.sobre-label {
    display: block;

    margin-bottom: 12px;

    font-size: 0.9rem;

    letter-spacing: 5px;

    color: #8b7cff;

    font-weight: 700;
}

.sobre-titulo {
    margin: 0;

    max-width: 900px;

    font-size:
        clamp(3rem, 4.2vw, 4.5rem);

    line-height: 1.02;

    letter-spacing: -2px;

    color: #f8fafc;

    text-align: left;

    font-weight: 700;
}

.sobre-titulo span {
    background:
        linear-gradient(
            90deg,
            var(--primaria),
            #8b5cf6
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.sobre-introducao {
    max-width: 550px;

    margin-left: auto;

    color: var(--texto-suave);

    font-size: 1.05rem;

    line-height: 1.7;
}


/* =====================================================
   GRID
===================================================== */

.sobre-grid {
    display: grid;

    grid-template-columns:
        1fr
        1.25fr
        1fr;

    grid-template-areas:

        "foto identificacao identificacao"

        "foto email whatsapp"

        "sobre habilidades habilidades"

        "cursos experiencia experiencia";

    gap: 16px;

    align-items: stretch;
}


/* =====================================================
   CARDS BASE
===================================================== */

.sobre-grid > div,
.sobre-grid > a {
    position: relative;

    border:
        1px solid var(--borda);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.18);

    overflow: hidden;

    transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}


/* =====================================================
   FOTO SOBRE
===================================================== */

.sobre-foto-card {
    grid-area: foto;

    min-height: 540px;

    padding: 10px;
}

.sobre-foto {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 520px;

    object-fit: cover;

    border-radius: 14px;
}


/* =====================================================
   STATUS
===================================================== */

.disponivel {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 16px;

    border-radius: 30px;

    background:
        rgba(8, 15, 30, 0.9);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    color: white;

    font-size: 0.85rem;

    backdrop-filter: blur(10px);
}

.status {
    display: inline-block;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #00e5a8;

    box-shadow:
        0 0 10px rgba(0, 229, 168, 0.8);

    animation: pulsar 2s ease-in-out infinite;
}

@keyframes pulsar {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 229, 168, 0.8);
    }
    50% {
        box-shadow: 0 0 18px rgba(0, 229, 168, 1);
    }
}


/* =====================================================
   IDENTIFICAÇÃO
===================================================== */

.sobre-identificacao {
    grid-area: identificacao;

    min-height: 145px;

    padding: 30px;

    display: flex;

    justify-content: space-between;
    align-items: center;
}

.sobre-identificacao h3 {
    margin-bottom: 5px;

    font-size: 2rem;

    color: white;
}

.sobre-identificacao p {
    color: #9da8c5;

    font-size: 1.15rem;
}

.localizacao {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--claro);

    font-size: 1rem;
}

.icone-localizacao {
    color: var(--primaria);

    font-size: 1.2rem;
}


/* =====================================================
   CONTATOS (cards do Sobre)
===================================================== */

.email-card {
    grid-area: email;
}

.whatsapp-card {
    grid-area: whatsapp;
}

.sobre-contato {
    min-height: 135px;

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 20px;

    text-decoration: none;
    color: inherit;
}

.sobre-contato:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.55);
}

.contato-icone {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 1.6rem;

    color: #7c6cff;

    background:
        rgba(79, 70, 229, 0.1);

    border:
        1px solid rgba(79, 70, 229, 0.25);
}

.contato-icone.whatsapp {
    color: #00e5a8;

    background:
        rgba(0, 229, 168, 0.08);

    border-color:
        rgba(0, 229, 168, 0.2);
}

.contato-label {
    display: block;

    margin-bottom: 6px;

    color: var(--texto-suave);

    font-size: 0.85rem;
}

.sobre-contato p {
    color: white;

    font-size: 0.95rem;

    word-break: break-word;
}


/* =====================================================
   TÍTULO DOS CARDS
===================================================== */

.card-titulo {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;
}

.card-titulo h3 {
    color: white;

    font-size: 1.35rem;
}

.card-icone {
    color: #7565ff;

    font-size: 1.7rem;
}


/* =====================================================
   SOBRE TEXTO
===================================================== */

.sobre-texto-card {
    grid-area: sobre;

    padding: 32px;

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(124, 58, 237, 0.35),
            transparent 55%
        ),
        rgba(255, 255, 255, 0.035) !important;
}

.sobre-texto-card > p {
    color: #b7c0d5;

    font-size: 0.95rem;

    line-height: 1.65;
}


/* =====================================================
   ESTATÍSTICAS
===================================================== */

.estatisticas {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.15);
}

.estatistica {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.estatistica strong {
    color: #7162ff;

    font-size: 2rem;
}

.estatistica span {
    color: var(--texto-suave);

    font-size: 0.75rem;

    line-height: 1.3;
}


/* =====================================================
   HABILIDADES
===================================================== */

.habilidades-card {
    grid-area: habilidades;

    padding: 32px;
}

.habilidades-titulo {
    display: flex;

    align-items: center;
}

.aprendendo {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 12px;

    border-radius: 20px;

    border:
        1px solid rgba(0, 229, 168, 0.2);

    background:
        rgba(0, 229, 168, 0.05);

    color: #a7b4c9;

    font-size: 0.75rem;
}

.skills {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.skill {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 10px 15px;

    border-radius: 12px;

    border:
        1px solid rgba(99, 102, 241, 0.3);

    background:
        rgba(15, 23, 42, 0.65);

    color: #dce3f2;

    font-size: 0.9rem;

    font-weight: 600;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.skill img {
    width: 25px;
    height: 25px;

    object-fit: contain;

    flex-shrink: 0;
}


.skill:hover {
    border-color: var(--primaria);

    background:
        rgba(79, 70, 229, 0.12);

    transform:
        translateY(-3px);
}


/* =====================================================
   CURSOS
===================================================== */

.cursos-card {
    grid-area: cursos;

    padding: 30px;
}

.curso {
    display: flex;

    gap: 15px;

    padding: 15px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.curso:last-child {
    border-bottom: none;
}

.curso-logo {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-weight: 800;

    font-size: 1.2rem;
}

.curso-logo.udemy {
    background: #a435f0;

    color: white;
}

.curso-logo.alura {
    background: #75c044;

    color: white;
}

.curso-logo.devsamurai {
    background: #202020;

    color: #ff4d4d;
}

.curso strong {
    display: block;

    margin-bottom: 4px;

    color: white;

    font-size: 0.95rem;
}

.curso p {
    color: var(--texto-suave);

    font-size: 0.72rem;

    line-height: 1.4;
}


/* =====================================================
   EXPERIÊNCIA
===================================================== */

.experiencia-card {
    grid-area: experiencia;

    padding: 30px;
}

.experiencia-badge {
    margin-left: auto;

    padding: 7px 12px;

    border-radius: 20px;

    background:
        rgba(79, 70, 229, 0.1);

    border:
        1px solid rgba(99, 102, 241, 0.25);

    color: #a9a1ff;

    font-size: 0.75rem;
}

.timeline {
    position: relative;

    padding-left: 30px;
}

.timeline::before {
    content: '';

    position: absolute;

    top: 8px;
    bottom: 8px;

    left: 5px;

    width: 1px;

    background: rgba(99, 91, 255, 0.15);
}

.timeline-linha {
    position: absolute;

    top: 8px;
    left: 5px;

    width: 1px;
    height: 0%;

    background: linear-gradient(to bottom, #635bff, rgba(99, 91, 255, 0.2));
}

.timeline-item {
    position: relative;

    display: flex;

    gap: 18px;

    margin-bottom: 28px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-ponto {
    position: absolute;

    left: -30px;
    top: 5px;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #7565ff;

    box-shadow:
        0 0 12px rgba(117, 101, 255, 0.7);
}

.timeline-item strong {
    display: block;

    margin-bottom: 4px;

    color: white;

    font-size: 0.95rem;
}

.timeline-periodo {
    display: block;

    margin-bottom: 5px;

    color: #8177ff;

    font-size: 0.75rem;
}

.timeline-item p {
    max-width: 650px;

    color: var(--texto-suave);

    font-size: 0.78rem;

    line-height: 1.5;
}


/* =====================================================
   FRASE
===================================================== */

.sobre-frase {
    min-height: 100px;

    margin-top: 16px;

    padding: 25px 35px;

    display: flex;

    align-items: center;

    gap: 25px;

    border:
        1px solid var(--borda);

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            rgba(79, 70, 229, 0.08),
            rgba(255, 255, 255, 0.025)
        );
}

.aspas {
    font-size: 5rem;

    line-height: 0.5;

    color: var(--primaria);

    font-weight: 900;
}

.sobre-frase p {
    color: #dce3f2;

    font-size: 1.05rem;

    font-weight: 500;
}

.assinatura {
    margin-left: auto;

    color: var(--texto-suave);

    font-size: 0.8rem;
}


/* =====================================================
   GALERIA DE ARTES
   Uma única linha de imagens
===================================================== */

.artes-galeria {
    width: 100%;
    margin: 0 auto;
    padding: 35px 0 75px;
    overflow: hidden;
    position: relative;
}

.artes-linha {
    width: 100%;
    overflow: hidden;
}

.artes-trilho {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.arte-card {
    flex: 0 0 auto;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(99, 102, 241, 0.35);
    box-shadow:
        0 0 25px rgba(79, 70, 229, 0.10),
        0 18px 45px rgba(0, 0, 0, 0.20);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.arte-card img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    border-radius: 15px;
}

.arte-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 35px rgba(79, 70, 229, 0.22),
        0 22px 55px rgba(0, 0, 0, 0.28);
}

/* =====================================================
   PROJETOS
===================================================== */

.projetos {
    padding: 8rem 0;
    overflow: hidden;
}

.projetos-titulo {
    margin-bottom: 18px;
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 2.9rem);
    font-weight: 700;
}

.projetos-subtitulo {
    max-width: 560px;
    margin: 0 auto 90px;
    text-align: center;
    color: var(--texto-suave);
    font-size: 1rem;
    line-height: 1.7;
}

.projetos-caixa {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 700px;
    margin: 0 auto;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    perspective: 1400px;
}

.projetos-caixa.dragging {
    cursor: grabbing;
}


/* =====================================================
   CARDS
===================================================== */

.projetos-cards {
    position: absolute;

    left: 50%;
    top: 50%;

    width:
        clamp(280px, 30vw, 430px);

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid var(--vidro);

    border-radius: 18px;

    overflow: hidden;

    backdrop-filter: blur(8px);

    transform-origin: center center;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.7s ease,
        filter 0.7s ease,
        box-shadow 0.3s ease;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);

    cursor: pointer;

    transform-style: preserve-3d;
}

.projeto-numero {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 5;

    padding: 4px 11px;

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);

    background: rgba(10, 15, 28, 0.6);

    backdrop-filter: blur(6px);

    font-family: var(--fonte-titulo);
    font-size: 0.78rem;
    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.65);
}

.projetos-video {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    pointer-events: none;
}

.info-projetos {
    margin: 0;

    padding: 14px 18px;

    text-align: center;

    font-size: 1rem;

    color: var(--claro);

    background:
        rgba(10, 15, 28, 0.75);
}


/* =====================================================
   POSIÇÕES DO CARROSSEL
===================================================== */

.projetos-cards[data-position="0"] {
    transform:
        translate(-50%, -50%)
        rotate(0deg)
        scale(1);

    opacity: 1;

    z-index: 10;

    filter: none;
}

.projetos-cards[data-position="-1"] {
    transform:
        translate(
            calc(-50% - 300px),
            calc(-50% + 20px)
        )
        rotate(-8deg)
        scale(0.88);

    opacity: 0.9;

    z-index: 8;

    filter: brightness(0.85);
}

.projetos-cards[data-position="1"] {
    transform:
        translate(
            calc(-50% + 300px),
            calc(-50% + 20px)
        )
        rotate(8deg)
        scale(0.88);

    opacity: 0.9;

    z-index: 8;

    filter: brightness(0.85);
}

.projetos-cards[data-position="-2"] {
    transform:
        translate(
            calc(-50% - 500px),
            calc(-50% + 70px)
        )
        rotate(-13deg)
        scale(0.72);

    opacity: 0.65;

    z-index: 5;

    filter: brightness(0.65);
}

.projetos-cards[data-position="2"] {
    transform:
        translate(
            calc(-50% + 500px),
            calc(-50% + 70px)
        )
        rotate(13deg)
        scale(0.72);

    opacity: 0.65;

    z-index: 5;

    filter: brightness(0.65);
}

.projetos-cards[data-position="hidden"] {
    transform:
        translate(-50%, -50%)
        scale(0.5);

    opacity: 0;

    z-index: 0;

    pointer-events: none;
}


/* =====================================================
   HOVER DO PROJETO
===================================================== */

.projetos-cards:hover {
    box-shadow:
        0 25px 70px rgba(79, 70, 229, 0.25);
}


/* =====================================================
   BOTÕES
===================================================== */

.carousel-btn {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 50px;
    height: 50px;

    border:
        1px solid var(--vidro);

    border-radius: 50%;

    background:
        rgba(15, 23, 42, 0.75);

    color: var(--claro);

    font-size: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 30;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primaria);

    transform:
        translateY(-50%)
        scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}


/* =====================================================
   DEPOIMENTOS — MODELO REVIEW / CARROSSEL
===================================================== */

.depoimentos {
    width: 100%;
    padding: 8rem 0;
    overflow: hidden;
}

.depoimentos-cabecalho {
    text-align: center;
    margin-bottom: 55px;
    padding: 0 20px;
}

.depoimentos-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #8b5cf6;
}

.depoimentos-titulo {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: #f8fafc;
    font-weight: 700;
}

.depoimentos-subtitulo {
    max-width: 650px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.6;
}

.depoimentos-caixa {
    position: relative;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 90px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.depoimentos-caixa.arrastando {
    cursor: grabbing;
}

.depoimentos-trilho {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

.depoimentos-grupo {
    display: flex;
    align-items: stretch;
    gap: 24px;
    flex-shrink: 0;
}

.depoimento-card {
    position: relative;
    flex: 0 0 760px;
    width: 760px;
    height: 390px;
    min-height: 390px;
    padding: 34px 42px 30px;
    box-sizing: border-box;
    border: 1px solid rgba(139, 92, 246, 0.42);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(35, 31, 76, 0.42), rgba(10, 15, 28, 0.82)),
        rgba(10, 15, 28, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.32),
        0 0 45px rgba(99, 70, 229, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 90% 0%, rgba(139, 92, 246, 0.18), transparent 35%);
    pointer-events: none;
}

.depoimento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.72);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.38),
        0 0 55px rgba(99, 70, 229, 0.18);
}

.depoimento-topo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.depoimento-avatar {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.32), rgba(79, 70, 229, 0.18));
    border: 1px solid rgba(139, 92, 246, 0.48);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 0 25px rgba(99, 70, 229, 0.22);
}

.depoimento-cliente {
    min-width: 0;
}

.depoimento-cliente strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.2;
}

.depoimento-cliente span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.depoimento-aspas {
    margin-left: auto;
    color: #9b7cff;
    font-size: 4.7rem;
    line-height: 0.5;
    font-weight: 900;
}

.depoimento-avaliacao {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
}

.depoimento-estrelas {
    color: #facc15;
    font-size: 1.18rem;
    letter-spacing: 3px;
    white-space: nowrap;
}

.depoimento-tempo {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
}

.depoimento-card > p {
    position: relative;
    z-index: 1;
    margin: 22px 0 22px;
    color: #e3e7f2;
    font-size: 1.12rem;
    line-height: 1.65;
}

.depoimento-projeto {
    position: relative;
    z-index: 1;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.78rem;
}

.depoimentos-seta {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    border: 1px solid rgba(139, 92, 246, 0.55);
    border-radius: 50%;
    background: rgba(10, 15, 28, 0.90);
    color: #fff;
    font-size: 1.45rem;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(10px);
}

.depoimentos-seta:hover {
    transform: translateY(-50%) scale(1.08);
    background: rgba(139, 92, 246, 0.20);
    border-color: rgba(139, 92, 246, 0.85);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.20);
}

.depoimentos-seta-esquerda {
    left: 22px;
}

.depoimentos-seta-direita {
    right: 22px;
}

.depoimentos-pontos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.depoimentos-pontos span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 0 0 transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.depoimentos-pontos span.ativo {
    width: 10px;
    height: 10px;
    background: #8b5cf6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.70);
}

@media (max-width: 1000px) {
    .depoimento-card {
        flex-basis: 650px;
        width: 650px;
    }
}

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

    .depoimentos-cabecalho {
        margin-bottom: 40px;
    }

    .depoimentos-titulo {
        font-size: 2rem;
    }

    .depoimentos-caixa {
        padding: 0 52px;
    }

    .depoimentos-trilho {
        gap: 16px;
    }

    .depoimentos-grupo {
        gap: 16px;
    }

    .depoimento-card {
        flex-basis: calc(100vw - 104px);
        width: calc(100vw - 104px);
        height: 360px;
        min-height: 360px;
        padding: 26px 24px;
        border-radius: 22px;
    }

    .depoimento-avatar {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .depoimento-cliente strong {
        font-size: 1rem;
    }

    .depoimento-aspas {
        font-size: 3.5rem;
    }

    .depoimento-estrelas {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .depoimento-card > p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .depoimentos-seta {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .depoimentos-seta-esquerda {
        left: 5px;
    }

    .depoimentos-seta-direita {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .depoimento-card {
        height: 370px;
        min-height: 370px;
        padding: 22px 20px;
    }

    .depoimento-topo {
        gap: 11px;
    }

    .depoimento-aspas {
        font-size: 3rem;
    }

    .depoimento-avaliacao {
        gap: 10px;
        margin-top: 20px;
    }

    .depoimento-card > p {
        margin-top: 18px;
        font-size: 0.9rem;
    }
}


/* =====================================================
   CONTATO
===================================================== */

.contatos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.contatos-titulo {
    margin-bottom: 18px;

    text-align: center;

    font-size: clamp(2.2rem, 4vw, 2.9rem);
    font-weight: 700;
}

.contatos-subtitulo {
    max-width: 560px;
    margin: 0 auto 60px;

    text-align: center;

    color: var(--texto-suave);
    font-size: 1rem;
    line-height: 1.7;
}

.contatos-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.formulario-contato {
    padding: 2.2rem;

    background:
        rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(8px);

    border:
        1px solid var(--vidro);

    border-radius: 16px;
}

.grupo-form {
    margin-bottom: 1.5rem;
}

.campo-form {
    width: 100%;

    padding: 1rem;

    background:
        rgba(255, 255, 255, 0.05);

    border-radius: 8px;

    color: var(--claro);

    border:
        1px solid var(--vidro);

    outline: none;
    resize: vertical;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.campo-form::placeholder {
    color: #7f8ba3;
}

.campo-form:focus {
    border-color:
        var(--secundaria);

    box-shadow:
        0 0 10px rgba(79, 70, 229, 0.3);
}

.botao-form {
    width: 100%;

    padding: 1rem 2rem;

    color: white;

    background:
        linear-gradient(
            45deg,
            var(--primaria),
            var(--secundaria)
        );

    border: none;

    border-radius: 8px;

    cursor: pointer;

    font-weight: bold;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.botao-form:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 10px 25px rgba(79, 70, 229, 0.4);
}

.contatos-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contatos-info-item {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 22px;

    border-radius: 16px;
    border: 1px solid var(--borda);

    background: rgba(255, 255, 255, 0.03);

    text-decoration: none;
    color: inherit;

    transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.contatos-info-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.contatos-info-item p {
    color: #fff;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .contatos-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   RODAPÉ
===================================================== */

.rodape {
    padding: 5rem 3rem 2rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rodape-topo {
    max-width: 380px;
}

.rodape-topo p {
    margin-top: 14px;

    color: var(--texto-suave);
    font-size: 0.9rem;
    line-height: 1.6;
}

.rodape-links {
    display: flex;
    flex-direction: column;
    gap: 10px;

    list-style: none;
}

.rodape-links a {
    color: var(--claro);
    text-decoration: none;
    font-size: 0.9rem;

    transition: color 0.3s ease;
}

.rodape-links a:hover {
    color: var(--primaria);
}

.rodape-base {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 3rem;
    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    color: var(--texto-suave);
    font-size: 0.8rem;
}

.rodape-topo-btn {
    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);

    background: rgba(255, 255, 255, 0.03);

    color: #fff;
    font-size: 1.1rem;

    cursor: pointer;

    transition: transform 0.35s var(--ease), background 0.35s ease;
}

.rodape-topo-btn:hover {
    transform: translateY(-4px);
    background: var(--primaria);
}

@media (max-width: 768px) {
    .rodape {
        padding: 4rem 1.5rem 2rem;
        flex-direction: column;
    }

    .rodape-base {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .sobre {
        padding: 7rem 25px;
    }

    .sobre-topo {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .sobre-introducao {
        margin-left: 0;

        max-width: 700px;
    }

    .sobre-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-areas:

            "foto identificacao"

            "foto email"

            "foto whatsapp"

            "sobre sobre"

            "habilidades habilidades"

            "cursos experiencia";
    }

    .sobre-foto-card {
        min-height: 550px;
    }

    .sobre-foto {
        min-height: 530px;
    }

    .skills {
        grid-template-columns:
            repeat(3, 1fr);
    }
}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 768px) {

    .navegacao {
        padding: 1rem 1.25rem;
    }


    /* SOBRE */

    .sobre {
        padding: 6rem 15px;
    }

    .sobre-topo {
        gap: 20px;

        margin-bottom: 30px;
    }

    .sobre-label {
        font-size: 0.75rem;

        letter-spacing: 4px;
    }

    .sobre-titulo {
        font-size: 2.7rem;
    }

    .sobre-introducao {
        font-size: 0.95rem;
    }


    .sobre-grid {
        grid-template-columns: 1fr;

        grid-template-areas:

            "foto"

            "identificacao"

            "email"

            "whatsapp"

            "sobre"

            "habilidades"

            "cursos"

            "experiencia";
    }


    .sobre-foto-card {
        min-height: 430px;
    }

    .sobre-foto {
        min-height: 410px;
    }

    .disponivel {
        left: 18px;
        bottom: 18px;

        padding: 8px 12px;

        font-size: 0.7rem;
    }


    .sobre-identificacao {
        min-height: auto;

        padding: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .sobre-identificacao h3 {
        font-size: 1.6rem;
    }


    .sobre-contato {
        min-height: 110px;

        padding: 22px;
    }


    .sobre-texto-card,
    .habilidades-card,
    .cursos-card,
    .experiencia-card {
        padding: 25px;
    }


    .estatisticas {
        gap: 8px;
    }

    .estatistica strong {
        font-size: 1.6rem;
    }


    .skills {
        display: flex;
        grid-template-columns: none;

        gap: 10px;
        margin: 0 -25px;
        padding: 4px 25px 10px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

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

    .skill {
        flex: 0 0 auto;
        scroll-snap-align: start;

        font-size: 0.8rem;
        gap: 8px;
    }

    .skill img {
        width: 22px;
        height: 22px;
    }


    .aprendendo {
        display: none;
    }

    .experiencia-badge {
        display: none;
    }


    .sobre-frase {
        padding: 22px;

        gap: 15px;
    }

    .aspas {
        font-size: 3.5rem;
    }

    .sobre-frase p {
        font-size: 0.9rem;
    }

    .assinatura {
        display: none;
    }

    /* GALERIA DE ARTES */

    .artes-galeria {
        padding: 25px 0 60px;
    }

    .artes-trilho {
        gap: 14px;
    }

    .arte-card {
        height: 430px;
    }

    /* PROJETOS */

    .projetos {
        padding: 6rem 0;
    }

    .projetos-titulo {
        font-size: 2rem;
    }

    .projetos-subtitulo {
        margin-bottom: 60px;
    }

    .projetos-caixa {
        height: 600px;
    }

    .projetos-cards {
        width: 78vw;

        max-width: 420px;
    }

    .projetos-cards[data-position="-1"] {
        transform:
            translate(
                calc(-50% - 150px),
                calc(-50% + 20px)
            )
            rotate(-8deg)
            scale(0.75);
    }

    .projetos-cards[data-position="1"] {
        transform:
            translate(
                calc(-50% + 150px),
                calc(-50% + 20px)
            )
            rotate(8deg)
            scale(0.75);
    }

    .projetos-cards[data-position="-2"],
    .projetos-cards[data-position="2"] {
        opacity: 0;

        pointer-events: none;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;

        font-size: 20px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }


    /* CONTATO */

    .contatos {
        padding: 6rem 1rem;
    }

    .contatos-titulo {
        font-size: 2rem;
    }
}


/* =====================================================
   CELULAR PEQUENO
===================================================== */

@media (max-width: 480px) {

    .sobre-titulo {
        font-size: 2.3rem;
    }


    .sobre-foto-card {
        min-height: 360px;
    }

    .sobre-foto {
        min-height: 340px;
    }


    .sobre-identificacao h3 {
        font-size: 1.4rem;
    }


    .sobre-contato p {
        font-size: 0.8rem;
    }


    .sobre-texto-card > p {
        font-size: 0.85rem;
    }


    .estatistica strong {
        font-size: 1.4rem;
    }

    .estatistica span {
        font-size: 0.68rem;
    }


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


    .curso p {
        font-size: 0.68rem;
    }


    .timeline {
        padding-left: 25px;
    }

    .timeline-ponto {
        left: -25px;
    }

    .artes-galeria {
        padding-bottom: 45px;
    }

    .artes-trilho {
        gap: 10px;
    }

    .arte-card {
        height: 360px;
    }

    .projetos-caixa {
        height: 520px;
    }

    .projetos-cards {
        width: 75vw;
    }

    .projetos-cards[data-position="-1"] {
        transform:
            translate(
                calc(-50% - 110px),
                calc(-50% + 20px)
            )
            rotate(-7deg)
            scale(0.72);
    }

    .projetos-cards[data-position="1"] {
        transform:
            translate(
                calc(-50% + 110px),
                calc(-50% + 20px)
            )
            rotate(7deg)
            scale(0.72);
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}


/* FRASE DENTRO DO CARD SOBRE MIM */
.sobre-texto-card .sobre-frase {
    margin-top: 30px;
}


/* =====================================================
   ACESSIBILIDADE — MOVIMENTO REDUZIDO
===================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal],
    .palavra {
        opacity: 1 !important;
        transform: none !important;
    }

    #animated-bg::before,
    .status,
    .hero-scroll-linha i {
        animation: none !important;
    }
}
