/* --- CARROSSEL DE BANNERS INFERIOR --- */
.carousel-wrapper-outer {
    max-width: 1100px;
    width: 100%;
    margin: 10px auto 0 auto;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.carousel-track-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #342c65;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    background-color: #342c65;
}

.footer-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #342c65;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    border-radius: 10px;
    pointer-events: none;
}

.footer-banner.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-icon {
    font-size: 28px;
    color: #818cf8;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
}

.footer-info span {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-info h4 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.footer-info h4 span {
    color: #f59e0b;
    font-size: 16px;
}

.footer-info p {
    font-size: 12px;
    color: #d1d5db;
    margin-top: 1px;
}

.btn-condtech {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-condtech:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Botões do Carrossel Externos */
.carousel-btn {
    background: #342c65;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: #443985;
    transform: scale(1.05);
}

.carousel-indicators {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        display: flex;
        justify-content: center;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-top: 10px !important;
        gap: 6px;
    }

.indicator-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator-btn.active {
    background-color: #342c65;
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .footer-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}