body {
    font-family: 'Roboto', sans-serif;
}
.navbar {
    background-color: #013173;
}
.navbar-nav .nav-link,
.navbar-brand,
.navbar-toggler,
.dropdown-menu a {
    color: #fff !important;
}
.dropdown-menu {
    background-color: #013173;
}
.dropdown-menu a:hover {
    color: #000 !important;
}
.navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
}
.btn-primary {
    background-color: #003274;
    color: #fff;
    border: none;
}
.btn-outline-primary {
    border-color: #003274;
    color: #003274;
}
.btn-outline-primary:hover {
    background-color: #003274;
    color: #fff;
}
.bg-light-gray {
    background-color: #F5F5F5;
}
.bg-dark-blue {
    background-color: #013173;
}
.bg-blog {
    background-color: #2554AF;
}
.bg-gradient-custom {
    background: linear-gradient(to bottom, #0956C1, #013173);
}
.text-primary-custom {
    color: #003274 !important;
}
.text-body-custom {
    color: #000000 !important;
}
.text-light-on-blue {
    color: #FFFFFF !important;
}
.bg-card-history-blue {
    max-width: 700px;
    background-color: #2554AF;
}
.linkedin-icon img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.linkedin-icon:hover img {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#carouselDestaques .carousel-indicators {
     bottom: -40px;
 }
#carouselDestaques .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0d2c64;
    opacity: 0.5;
    border: none;
    margin: 0 6px;
}
#carouselDestaques .carousel-indicators .active {
    opacity: 1;
}
footer {
    background: linear-gradient(to bottom, #0056a6, #003d73);
    color: white;
}
.cursor-pointer {
    cursor: pointer;
}

/* Category index effect */

.categorias-expandiveis {
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.categoria {
    position: relative;
    flex: 1;
    min-width: 160px;
    height: 560px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.titulo-central {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
    transition: opacity 0.3s ease;
    z-index: 2;
    position: absolute;
    pointer-events: none;
}

.categoria:hover .titulo-central {
    opacity: 0;
}

.conteudo {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    width: 100%;
    z-index: 3;
}

.categoria:hover {
    flex: 2;
}

.categoria:hover .conteudo {
    opacity: 1;
    transform: translateY(0);
}




