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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ccd6f6; /* Texto principal */
    background-color: #0a192f; /* Azul escuro */
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Painel Fixo à Esquerda */
.left-panel {
    width: 35%; /* Largura reduzida */
    height: 100vh;
    background: transparent; /* Fundo transparente para o efeito do gradiente */
    display: flex;
    justify-content: flex-start; /* Alinhar à esquerda */
    align-items: flex-start; /* Alinhar ao topo */
    position: fixed;
    left: 0;
    top: 0;
    padding: 40px 20px; /* Espaçamento interno */
    overflow: hidden; /* Remover barra de rolagem */
    z-index: 1; /* Garante que fique acima do gradiente */
}

.profile {
    text-align: left; /* Alinhar texto à esquerda */
    max-width: 600px; /* Largura máxima do conteúdo */
}

.profile h1 {
    font-size: 3rem; /* Título maior */
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #ccd6f6; /* Texto principal */
}

.profile p {
    font-size: 1.2rem;
    color: #64ffda; /* Verde água */
    margin-bottom: 20px;
}

.descricao p {
    font-size: 1rem;
    color: #8892b0; /* Texto secundário */
    line-height: 1.5;
    margin-bottom: 20px;
}

.profile nav ul {
    list-style: none;
    margin-top: 20px;
}

.profile nav ul li {
    margin: 15px 0;
}

.profile nav ul li a {
    color: #ccd6f6; /* Texto principal */
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: block; /* Faz o link ocupar toda a largura do li */
    padding: 10px 15px; /* Espaçamento interno para parecer um botão */
    background-color: #112240; /* Cor de fundo do botão */
    border-radius: 5px; /* Bordas arredondadas */
    text-align: center; /* Centralizar texto */
    transition: background-color 0.3s, transform 0.3s;
}

.profile nav ul li a:hover {
    background-color: #64ffda; /* Verde água ao passar o mouse */
    color: #0a192f; /* Texto escuro ao passar o mouse */
    transform: translateY(-2px); /* Levantar o botão ao passar o mouse */
}

/* Ícones de Contato e Currículo */
.contatos {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contatos a {
    display: inline-flex; /* Ajusta para o conteúdo ocupar apenas o tamanho do ícone e texto */
    align-items: center; /* Alinha ícone e texto verticalmente */
    padding: 5px 10px; /* Espaçamento entre o ícone e o texto (ajuste conforme necessário) */
    text-decoration: none; /* Remove o sublinhado do link */
    color: #64ffda; /* Verde água */
}

.contatos a:hover {
    color: #fff; /* Branco ao passar o mouse */
}

.contatos i {
    margin-right: 8px; /* Espaçamento entre o ícone e o texto */
    font-size: 20px; /* Ajuste o tamanho do ícone conforme necessário */
}

.contatos span {
    margin-left: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: underline; /* Aplica underline apenas ao texto */
    font-family: 'Roboto', sans-serif; /* Fonte consistente com o resto do código */
}

/* Imagens decorativas */
.decorative-image {
    position: fixed; /* Mantém os círculos fixos na tela */
    opacity: 0; /* Transparência */
    z-index: -1; /* Coloca as imagens atrás do conteúdo */
    pointer-events: none; /* Evita interação com os elementos */
}

/* Posicionamento e tamanho para cada círculo */
.circle-1 {
    width: 100px;
    top: 10%;
    left: 5%;
    animation: float 6s infinite ease-in-out;
}

.circle-2 {
    width: 150px;
    top: 30%;
    left: 70%;
    animation: float 8s infinite ease-in-out;
}

.circle-3 {
    width: 80px;
    top: 50%;
    left: 20%;
    opacity: 0;
    animation: float 5s infinite ease-in-out;
}

.circle-4 {
    width: 120px;
    top: 70%;
    left: 60%;
    animation: float 7s infinite ease-in-out;
}

.circle-5 {
    width: 200px;
    top: 80%;
    left: 10%;
    animation: float 9s infinite ease-in-out;
}

/* Círculos na parte móvel */
.circle-6 {
    width: 90px;
    top: 15%;
    left: 80%;
    animation: float 6s infinite ease-in-out;
}

.circle-7 {
    width: 130px;
    top: 40%;
    left: 10%;
    animation: float 7s infinite ease-in-out;
}

.circle-8 {
    width: 110px;
    top: 60%;
    left: 85%;
    animation: float 5s infinite ease-in-out;
}

.circle-9 {
    width: 160px;
    top: 75%;
    left: 20%;
    animation: float 8s infinite ease-in-out;
}

/* Animação para flutuar */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Painel Rolável à Direita */
.right-panel {
    width: 65%; /* Largura aumentada */
    height: 100vh;
    margin-left: 35%; /* Ajustado para o novo tamanho do painel fixo */
    overflow-y: auto; /* Permitir scroll na seção rolável */
    padding: 40px;
    position: relative; /* Para posicionar os círculos */
    z-index: 1; /* Garante que fique acima do gradiente */
    scroll-behavior: smooth;
}

/* Divisor entre seções */
section {
    margin-bottom: 40px; /* Espaçamento entre as seções */
    position: relative; /* Para garantir que o conteúdo fique acima dos círculos */
}

section h2 {
    font-size: 2.5rem;
    color: #ccd6f6; /* Texto principal */
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

section p {
    font-size: 1.1rem;
    color: #8892b0; /* Texto secundário */
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Divisor visual entre categorias */
.divisor {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #64ffda, transparent);
    margin: 40px 0;
}

/* Estilo para os projetos */
.projeto {
    background-color: transparent; /* Fundo transparente */
    padding: 20px;
    border-radius: 10px; /* Cantos arredondados */
    margin-bottom: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.projeto:hover {
    background-color: #112240; /* Azul mais escuro ao passar o mouse */
    transform: translateY(-5px); /* Levantar o card ao passar o mouse */
}

.projeto h3 {
    font-size: 1.8rem;
    color: #ccd6f6; /* Texto principal */
    margin-bottom: 10px;
}

.projeto a {
    color: #64ffda; /* Verde água */
    text-decoration: none;
    transition: color 0.3s;
}

.projeto a:hover {
    color: #fff; /* Branco ao passar o mouse */
}

/* Estilo para as ferramentas */
.ferramentas {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.ferramenta {
    display: flex;
    align-items: center;
    background-color: #1f4068; /* Azul médio */
    padding: 8px 12px;
    border-radius: 20px; /* Bordas arredondadas */
    font-size: 0.9rem;
    color: #ccd6f6; /* Texto principal */
}

.ferramenta i {
    margin-right: 8px;
    font-size: 1rem;
    color: #64ffda; /* Verde água */
}

/* Destaque */
.highlight {
    color: #64ffda; /* Verde água */
    font-weight: bold;
}

/* Links dos projetos */
.links-projeto {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.links-projeto a {
    display: flex;
    align-items: center;
    color: #64ffda; /* Verde água */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.links-projeto a:hover {
    color: #fff; /* Branco ao passar o mouse */
}

.links-projeto i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Estilo específico para o link "Veja online" */
.link-online {
    background-color: #1f4068; /* Azul médio */
    padding: 8px 12px;
    border-radius: 20px; /* Bordas arredondadas */
}

/* Estilo do Switch de Idioma */
.language-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000; /* Garante que fique acima de outros elementos */
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #64ffda; /* Verde água */
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #0a192f; /* Azul escuro */
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #1f4068; /* Azul médio */
}

input:checked + .slider:before {
    transform: translateX(26px);
}

#language-label {
    font-size: 1rem;
    color: #ccd6f6; /* Texto principal */
    font-weight: 500;
}

/* Adicione estas regras ao seu arquivo CSS */

/* Melhorias gerais de alinhamento */
body {
    overflow-x: hidden; /* Evita rolagem horizontal indesejada */
}

.left-panel {
    padding: 60px 40px; /* Aumente o padding para melhor espaçamento */
    width: 30%; /* Reduza um pouco a largura */
    justify-content: center; /* Centralize o conteúdo verticalmente */
}

.right-panel {
    width: 70%; /* Ajuste para a nova largura do painel esquerdo */
    margin-left: 30%; /* Correspondente ao ajuste acima */
    padding: 60px 80px; /* Mais espaço interno */
}

/* Melhor hierarquia visual para títulos */
.profile h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: #64ffda;
    border-radius: 3px;
}

/* Melhor espaçamento entre seções */
section {
    margin-bottom: 60px;
    padding-bottom: 20px;
}

/* Cards de projetos mais destacados */
.projeto {
    background-color: rgba(17, 34, 64, 0.5); /* Fundo semi-transparente */
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px); /* Efeito de vidro fosco */
}

.projeto h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* Melhor organização das ferramentas */
.ferramentas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.ferramenta {
    padding: 10px 15px;
    font-size: 0.85rem;
}

/* Links mais destacados */
.links-projeto a {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.links-projeto a:first-child {
    background-color: rgba(100, 255, 218, 0.1);
}

.links-projeto a:first-child:hover {
    background-color: rgba(100, 255, 218, 0.2);
}

.link-online {
    background-color: rgba(31, 64, 104, 0.8);
}

.link-online:hover {
    background-color: rgba(31, 64, 104, 1);
}

/* Melhor contraste para texto */
section p {
    color: #a8b2d1;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Efeito hover mais sutil nos links de navegação */
.profile nav ul li a {
    transition: all 0.2s ease;
}

.profile nav ul li a:hover {
    transform: translateX(5px) translateY(-2px);
}

/* Responsividade básica */
@media (max-width: 1200px) {
    .left-panel, .right-panel {
        width: 100%;
        margin-left: 0;
        position: static;
        height: auto;
    }
    
    .left-panel {
        padding: 40px 20px;
        text-align: center;
    }
    
    .right-panel {
        padding: 40px;
    }
    
    body {
        flex-direction: column;
        overflow-y: auto;
        height: auto;
    }
}
.habilidades {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.habilidade {
    background: rgba(17, 34, 64, 0.5); /* fundo semi-transparente */
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(5px); /* efeito de vidro fosco */
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.habilidade:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    background-color: rgba(17, 34, 64, 0.7);
}

.habilidade h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64ffda; /* verde água para títulos */
}

.habilidade ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.habilidade li {
    margin: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
    color: #ccd6f6; /* cor do texto normal */
}

.habilidade li i {
    color: #64ffda; /* cor dos ícones */
}
