/* CONFIGURAÇÕES GERAIS */
:root {
    --purple-main: #544FA0;
    --pink-accent: #EF70A9;
    --text-gray: #3f3f3f;
    --overlay-purple: rgba(93, 90, 146, 0.9); /* 90% Opacidade conforme solicitado */
}

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

html {
    scroll-behavior: smooth;
}

/* Ajuste para âncoras não ficarem escondidas sob o seu Header Fixed */
[id] {
    scroll-margin-top: 100px; /* Mesma altura (ou um pouco mais) do seu .main-header */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: var(--text-gray);
    line-height: 1.5;
}

.pCollun {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #fff;
    color: var(--text-gray);
    line-height: 1.5;
    padding-bottom: 12px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

/* HEADER FIXED */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-menu {
    font-size: 12px;
    display: flex;
    list-style: none;
    gap: 18px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--purple-main);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    ;
}

.nav-menu a:hover {
    
    color: #EF70A9;
    
    ;
}


.btn-ver {
    background-color: #E88F29; 
    color: #ffffff !important;
    font-weight: 500;
    padding: 10px 25px !important;
    border-radius:  20px;
    
    transition: transform 0.2s;
}

.btn-ver:hover {
    background-color: #A05907; 



.btn-resume {
    background-color: #E88F29; 
    color: #212421 !important;
    padding: 10px 25px !important;
    border-radius: 20px;
    transition: transform 0.2s;
}

.btn-resume:hover {
    transform: scale(1.05);
    background-color:#A05907;
}

.btn-fechar-block {
    background-color: #3DA6BC !important; 
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius:  20px;
    
    transition: transform 0.2s;
}

.btn-fechar-block:hover {
    background-color: #0B2B40; 
    
    
    transition: transform 0.2s;
}

.bt-clina {
    background-color: #441CA5; 
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius:  20px;
    font-weight: 500;
    
    transition: transform 0.2s;
}

.btn-fechar-clina :hover {
    background-color: #7A41FB; 
    
    
    transition: transform 0.2s;
}

.btn-fechar-rakuten {
    background-color: #900B18; 
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius:  20px;
    
    transition: transform 0.2s;
}

.btn-fecharclina-rakuten :hover {
    background-color: #DA0E22; 
    
    
    transition: transform 0.2s;
}

.btn-fechar-raji {
    background-color: #FF9367; 
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius:  20px;
    
    transition: transform 0.2s;
}

.btn-fecharclina-raji :hover {
    background-color: #FAB9A5; 
    
    
    transition: transform 0.2s;
}



/* LAYOUT PRINCIPAL */
.main-layout {
    display: flex;
    gap: 30px;
    margin-top: 120px; /* Compensa o header fixo */
}

.text-content {
    flex: 1;
}

/* GALERIA FIXA (STICKY) */
.gallery-column {
    flex: 1;
    position: relative;
}

.sticky-grid {
    position: sticky;
    top: 100px; /* Distância do topo ao rolar */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    align-self: start;
}

/* TIPOGRAFIA */
.profile-header {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 40px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
}

.main-name {
    font-size: 36px;
    color: var(--purple-main);
    line-height: 0.9;
    font-weight: 900;
   
}

.role-title {
    color: var(--pink-accent);
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 16px;
}

.role-title-purple {
    color: var(--purple-main);
    font-size: 16px;
    font-weight: 600;
}

.description {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 500px;
}

.skills-list h3, .tools-container h3 {
    color: var(--purple-main);
    font-size: 20px;

    
}

.skills-list ul {
    list-style: none;
}

.skills-list li {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fa-circle-check {
    color: var(--pink-accent);
}

/* SEÇÃO PORTFOLIO */
.experience {
    margin-top: 24px;
    padding-top:24px;
}

.section-heading {
    font-size: 52px;
    color: var(--purple-main);
    
    font-weight: 900;
}

.accent-text {
    color: var(--pink-accent);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.long-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* GALERIA CARDS & HOVER */
.gallery-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;
    display: block;
}

/* Layout específico conforme a imagem */
.item-health { grid-row: span 2; height: 300px;  }
.item-blockbr { height: 220px;  }
.item-rakuten { grid-row: span 2; height: 260px; }
.item-raji { height: 180px; }


.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-purple);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

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

.card-overlay h4 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-overlay p {
    font-size: 14px;
    margin-bottom: 20px;
}

.view-project {
    font-weight: 700;
    font-size: 14px;
    color: #544FA0;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px 25px;

}

/* FERRAMENTAS */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    margin-top: 32px;
}

.tools-grid img {
    height: 40px;
    
    transition: filter 0.3s;
}

.tools-grid img:hover {
    filter: grayscale(0);
}

/* FOOTER */
.main-footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 100px;
}

.main-footer h2 {
    color: var(--pink-accent);
    font-size: 32px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 40px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--purple-main);
}

address {
    font-style: normal;
    color: var(--purple-main);
    font-weight: 700;
}

/* RESPONSIVIDADE */
@media (max-width: 968px) {
    .main-layout {
        flex-direction: column;
        grid-template-columns: 1fr !important; /* Força a ter apenas 1 coluna de 100% */
    }
    .sticky-grid {
        position: relative;
        top: 0;

    }
    .main-name {
        font-size: 40px;
    }
    .skills-list {
        margin-top: 120px;
    }
}

.divider {
    height: 1px;
    color: #000000;
    background: #f000000;
    font-size: 0;
    border: 0;
}






/* --- NOVAS CLASSES PARA FIXAR O LADO ESQUERDO --- */

.grid-container {

    display: grid;
    grid-template-columns: 1fr 1fr; /* Força 50% / 50% */
    gap: 40px;
    align-items: start; /* OBRIGATÓRIO: Permite que o sticky funcione */
    position: relative;
    margin-top: 0px;
}

.left-column {
    /* Esta coluna define a área de atuação do conteúdo fixo */
    position: relative;
    height: 100%; 
    width: 95%;
}

.sticky-content {
    position: -webkit-sticky; /* Suporte Safari */
    position: sticky;
    top: 120px; /* Distância que ele para do topo da tela (embaixo do header) */
    align-self: start;
}

.right-column {
    /* Garante que o conteúdo da direita flua normalmente */
    display: flex;
    flex-direction: column;
    gap: 30px;
    
    
    
}

/* Ajuste de imagem para não quebrar o layout */
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}



/* Responsividade: Volta ao normal em telas pequenas */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr;

    }
    .sticky-content {
        position: relative;
        top: 0;
    }
}





/* --- ESTILIZAÇÃO DA SEÇÃO DE RESULTADOS (DIAGRAMAÇÃO FRIENDLY) --- */

.results-container {
    background-color: #f2f2f2; /* Fundo leve para destaque */

    padding: 16px;
    border-radius: 12px;
    margin: 0px 0px 16px 0px;
    
}

/* Reaproveitando seu estilo de título de lista de projetos */
.project-list-h2 {
    font-size: 24px;
    color: var(--purple-main);
    font-weight: 900;
    
    
    
    
}

.project-list-h3 {
    font-size: 24px;
    color: var(--pink-accent);
    font-weight: 900;
    padding-bottom: 12px;
    
}

.project-list-purple-h3 {
    font-size: 24px;
    color: var(--purple-main);
    font-weight: 900;
    
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
   
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--pink-accent); /* Usando sua variável do CSS */
    f
    line-height: 1;
    margin-bottom: 10px;
}

.stat-divider {
    text-align: left;
    width: 60px;
    height: 2px;
    background-color: var(--purple-main);
    margin:  12px 0 8px 0;
    border-radius: 2px;
    opacity: 0.4;
}

.stat-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--purple-main);
    text-transform: uppercase;
    
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-description {
    font-size: 12px;
    color: var(--text-gray);
    
    line-height: 1.4;
}

/* Responsividade para a seção de resultados */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




/* --- ANIMAÇÕES DE ENTRADA --- */

/* Efeito Fade In (Suave) */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.ani-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Efeito Bounced (Com "pulo" elástico) */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.ani-bounced {
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Classe para garantir que a imagem comece invisível antes da animação */
.reveal {
    opacity: 0;
}









/* Container de Loading */
#loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.9s ease;
}

/* Animação de deslize e encaixe preciso */
@keyframes slideBoxEncaixe {
    0% { transform: translateX(-200px); opacity: 0; }
    30% { transform: translateX(0); opacity: 1; } /* Encaixe no E invertido */
    70% { transform: translateX(0); opacity: 1; } /* Pausa para ver o logo completo */
    100% { transform: translateX(200px); opacity: 0; }
}

.box-pink {
    animation: slideBoxEncaixe 1.5s ease-in-out infinite;
}

.box-bottom {
    animation-delay: 0.2s; /* Movimento cascata suave */
}

/* Estilo do Texto - Fiel ao seu design */
.loading-text {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #544FA0; /* Cor Roxa principal */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

/* Classe de saída para o Script */
#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}









/* --- ESTILO DA PÁGINA DE ERRO 404 --- */

.error-page-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh; /* Ocupa a maior parte da tela */
    text-align: center;
    padding-top: 120px; /* Compensa o header fixo */
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--pink-accent); /* Usa o rosa do seu logo */
    line-height: 1;
    margin-bottom: 10px;
    font-style: italic;
}

.error-actions {
    margin-top: 40px;
}

.error-actions .btn-resume {
    display: inline-block;
    text-decoration: none;
}

/* Ajuste para o Footer não subir muito em telas grandes */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}






/* --- LAYOUT DE IMPACTO ZEEQ --- */

.results-section {
    padding: 0;
    margin-top: 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Um por linha para leitura focada */
    gap: 20px;
    padding: 12px 0;
}

.impact-card {
    background: #fcfcfc;
    border-left: 2px solid var(--purple-main);
    padding: 30px;
    border-radius: 0 16px 16px 0;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.impact-card:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(84, 79, 160, 0.1);
}

/* Card central com destaque em rosa */
.impact-card.highlight {
    border-left-color: var(--pink-accent);
}

.impact-header {
    margin-bottom: 12px;
}

.impact-value {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: var(--purple-main);
    display: block;
}

.impact-card.highlight .impact-value {
    color: var(--pink-accent);
}

.impact-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsividade: Em telas maiores podemos usar 2 colunas se preferir */
@media (min-width: 1200px) {
    /* .impact-grid { grid-template-columns: 1fr 1fr; } */
    display: grid;
    grid-template-columns: 1fr !important; /* Força a ter apenas 1 coluna de 100% */
}

 #scroll-progress {
  position: fixed;
  top: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to right, rgba(84,79,160,100),rgba(240,112,170,100));
  z-index: 20000;
  border-radius: 6em;
}



#544FA0;
    --pink-accent: #EF70A9;
    --text-gray: #3f3f3f;


/* Container do Seletor */
.language-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit; /* Segue a fonte do seu site */
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 25px; /* Espaço em relação ao menu */
}

/* Links de Idioma */
.lang-link {
    text-decoration: none;
    color: #544FA0; /* Tom neutro para não competir com o menu principal */
    transition: all 0.3s ease;
    padding: 2px 4px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/* Hover com a sua identidade visual */
.lang-link:hover {
    color: rgba(128, 0, 128, 0.9); /* Roxo com opacidade conforme sua preferência */
    color:#EF70A9;
}

/* Estado Ativo (Idioma atual) */
.lang-link.active {
    color: #ffffff;
background-color: #544fa0;
}
  /*  border-bottom: 2px solid rgba(239, 112, 169, 100);/*

}

/* Divisor sutil */
.divider {
    color: #EF70A9;
    font-weight: 300;
    pointer-events: none; /* Impede interação com a barra */
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .language-picker {
        margin-left: 0;
        margin-top: 15px; /* Caso o menu mobile seja vertical */
        justify-content: center;
        display: grid;
        grid-template-columns: 1fr !important; /* Força a ter apenas 1 coluna de 100% */
    }
}




/* Ajustes para Mobile (Telas até 768px) */
@media (max-width: 768px) {
    header {
        padding: 15px 20px; /* Reduz padding lateral no mobile */
        flex-wrap: wrap;    /* Permite que os itens quebrem linha se necessário */
        grid-template-columns: 1fr !important; /* Força a ter apenas 1 coluna de 100% */
    }

    /* Esconde os divisores "/" no mobile para ganhar espaço, se preferir */
    .language-picker .divider {
        display: none;
    }

    .language-picker {
        margin-left: auto; /* Mantém colado na direita se o menu sumir */
        gap: 15px;         /* Aumenta o espaço para facilitar o toque (touch target) */
    }

    .lang-link {
        font-size: 12px;
        padding: 8px 4px; /* Área de toque maior */
    }
}













