﻿.carousel-wrapper {
    /*width: 100%;
            max-width: 100%;*/ /* 👈 ajuste aqui */
    /*margin: 0 auto;*/ /* centraliza */
    /*max-width: 100%;*/ /* teste: 1320 / 1440 / 1600 */
    width: 100%;
    margin: 0 auto;
    /*padding: 0 24px;*/
}

.slide-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0A003C; /* azul escuro profissional */
    margin-bottom: 24px;
    text-align: left;
    padding-left: 12px;
}

.img-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    /* IMPORTANTE: sem fundo escuro */
    background: transparent;
    /* Defina UMA das opções abaixo: */
    height: 520px; /* opção A: altura fixa */
    /* aspect-ratio: 3 / 5; */ /* opção B: proporção fixa (use com height auto) */
}

    /* A imagem ocupa exatamente o tamanho do card */
    .img-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; /* preenche o card sem bordas */
        object-position: center; /* ajuste se quiser: center top */
    }

/* SETAS MAIS SUAVES */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}
