html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Altura da barra de navegação + um pouco de espaço */
}
body {
    padding-top: 70px; /* Para compensar a barra de navegação fixa no topo */
    background-color: #0a192f; /* Dark futuristic background */
    color: #ccd6f6; /* Light text for contrast */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
}

/* Estilos da Barra de Navegação Futurista */
.navbar-futuristic {
    background-color: #0d1b30; /* Um pouco diferente do body para destacar */
    border-bottom: 1px solid #233554; /* Borda sutil */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.navbar-futuristic .navbar-brand {
    color: #64ffda;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.navbar-futuristic .navbar-brand:hover {
    color: #88fff1;
}
.navbar-futuristic .nav-link {
    color: #a8b2d1;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.navbar-futuristic .nav-link:hover,
.navbar-futuristic .nav-link.active {
    color: #64ffda;
    background-color: #112240;
}
.navbar-futuristic .navbar-toggler {
    border-color: #233554;
}
.navbar-futuristic .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(100, 255, 218, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-logo {
    height: 60px;
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
    }

/* Estilos do Header com Foto */
.header-custom {
    background-color: #112240;
    color: #64ffda;
    padding: 3rem 1rem; 
    margin-bottom: 2rem;
    border-radius: .5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    border-left: 5px solid #64ffda;
}
.profile-photo {
    width: 180px; 
    height: 180px;
    border-radius: 50%; 
    object-fit: cover; 
    border: 4px solid #64ffda; 
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3); 
    margin-left: auto; 
    margin-right: auto; 
}
.header-text-content {
    text-align: center;
}
@media (min-width: 768px) { /* md breakpoint do Bootstrap */
    .header-custom {
        padding: 3rem 2rem; 
    }
    .header-text-content {
        text-align: left;
    }
    .profile-photo {
      margin-left: 0; 
      margin-right: 0; 
    }
}
.header-custom h1 {
    font-weight: 500;
    font-size: 2.5rem; 
    letter-spacing: 0.05em;
    color: #64ffda; 
}
.header-custom p.lead {
    color: #a8b2d1;
    font-size: 1.2rem; 
    margin-bottom: 0.5rem;
}
.header-custom p {
    color: #a8b2d1;
    font-size: 1rem; 
}
.header-custom .profile-links a{
    color: #64ffda;
}
.header-custom .profile-links a:hover{
    color: #ccd6f6;
}

.section-card {
    background-color: #112240;
    color: #ccd6f6;
    border: 1px solid #233554;
    border-radius: .5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.card-title {
    color: #64ffda;
    border-bottom: 2px solid #64ffda;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.5rem;
}
.job .date, .education-item .date {
    font-style: italic;
    color: #a8b2d1;
    font-size: 0.9em;
}

.course-description { /* NOVO ESTILO ADICIONADO */
    font-size: 0.9rem;
    color: #a8b2d1; /* Cor de texto suave, consistente com .date e .text-muted */
    margin-top: 0.75rem;
    line-height: 1.5;
}

.skills-list .badge {
    background-color: #233554;
    color: #64ffda;
    border: 1px solid #64ffda;
    margin: 0.2rem;
    font-size: 0.9rem;
    border-radius: 0.3rem;
    padding: 0.5em 0.75em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: default; 
}
.skills-list .badge:hover {
    background-color: #64ffda;
    color: #0a192f;
}
.skills-list .badge.bg-primary, .skills-list .badge.bg-secondary, .skills-list .badge.bg-info, .skills-list .badge.bg-success, .skills-list .badge.bg-warning, .skills-list .badge.bg-light {
    background-color: #233554 !important;
    color: #64ffda !important;
    border: 1px solid #64ffda !important;
}
 .skills-list .badge.bg-primary:hover, .skills-list .badge.bg-secondary:hover, .skills-list .badge.bg-info:hover, .skills-list .badge.bg-success:hover, .skills-list .badge.bg-warning:hover, .skills-list .badge.bg-light:hover {
    background-color: #64ffda !important;
    color: #0a192f !important;
}

footer {
    background-color: #0a192f;
    border-top: 1px solid #233554;
    color: #a8b2d1;
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
}
.profile-links a { 
    color: #64ffda;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.profile-links a:hover {
    color: #ccd6f6;
}
.job h4 {
     margin-top: 1rem;
     color: #64ffda;
     font-weight: normal;
}
.list-group-item {
    background-color: transparent;
    color: #ccd6f6;
    border-color: #233554;
}
.text-muted {
    color: #a8b2d1 !important;
}
.card-subtitle {
    color: #a8b2d1 !important;
    font-size: 1rem;
    margin-top: 0.5rem;
}
main > section > h2, main > h2 {
    color: #64ffda;
    font-size: 1.8rem;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #233554;
    letter-spacing: 0.03em;
}

/* --- Estilos para Tooltips Futuristas --- */
.tooltip {
    --bs-tooltip-bg: #112240;
    --bs-tooltip-color: #64ffda;
    --bs-tooltip-opacity: 0.95; 
    --bs-tooltip-border-radius: 0.3rem;
    --bs-tooltip-padding-x: 0.75rem;
    --bs-tooltip-padding-y: 0.5rem;
    --bs-tooltip-font-size: 0.875rem;
}
.tooltip-inner {
    background-color: var(--bs-tooltip-bg);
    color: var(--bs-tooltip-color);
    border: 1px solid #233554; 
    text-align: left; 
}
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--bs-tooltip-bg); 
}
.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--bs-tooltip-bg);
}
.bs-tooltip-start .tooltip-arrow::before { 
    border-left-color: var(--bs-tooltip-bg);
}
.bs-tooltip-end .tooltip-arrow::before { 
    border-right-color: var(--bs-tooltip-bg);
}