#titulo-parceiros::after {
    content: "|";
    animation: blink 1s infinite;
    color: #12406e;
    /* ou qualquer cor desejada */
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Banner */
.banner-carousel .banner-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    filter: brightness(80%);
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    right: 10%;
    text-align: center;
    color: white;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption h5 {
    font-size: 2rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.1rem;
}

.carousel-section {
    background: linear-gradient(135deg, #F3F9FF, #FFFFFF);
    padding: 80px 0;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B4965;
    margin-bottom: 40px;
    text-align: center;
}

.owl-theme-1 .card {
    transition: all 0.3s ease;
    border-radius: 16px;
    background-color: #fff;
    border: none;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.owl-theme-1 .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card h5 {
    font-weight: 600;
    margin-top: 10px;
    color: #1B4965;
}

.logo-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-container img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
}

.partners-section {
    background: linear-gradient(135deg, #1B4965 0%, #2F80ED 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.partners-section h2 {
    font-size: 2rem;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.3;
}

.partners-section p.lead {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 30px;
    color: #E2E8F0;
}

.partners-section a.btn {
    background-color: #fff;
    color: #1B4965;
    font-weight: 700;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.partners-section a.btn:hover {
    background-color: #f0f0f0;
    color: #12406e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsivo Mobile */
@media (max-width: 767px) {
    .banner-carousel .banner-image {
        max-height: 250px;
    }

    .carousel-caption {
        bottom: 10%;
        padding: 0 10px;
    }

    .carousel-caption h5 {
        font-size: 1.3rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-indicators li {
        max-width: 100px !important;
        font-size: 0.75rem !important;
        padding: 4px 8px !important;
        white-space: normal;
        -webkit-line-clamp: 2;
    }

    .owl-theme-1 .card {
        padding: 20px !important;
        border-radius: 12px !important;
    }

    .owl-theme-1 .card h5 {
        font-size: 1rem !important;
    }

    .owl-theme-1 .card p {
        font-size: 0.9rem !important;
    }

    .logo-container {
        height: 70px !important;
    }

    .logo-container img {
        max-width: 100px !important;
    }

    .carousel-section {
        padding: 40px 10px !important;
    }

    .partners-section {
        padding: 40px 15px !important;
    }

    .partners-section h2 {
        font-size: 1.5rem !important;
    }

    .partners-section p.lead {
        font-size: 1rem !important;
    }

    .partners-section a.btn {
        padding: 12px 24px !important;
        font-size: 1rem !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 40% !important;
    }
}