/* --- 1. CONFIGURAÇÕES GERAIS E VARIÁVEIS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

:root {
    --bg-dark: #050505;
    --text-muted: #aaa;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: white;
}

/* --- 2. COMPONENTES REUTILIZÁVEIS E LOGO --- */
.logo-vnew {
    background: linear-gradient(180deg, #FFFFFF 30%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
}

/* --- 3. NAVEGAÇÃO --- */
.nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.nav-link:hover {
    opacity: 1;
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* --- 4. REDES SOCIAIS (HERO E FOOTER) --- */
.social-links-colored {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mini-link-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.linkedin-bg:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 0 20px rgba(10, 102, 194, 0.4);
    transform: scale(1.1) translateY(-5px);
}

.github-bg:hover {
    background: #333;
    border-color: #444;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-5px);
}

.world-bg:hover {
    background: #2ea44f;
    border-color: #2ea44f;
    box-shadow: 0 0 20px rgba(46, 164, 79, 0.4);
    transform: scale(1.1) translateY(-5px);
}

/* --- 5. SEÇÃO SOBRE --- */
.sobre-section {
    padding: 100px 20px;
    text-align: center;
}

.sobre-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.sobre-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.sobre-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.sobre-card h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

@media (min-width: 768px) {
    .sobre-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .sobre-card {
        flex: 1;
    }
}

.subtitulo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-left: 20px !important;
    background: linear-gradient(to bottom, #e5e3e3, #878282);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.h2 {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: left;
    letter-spacing: 0.5px;
    line-height: 1.7;
    max-width: 600px;
    padding-left: 60px;
}

/* --- 6. SEÇÃO ACERVOS --- */
.subtitulo2 h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 0 auto !important;
}

span.subtitulo2 {
    display: block;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    margin: 10px auto 20px !important;
}

.titulo2 {
    color: #b3b3b3;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 650px;
    text-align: center;
    margin: 0 auto !important;
}

.categoria h3 {
    margin-left: 320px !important;
    margin-top: 50px;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
}

.scroll-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 60px 50px 60px;
    padding-bottom: 100px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.scroll-row img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    filter: brightness(0.8);
    transition: 0.3s;
    scroll-snap-align: center;
}

.scroll-row img:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}
#contato {
    margin-top: 50px !important;
    padding-top: 40px !important;
}
/* --- 1. ESTILO BOLINHA DE VIDRO (DESKTOP) --- */
.carousel-container {
max-width: 850px; /* Ajuste conforme o tamanho das suas imagens (ex: 3 x 250px + gaps) */
    margin: 0 auto;   /* Centraliza o container na tela */
    display: flex;
    align-items: center;
    position: relative;
}

.seta-btn {
    /* Posicionamento Centralizado Verticalmente */
    position: absolute;
    top: 50%;
    /* Meio do container */
    transform: translateY(-50%);
    /* Ajuste fino para centralizar de verdade */

    /* Tamanho e Forma (Bolinha) */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* Bolinha perfeita */

    /* Efeito de Vidro (Glassmorphism) */
    background: rgba(255, 255, 255, 0.05);
    /* Fundo quase transparente */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Borda sutil */
    backdrop-filter: blur(10px);
    /* Efeito de desfoque (vidro) */

    /* Ícone */
    color: white;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Interatividade */
    cursor: pointer;
    z-index: 10;
    /* Garante que fique acima das imagens */
    transition: all 0.3s ease;
    /* Animação suave */
}

/* --- 2. POSIÇÃO ESQUERDA E DIREITA --- */

.seta-btn.left {
    left: 10px;
    /* 10px de distância da borda esquerda */
}

.seta-btn.right {
    right: 10px;
    /* 10px de distância da borda direita */
}

/* --- 3. EFEITO HOVER (PASSAR O MOUSE) --- */
.seta-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    /* Fundo mais forte */
    border-color: white;
    /* Borda branca */
    transform: translateY(-50%) scale(1.1);
    /* Sobe centralizado e aumenta */
}

/* --- 4. ESCONDER NO MOBILE (AJUSTE JÁ FEITO) --- */

@media (max-width: 768px) {
    .seta-btn {
        display: none !important;
        /* Esconde no celular */
    }
}
.vinil-item {
    position: relative !important;
    flex: 0 0 180px !important; 
    height: 180px !important;
    margin-right: 40px !important;
    cursor: pointer;
    display: block; 
}

/* IMPORTANTE: Quando clicado, o item inteiro ganha prioridade de camada */
.vinil-item.ativo {
    z-index: 99; 
}

/* 2. A Capa - Sempre na frente do seu próprio disco */
.capa-album {
    position: relative !important;
    z-index: 2; /* Sempre na frente do seu próprio disco */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* 3. O Disco - Começa escondido 'dentro' da capa */
.disco-midia {
position: absolute !important;
    top: 50% !important; /* Trava no meio */
    left: 0 !important;
    width: 95% !important;
    height: 95% !important;
    transform: translateY(-50%) translateX(0); /* Centralizado e escondido */
    z-index: 1;
    transition: transform 0.5s ease-in-out;
    pointer-events: none;
}

/* 4. O Efeito 'Vai e Vem' (Quando a classe .ativo entra) */
.vinil-item.ativo .disco-midia {
    transform: translateY(-50%) translateX(40%) rotate(90deg);
}

.vinil-item.ativo .capa-album {
    transform: translateX(-10px); /* A capa dá um passinho pro lado oposto, fica chique */
}
/* Quando clicado, o disco sai apenas 1/4 (25% a 30%) */
.vinil-item.ativo .disco-midia {
    transform: translateY(-50%) translateX(30%) rotate(45deg); 
    /* translateX(30%) faz ele aparecer só um pedaço */
    /* rotate(45deg) dá um charme de que ele está rodando ao sair */
}
/* --- 7. SEÇÃO EXPLORAR --- */
.explorar-section {
    padding: 100px 20px;
}

.explorar-contato {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.explorar-container {
    max-width: 1100px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.explorar-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    transition: 0.3s;
}

.explorar-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.explorar-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.explorar-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.explorar-text h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.explorar-text p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

/* --- 8. SEÇÃO EXPERIÊNCIA (ESTATÍSTICAS) --- */
.experiencia-section {
    padding: 100px 20px;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 1.5rem;
    font-weight: 900;
}

.stat span {
    font-size: 0.8rem;
    color: #aaa;
}

.feedbacks {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feedback {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

/* --- 9. FORMULÁRIO E RODAPÉ --- */
#contatos {
    position: relative;
    width: 100%;
    min-height: 800px;
}

.contact-form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.btn-enviar {
    align-self: flex-start;
    background: white;
    color: black;
    border: none;
    padding: 12px 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.3s;
    margin-top: 20px;
}

footer {
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-link {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    text-decoration: none;
}

.footer-link.linkedin:hover {
    color: #0A66C2;
    transform: translateY(-3px);
}

.footer-link.github:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-link.world:hover {
    color: #2ea44f;
    transform: translateY(-3px);
}

    /* Navegação Mobile */
@media (max-width: 768px) {

    /*Acervo mobile: Títulos, Spans e Parágrafos */
    .subtitulo2 h1 {
        font-size: 2.5rem !important;
        margin: 0 20px !important;
    }

    span.subtitulo2 {
        font-size: 1.1rem !important;
        padding: 0 20px;
    }

    .titulo2 {
        font-size: 0.9rem !important;
        padding: 0 20px;
        margin-bottom: 30px !important;
    }

    /* carrosel de imagens */
    .categoria h3 {
        font-size: 0.8rem !important;
        margin-left: 20px !important;
        letter-spacing: 2px;
    }

    .scroll-row {
        padding: 10px 20px 40px !important;
        padding-bottom: 80px !important;
    }

    .scroll-row img {
        width: 180px !important;
        height: 180px !important;
    }

    .explorar-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .explorar-item img {
        width: 100%;
        height: auto;
    }

    /*Menu Superior mobile*/
    nav.fixed {
        top: 20px !important; 
        width: 90% !important;
        left: 5% !important;
        padding: 8px 15px !important; 
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .nav-link {
        font-size: 0.6rem !important;
        padding: 6px 10px !important;
        white-space: nowrap !important; 
    }
    .seta-btn,
    .seta-btn.left,
    .seta-btn.right {
    display: none !important;
    }

    .scroll-row {
        display: flex !important;
        flex-wrap: nowrap !important; /* ISSO impede de empilhar */
        overflow-x: auto !important; /* ISSO permite deslizar pro lado */
        -webkit-overflow-scrolling: touch; /* Deixa o deslize suave no iPhone */
        padding: 20px 30px 60px 30px !important;
        gap: 15px !important; /* Espaço entre os álbuns */ 
    }
    .vinil-item {
        flex: 0 0 160px !important; /* O '0 0' diz: NÃO encolha e NÃO cresça */
        width: 160px !important;
        height: 160px !important;
        margin-right: 0px !important; /* O gap já resolve o espaço */
    }

    /* 3. Garante que as imagens preencham o quadrado */
    .capa-album, .disco-midia {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    #contato {
        margin-top: 30px !important;
    }
}
