body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    /*overflow: hidden; /*Hide Scrollbars*/
}

.navbar {
    background-color: #1e1e1e;
}

.navbar-brand {
    color: #00aaff;
    /* Azul claro */
}

.navbar-brand:hover {
    color: #0077cc;
    /* Azul escuro para hover */
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, #1e1e1e, #333);
    padding: 50px 20px;
    opacity: 0; /* Start invisible */
    animation: fadeInUp 1s ease-out forwards; /* Apply the animation */
}

.hero img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #00aaff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.2s; /* Delay to create a staggered effect */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.4s; /* Delay to create a staggered effect */
}

.hero p {
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.6s; /* Delay to create a staggered effect */
}

.btn-custom {
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 25px;
    background-color: #00aaff;
    /* Azul claro */
    border: none;
    transition: background-color 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 1s; /* Delay to create a staggered effect */
}

.btn-custom:hover {
    background-color: #0077cc;
    /* Azul escuro para hover */
}

.section {
    padding: 60px 20px;
}

.section h2 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.card {
    background-color: #1e1e1e;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 20px;
}

.card-title {
    color: #00aaff;
    /* Azul claro */
}

.card-text {
    color: #b0b0b0;
}

.education-section {
    padding: 60px 20px;
    background-color: #1e1e1e;
    text-align: center;
}

.education-section h2 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.education-item {
    margin-bottom: 30px;
}

.education-item img {
    width: 100px;
    margin-bottom: 15px;
}

.education-item h3 {
    font-size: 1.75rem;
    color: #00aaff;
    /* Azul claro */
    margin-bottom: 10px;
}

.education-item p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.contact-section {
    background-color: #1e1e1e;
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.contact-section a {
    color: #00aaff;
    /* Azul claro */
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.contact-section a:hover {
    color: #0077cc;
    /* Azul escuro para hover */
}

.footer {
    background-color: #1e1e1e;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .card {
    margin-bottom: 15px; /* Add spacing between cards */
    }   
}

#sidebar.hidden {
    display: none;
}
#content.full-width {
    width: 100%;
}

.example::-webkit-scrollbar {
    display: none;
}
  

/* Hide scrollbar for IE, Edge and Firefox */
.example {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbars for WebKit browsers */
.element {
    overflow: -moz-scrollbars-none; /* Firefox (older versions) */
    overflow: scroll; /* Enable scrolling */
}
  
  /* Hide scrollbars for WebKit browsers */
.element::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}
  
  /* Hide scrollbars for all other browsers */
.element {
    -ms-overflow-style: none; /* Internet Explorer and Edge */
    scrollbar-width: none; /* Firefox */
}

 /* Hide scrollbar but allow scrolling */
 html, body {
    overflow: auto;  /* Allow scrolling */
    scrollbar-width: none;  /* Hide scrollbar in Firefox */
}

html::-webkit-scrollbar {
    display: none;  /* Hide scrollbar in Webkit browsers (Chrome, Safari) */
}

/* Internet Explorer and old Edge */
html {
    -ms-overflow-style: none; /* Hide scrollbar in IE and old Edge */
}

/* Example content to make page scrollable */
.content {
    height: 200vh; /* Double the viewport height to enable scrolling */
}

.scroll-down {
    position: absolute;
    display: inline-block;
    margin-top: 20em;
    color: #00aaff; /* Matching the button color */
    font-size: 2rem;
    animation: fadeInUp 1.5s ease-out forwards 1.5s; /* Same animation as the button */
    opacity: 0;
    text-decoration: none;
}

.scroll-down:hover {
    color: #0077cc; /* Darker blue on hover */
}

.scroll-down i {
    animation: bounce 2s infinite; /* Bouncing animation for the arrow */
}

/* Bouncing animation for the arrow */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/*Experience Cards Style*/

.experience-card {
    background-color: #1e1e1e;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    cursor: pointer;
    max-height: 80px; /* Tamanho inicial */
    padding: 20px;
    transition: transform 0.3s;
}
.experience-card.active {
    max-height: 300px; /* Tamanho expandido */
}
.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.experience-title {
    font-size: 1.5rem;
    color: #00aaff;
    margin: 0;
}
.experience-date {
    font-size: 1rem;
    color: #b0b0b0;
    margin-right: 20px;
}
.experience-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}
.experience-card.active .experience-details {
    opacity: 1;
    max-height: 200px;
}
.experience-icon {
    font-size: 1.5rem;
    color: #00aaff;
    transition: transform 0.4s ease;
}
.experience-card.active .experience-icon {
    transform: rotate(180deg);
}

.experience-card:hover {
    transform: translateY(-5px);
}