/* General Styles */
body {
    font-family: 'Roboto Mono', monospace;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Scroll animation for sections */
.section-animated {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animated.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* Sombra mais visível */
}

.navbar-brand, .nav-link {
    color: #00cc99 !important; /* Techy green accent */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.navbar-brand:hover, .nav-link:hover {
    color: #00ffaa !important; /* Mais claro no hover */
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    color: #00cc99;
    border-bottom: 2px solid #00cc99;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 40px; /* Mais espaço abaixo do título da seção */
    font-size: 2.5em; /* Tamanho maior para os títulos das seções */
    font-weight: 700;
}

.bg-primary {
    background-color: #383F45 !important; /* Dark navy for hero section */
}

.bg-secondary {
    background-color: #2a2a2a !important; /* Slightly lighter dark for contrast */
}

/* Hero Section Specifics */
#home.section-animated {
    opacity: 1; /* Hero section já visível no carregamento */
    transform: translateY(0);
    min-height: 80vh; /* Para ocupar mais espaço na tela inicial */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero_background.jpg') no-repeat center center/cover; /* Adicione sua imagem de fundo aqui */
}

.profile-pic {
    border: 5px solid #00cc99; /* Borda da foto de perfil */
    box-shadow: 0 0 15px rgba(0, 204, 153, 0.5); /* Sombra luminosa */
}

#home h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8em; /* Título principal maior */
    font-weight: 700;
    margin-bottom: 10px;
}

#home .lead {
    font-size: 1.5em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

#home p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #333 !important; /* Fundo mais escuro para cards */
}

.card:hover {
    transform: translateY(-8px); /* Mais destaque no hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6); /* Sombra mais pronunciada */
}

.card-body h5 {
    color: #00ffaa; /* Títulos dos cards em destaque */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* NOVO: Cor mais clara para as datas na seção Experience */
#experience .card-body .text-muted {
    color: #c0c0c0 !important; /* Usando o mesmo cinza claro do lead text para consistência */
}

.btn-primary {
    background-color: #00cc99;
    border-color: #00cc99;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #00ffaa;
    border-color: #00ffaa;
}

.btn-outline-light {
    border-color: #e0e0e0;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #00cc99;
    color: #1a1a1a;
    border-color: #00cc99;
}

form .form-control {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #00cc99;
}

form .form-control:focus {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border-color: #00ffaa;
    box-shadow: 0 0 0 0.25rem rgba(0, 204, 153, 0.25); /* Sombra de foco ajustada */
}

ul {
    list-style: none;
    padding-left: 0;
}

/* Estilo para listas de skills e certificações */
ul li:before {
    content: '▹';
    color: #00cc99;
    margin-right: 10px;
    font-weight: bold;
}

/* Estilo para os accomplishments bullets dentro da seção Experience */
.accomplishment-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px; /* Espaço entre a lista e o parágrafo de descrição */
}

.accomplishment-list li {
    margin-bottom: 5px; /* Espaço entre os itens da lista */
}

.accomplishment-bullet {
    color: #00ffaa; /* Cor do diamante */
    font-size: 0.8em; /* Tamanho do ícone */
    vertical-align: middle; /* Alinha o ícone com o texto */
}

/* Skills Section Icons */
.icon-color {
    color: #00cc99;
}

/* Testimonials Section Specifics */
.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.05em;
    margin-bottom: 15px;
    position: relative;
    padding-top: 15px;
}
.testimonial-card blockquote::before {
    content: '“';
    font-family: serif; /* Font for the quote mark */
    font-size: 4em;
    color: rgba(0, 204, 153, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    transform: translateX(-15px); /* Ajuste para posicionar a aspa */
}
.testimonial-card cite {
    display: block;
    font-weight: bold;
    color: #00ffaa; /* Cor de destaque para o autor do depoimento */
    margin-top: 10px;
}

/* Contact Section Icons */
.contact-links a {
    transition: color 0.3s ease, transform 0.3s ease;
}
.contact-links a:hover {
    color: #00ffaa !important;
    transform: translateY(-3px);
}

/* Back to Top Button */
#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 1001; /* Make sure it's above other elements */
    background-color: #00cc99;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px; /* Centraliza o ícone */
    font-size: 1.5em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    border: none; /* Remove a borda padrão do botão */
}

#backToTopBtn:hover {
    background-color: #00ffaa;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
}

/* Footer */
footer {
    padding: 20px;
    font-size: 0.9em;
    color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #home h1 {
        font-size: 3em;
    }
    #home .lead {
        font-size: 1.3em;
    }
    .section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: #333; /* Fundo para o menu hambúrguer */
        text-align: left;
        padding: 15px;
    }
    .navbar-nav {
        width: 100%;
    }
    .nav-item {
        margin: 5px 0;
    }
    #home h1 {
        font-size: 2.5em;
    }
    #home .lead {
        font-size: 1.1em;
    }
    .section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    .btn-lg {
        padding: 10px 20px;
        font-size: 1em;
    }
    .skills-section .col-md-4 {
        margin-bottom: 30px;
    }
    #backToTopBtn {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
        line-height: 45px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 15px;
    }
    #home h1 {
        font-size: 2em;
    }
    #home .lead {
        font-size: 1em;
    }
    .section-title {
        font-size: 1.5em;
    }
    .contact-links a {
        font-size: 1.8em; /* Menor em telas muito pequenas */
    }
}