.carousel-item {
    position: relative;
    height: 500px;
}

.carousel-item .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-section h1, .hero-section p {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

.carousel-item h1, .carousel-item p {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

/* Navbar inicial transparente */
.navbar-custom {
    background-color: rgba(25, 135, 84, 0.6) !important; /* 60% opaco */
    transition: background-color 0.4s ease-in-out;
}

/* Navbar com fundo sólido ao rolar */
.navbar-scrolled {
    background-color: #198754 !important; /* Mesma cor da navbar original */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilização do Carrossel de Logos */
.logos-carousel {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    width: 100%;
    background: #f8f9fa;
    padding: 20px 0;
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

/* Ajusta o tamanho dos logos */
.logos-track img {
    width: 125px;
    height: auto;
    filter: grayscale(100%);
    transition: transform 0.3s ease-in-out;
}

/* Efeito ao passar o mouse */
.logos-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Animação de rolagem — vai de 0 a -50% (uma das duas cópias) para loop perfeito */
@keyframes scroll-logos {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* Estilos para a página de soluções */
.hero-solucoes {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fa-li {
    left: -2em;
}

/* Títulos de seção com acento verde */
.section-heading {
    text-align: center;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background-color: #198754;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

/* Accordion com cor da marca */
.accordion-button:not(.collapsed) {
    background-color: #e9f5ef;
    color: #198754;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}
.accordion-button::after {
    filter: invert(35%) sepia(80%) saturate(500%) hue-rotate(100deg);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-solucoes {
        text-align: center;
        height: 300px;
    }
    
    .hero-solucoes h1 {
        font-size: 2.5rem;
    }
}