/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --avilla-accent: #b59855;
    --avilla-accent-hover: #9a8047;
    --avilla-accent-light: rgba(181, 152, 85, 0.12);
    --accent: #b59855;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

/* ===== Banner ===== */
#bannerHome {
    position: relative;
    width: 100%;
    min-height: 450px;
    background-image: url('../../../assets/images/banner5.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    z-index: 1;
}

#bannerHome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Container fixo no centro: Select2 anexa o dropdown aqui, então fica sempre centralizado */
.banner-search-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 720px;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bannerHome .search-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    z-index: 3;
    margin: 0 auto;
    text-align: center;
}

/* ===== Campo de busca + dropdown: PC e celular (responsivo) ===== */
#bannerHome .select2-container {
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto;
}

#bannerHome .select2-container .select2-selection--single {
    width: 100% !important;
}

#bannerHome .select2-selection--single {
    min-height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 1.25rem 0 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    color: var(--text-dark);
}

#bannerHome .select2-selection--single:hover {
    border-color: rgba(181, 152, 85, 0.5);
    background: #fff;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
}

#bannerHome .select2-selection--single:focus,
#bannerHome .select2-container--focus .select2-selection--single {
    border-color: var(--avilla-accent);
    box-shadow: 0 0 0 3px rgba(181, 152, 85, 0.2);
    background: #fff;
}

#bannerHome .select2-selection__arrow {
    display: none;
}

#bannerHome .select2-selection__rendered {
    line-height: 1.4;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

#bannerHome .select2-selection__placeholder {
    color: var(--text-muted);
}

#bannerHome .select2-selection__rendered::before {
    content: '';
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23b59855' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-right: 0;
}

#bannerHome .select2-selection__rendered {
    padding-left: 0.5rem;
}

/* ===== Somente o campo de pesquisa no centro (sem “botão” quando aberto) ===== */
#bannerHome .search-wrap.is-open .select2-container .select2-selection--single,
#bannerHome .select2-container--open .select2-selection--single {
    display: none !important;
}

#bannerHome .search-wrap.is-open .select2-container,
#bannerHome .select2-container--open {
    height: 0 !important;
    min-height: 0 !important;
    overflow: visible !important;
}

/* ===== Dropdown de resultados — layout clean, identidade Avilla ===== */
/* Dropdown no banner: centralizado dentro do container */
.banner-search-container .select2-dropdown {
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    min-width: 0;
}

.select2-dropdown {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    margin-top: 8px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(181, 152, 85, 0.08) !important;
    background: #fff !important;
    z-index: 9999 !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 720px;
    min-width: 280px;
    top: 100% !important;
    transform: none !important;
    overflow: hidden;
}

.select2-results__options {
    max-height: 70vh;
    overflow-y: auto !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    height: auto !important;
    margin: 0;
    padding: 0.5rem 0;
    animation: fadeInUp 0.2s ease-out;
}

/* No banner: sem animação para o campo não “sair do centro” ao carregar */
@media (min-width: 769px) {
    .select2-results__options {
        max-height: 400px;
    }
}

.select2-results__option[role="alert"],
.select2-results__message {
    padding: 1rem 1.25rem !important;
    line-height: 1.5 !important;
    color: var(--text-muted) !important;
    font-size: 0.9375rem !important;
    background: #fafafa !important;
    text-align: center;
}

/* No banner: hint “Digite pelo menos 2 caracteres” mais apresentado */
.select2-results__option {
    padding: 0 1.25rem;
    min-height: 44px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease;
    line-height: 1.4;
    cursor: pointer;
    display: block;
}

.select2-results__option:last-child {
    border-bottom: none;
}

.select2-results__option:hover,
.select2-results__option--highlighted {
    background: var(--avilla-accent-light) !important;
}

.select2-results__option:hover .s2-title,
.select2-results__option--highlighted .s2-title {
    color: var(--avilla-accent);
}

.select2-results__option::before {
    display: none;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem 0.75rem 2.5rem !important;
    font-size: 1rem !important;
    min-height: 44px;
    margin: 0 1rem 0.5rem !important;
    width: calc(100% - 2rem) !important;
    background: #f8f9fa !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--avilla-accent) !important;
    box-shadow: 0 0 0 2px rgba(181, 152, 85, 0.15) !important;
    outline: none !important;
}

/* Itens do resultado (cards no dropdown) */
.s2-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: start;
    padding: 0.85rem 0;
    line-height: 1.4;
}

.s2-content {
    min-width: 0;
    overflow: hidden;
}

.s2-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.35rem;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.s2-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
}

.s2-meta-item {
    background: rgba(181, 152, 85, 0.1);
    color: var(--avilla-accent-hover);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.s2-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.s2-info-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.s2-price {
    color: var(--avilla-accent);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
    align-self: start;
    flex-shrink: 0;
}

.s2-cliente {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: normal;
    margin-top: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s2-info-item i[data-icon="calendar"]::before { content: '📅'; }
.s2-info-item i[data-icon="user"]::before { content: '👤'; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Seção Lista de Imóveis ===== */
.lista-imoveis-section {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    padding: 3rem 0 4rem;
}

.lista-imoveis-bloco {
    margin-bottom: 3rem;
}

.lista-imoveis-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.lista-imoveis-titulo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #5a5a5a;
    margin: 0 0 0.5rem;
    position: relative;
}

.lista-imoveis-titulo::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--avilla-accent), var(--avilla-accent-hover));
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

.lista-imoveis-subtitulo {
    font-size: 1rem;
    color: #6a6a6a;
    margin: 0;
}

.lista-imoveis-grid .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.lista-imoveis-grid .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Cards da lista - ajuste para tema */
.lista-imoveis-grid .card {
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.lista-imoveis-grid .card .lista-imovel-img,
.lista-imoveis-grid .card .bg-image {
    height: 220px;
    min-height: 180px;
    background-color: #eee;
}

.lista-imoveis-grid .card .card-title {
    font-size: 1.15rem;
    color: #6a6a6a;
}

.lista-imoveis-grid .card:hover .card-title {
    color: var(--avilla-accent);
}

.imovel-destaque-wrapper {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(181, 152, 85, 0.15);
}

@media (max-width: 768px) {
    .lista-imoveis-section {
        padding: 2rem 0 3rem;
    }

    .lista-imoveis-titulo {
        font-size: 1.5rem;
    }

    .lista-imoveis-subtitulo {
        font-size: 0.9375rem;
    }

    .lista-imoveis-header {
        margin-bottom: 1.5rem;
    }

    .lista-imoveis-grid .card .lista-imovel-img,
    .lista-imoveis-grid .card .bg-image {
        height: 180px;
        min-height: 160px;
    }
    .lista-imoveis-grid .card .card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .imovel-destaque-wrapper {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    .imovel-destaque-carousel-wrap {
        min-height: 220px;
    }

    .lista-imoveis-section {
        padding: 1.5rem 0 2.5rem;
    }

    .lista-imoveis-titulo {
        font-size: 1.25rem;
    }

    .lista-imoveis-grid .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .lista-imoveis-grid .row > [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .lista-imoveis-grid .card .lista-imovel-img,
    .lista-imoveis-grid .card .bg-image {
        height: 160px;
        min-height: 140px;
    }
    .lista-imoveis-grid .card .card-title {
        font-size: 1.05rem;
    }
}

/* ===== Conteúdo abaixo (cards legados) ===== */
.apresentacao-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.apresentacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-imagem {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-conteudo {
    padding: 1.5rem;
}

.card-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.card-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-preco {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.em-destaque {
    border: 2px solid var(--accent);
}

.em-destaque .card-titulo {
    color: var(--accent);
}

/* ===== RESPONSIVIDADE ===== */

/* ---- Tablet e celular: campo e dropdown adaptados ---- */
@media (max-width: 768px) {
    #bannerHome {
        min-height: 350px;
        padding: 0.75rem 0.5rem;
    }

    #bannerHome .search-wrap {
        padding: 0 1rem;
        max-width: 100%;
    }

    #bannerHome .select2-selection--single {
        min-height: 52px;
        padding: 0 1rem 0 2.75rem;
        border-radius: 10px;
    }

    #bannerHome .select2-selection__rendered::before {
        left: 0.9rem;
        width: 18px;
        height: 18px;
    }

    .select2-dropdown {
        max-width: 100% !important;
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
        width: calc(100% - 1rem) !important;
        border-radius: 10px !important;
        max-height: 85vh;
        overflow: hidden;
    }

    .select2-results__options {
        max-height: min(70vh, 400px);
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .select2-results__option {
        min-height: 48px;
        padding: 0 1rem;
    }

    .select2-search--dropdown .select2-search__field {
        min-height: 48px;
        padding: 0.85rem 1rem 0.85rem 2.5rem !important;
        margin: 0 0.75rem 0.5rem !important;
        width: calc(100% - 1.5rem) !important;
    }

    .s2-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .s2-price {
        text-align: left;
        margin-top: 0.25rem;
        min-width: auto;
    }

    .s2-title {
        font-size: 0.9375rem;
    }

    .s2-meta-item,
    .s2-info {
        font-size: 0.75rem;
    }
}

/* ---- Celular (telas pequenas): toque fácil e layout compacto ---- */
@media (max-width: 576px) {
    #bannerHome {
        min-height: 300px;
        padding: 0.5rem 0.25rem;
    }

    #bannerHome .search-wrap {
        max-width: 100%;
        padding: 0 0.5rem;
        text-align: center;
    }

    #bannerHome .select2-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    #bannerHome .select2-selection--single {
        min-height: 50px;
        padding: 0 0.75rem 0 2.5rem;
        border-radius: 10px;
    }

    #bannerHome .select2-selection__rendered {
        font-size: 0.9375rem;
    }

    #bannerHome .select2-selection__rendered::before {
        left: 0.85rem;
        width: 16px;
        height: 16px;
    }

    .select2-dropdown {
        width: calc(100% - 1rem) !important;
        max-width: 100% !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 10px;
        max-height: 80vh;
    }

    .select2-results__options {
        max-height: min(65vh, 360px);
    }

    .select2-results__option {
        padding: 0 0.75rem;
        min-height: 48px;
    }

    .s2-item {
        padding: 0.6rem 0;
    }

    .s2-title {
        font-size: 0.9rem;
    }

    .s2-price {
        min-width: auto;
        font-size: 0.9375rem;
    }

    .select2-search--dropdown .select2-search__field,
    .select2-search__field {
        font-size: 1rem !important;
        min-height: 48px;
        padding: 0.8rem 0.75rem 0.8rem 2.25rem !important;
        margin: 0 0.5rem 0.5rem !important;
        width: calc(100% - 1rem) !important;
    }

    /*
        EXIBIR LISTA DE IMVOEL
    */

    .hover-lift {
        transform: none !important;
    }
    .fs-5 {
        font-size: 1.1rem !important;
    }

    /*
        imvoel em destaque
    */
    .imovel-destaque {
        margin: 1rem auto;
    }
    .imovel-destaque-carousel-wrap {
        aspect-ratio: 4/3;
        min-height: 240px;
    }
    .imovel-destaque-titulo {
        font-size: 1.1rem;
    }
    .imovel-destaque:hover {
        transform: none;
    }
    .descricao {
        font-size: 0.95rem;
    }
    .bg-accent {
        font-size: 1rem !important;
        padding: 0.5rem 1rem !important;
    }
}

/* Transições */
.select2-container,
.select2-selection--single {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*
    EXIBICAO IMOVEL
*/
/* Fundo de imagem com aspecto consistente */
.bg-image {
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

/* Efeito de elevação no hover */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px !important;
    overflow: hidden;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Indicadores do carrossel */
.carousel-indicators button {
    width: 8px;
    height: 8px;
    opacity: 0.6;
    background: #aaa;
    border: 2px solid white;
}

.carousel-indicators .active {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #0d6efd;
}

/* Ícones Font Awesome (recomendado) */
.card-body i.fas {
    font-size: 0.85rem;
    color: #198754;
}

/*
    IMVOEL EM DESTAQUE
*/
/* Garante que o box-sizing seja consistente */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ===== Imóvel em Destaque ===== */
.imovel-destaque {
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.imovel-destaque:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.imovel-destaque-titulo {
    font-size: 1.25rem;
    color: #5a5a5a;
}

/* Carrossel imóvel em destaque: proporção fixa e responsiva */
.imovel-destaque-carousel-col {
    position: relative;
}

.imovel-destaque-carousel-wrap {
    aspect-ratio: 4/3;
    min-height: 320px;
    overflow: hidden;
}

.imovel-destaque-carousel-wrap .carousel {
    height: 100%;
}

.imovel-destaque-carousel-wrap .carousel-inner,
.imovel-destaque-carousel-wrap .carousel-item {
    height: 100%;
}

.imovel-destaque-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Imagem com object-fit */
.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

/* Botão de destaque (dourado) */
.btn-accent {
    background-color: #b59855 !important;
    border-color: #b59855 !important;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #a08540 !important;
    border-color: #a08540 !important;
    transform: translateY(-2px);
}

/* Badge com gradiente */
.bg-gradient {
    background: linear-gradient(to right, #b59855, #a08540);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
}

/* Indicadores do carrossel */
.carousel-indicators [type="button"] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.6;
    background: #aaa;
    border: 2px solid white;
    transition: all 0.2s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background: #b59855;
    transform: scale(1.2);
}

/* Controles do carrossel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #b59855 !important;
    transition: all 0.3s ease;
}

/* Preço em destaque */
.bg-accent {
    background-color: #b59855 !important;
}

/* Responsividade */
@media (max-width: 992px) {
    .imovel-destaque {
        margin: 1.5rem auto;
        border-radius: 12px;
    }
    .imovel-destaque-carousel-wrap {
        min-height: 280px;
    }
    .imovel-destaque-titulo {
        font-size: 1.15rem;
    }
    .btn-accent, .btn-outline-dark {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}



/* Card principal */
.card {
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow);
}

/* Título do imóvel */
.card-title {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: var(--avilla-accent);
}

/* Subtítulo (bairro/cidade) */
.card-body .text-muted {
    color: var(--text-muted) !important;
    font-size: 0.85rem;
}

/* Badge de categoria */
.badge {
    background-color: var(--avilla-accent);
    color: white;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Preço do imóvel */
.text-success {
    color: var(--avilla-accent) !important;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Ícones da lista (área de lazer, tipo, etc.) */
.card-body i.fas {
    color: var(--avilla-accent);
    font-size: 0.9rem;
}

/* Lista de itens (tipo de imóvel, área de lazer) */
.list-unstyled li {
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Botão de detalhes */
.btn-outline-secondary {
    border-color: var(--avilla-accent);
    color: var(--avilla-accent);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-outline-secondary:hover {
    background-color: var(--avilla-accent);
    color: white;
    transform: translateY(-2px);
}

/* Carrossel - Controles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--avilla-accent) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--avilla-accent-hover) !important;
    transform: scale(1.1);
}

/* Indicadores do carrossel */
.carousel-indicators [type="button"] {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 0.6;
    border: 2px solid white;
    transition: all 0.2s ease;
}

.carousel-indicators .active {
    background: var(--avilla-accent) !important;
    opacity: 1;
    transform: scale(1.2);
}

/* Overlay opcional na imagem (melhora leitura) */
.bg-image::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%) !important;
}

/* Responsividade refinada */
@media (max-width: 768px) {
    .text-success {
        font-size: 1.1rem;
    }
    .card-title {
        font-size: 0.95rem;
    }
    .btn-outline-secondary {
        font-size: 0.85rem;
    }
}