.gradient-overlay {
    /* position: absolute; */
    /* text-align: center; */
    color: black;
}

/* Centered text */
.centered {
    position: absolute;
    font-size: 40px;
    font-weight: bold;
    top: 30%;
    left: 50%;
    letter-spacing: -1px;
    color: white;
    text-align: center;
    transform: translate(-50%, -50%);
}

.city-filter-row h4 {
    width: auto !important;
    flex-shrink: 0;
}
/* Container externo para centralização */
.city-filter-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Container do dropdown */
.city-dropdown {
    width: 360px;
    max-width: 500px; /* limita o tamanho do select */
    font-family: system-ui, sans-serif;
    color: #fff;
    position: relative;
}


/* Wrapper do título + select */
.city-filter {
    display: flex;
    flex-direction: column;   /* mobile: um abaixo do outro */
    align-items: center;
    gap: 0px;
}

/* Desktop: coloca lado a lado e aproxima */
@media (min-width: 768px) {
    .city-filter {
        flex-direction: row;
        align-items: center;
        justify-content: center; /* fica tudo colado à esquerda */
        gap: 50px;                   /* espaço entre h4 e select */
    }
}

.city-option {
    position: relative;
}
.city-option::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 99999;
    cursor: pointer;
}

/* Garante que nenhum dos dois ocupe 100% da largura */
.city-filter h4,
.city-filter .city-dropdown {
    flex: 0 0 auto;
}

/* Cabeçalho / item selecionado */
.city-dropdown summary {
    padding: 14px 16px;
    cursor: pointer;
    background: linear-gradient(to right, #163c7b, #11356f);
    border-radius: 4px;
    list-style: none;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove o triângulo default */
.city-dropdown summary::-webkit-details-marker {
    display: none;
}

/* Adiciona a seta personalizada */
.city-dropdown summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.25s;
    opacity: 0.9;
}

/* Seta vira para cima */
.city-dropdown[open] summary::after {
    transform: rotate(-135deg);
}

.city-list {
    position: absolute;
    top: calc(100% + 4px); /* abre logo abaixo do summary */
    left: 0;
    right: 0;

    margin: 0;
    padding: 0;
    list-style: none;

    background: #08285b;
    max-height: 250px; /* scroll */
    overflow-y: auto;

    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0,0,0,.45);

    z-index: 9999; /* fica por cima */
}

/* Itens do dropdown */
.city-list li a {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    background: #062048;
}

/* Hover */
.city-list li a:hover {
    background: #c8ab37;
}

/* Badge (quantidade de eventos) */
.badge-city {
    background: #ffffff22;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    font-weight: bold;
}

/* Scrollbar estilizada */
.city-list::-webkit-scrollbar {
    width: 6px;
}
.city-list::-webkit-scrollbar-track {
    background: #062048;
}
.city-list::-webkit-scrollbar-thumb {
    background: #0c3c8e;
    border-radius: 10px;
}

summary:hover {
    background: #0c3c8e;
}

.bg-blur-effect {
    position: relative;
    overflow: hidden;
}

.bg-blur-effect::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: inherit;
    background-size: cover;
    filter: blur(30px) brightness(0.7);
    transform: scale(1.1);
    z-index: 0;
}

.bg-blur-effect > * {
    position: relative;
    z-index: 1;
}


/* Seção Sobre Farol922 */
.farol-about {
    background-color: #F5F6FA;
    border-top: 4px solid #C79827; /* dourado */
}

/* Cabeçalho */
.farol-about .farol-kicker {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: #C79827;
}

.farol-about .farol-title {
    color: #0C285C;
}

.farol-about .farol-text-muted {
    color: #7A7A7A;
}

/* Texto principal */
.farol-about .farol-paragraph {
    color: #3A3A3A;
    line-height: 1.6;
}

/* Card lateral */
.farol-about .farol-card {
    border: none;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-radius: 10px;
}

.farol-about .farol-card-title,
.farol-about .farol-card-subtitle {
    color: #C79827;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.09em;
}

.farol-about .farol-list {
    color: #3A3A3A;
}

/* Botões */
.farol-about .farol-btn-primary {
    background-color: #0C285C;
    border-color: #0C285C;
    color: #ffffff;
}

.farol-about .farol-btn-primary:hover {
    background-color: #0A1F4A;
    border-color: #0A1F4A;
    color: #ffffff;
}

.farol-about .farol-btn-outline {
    border-color: #0C285C;
    color: #0C285C;
    background-color: transparent;
}

.farol-about .farol-btn-outline:hover {
    background-color: #0C285C;
    color: #ffffff;
}

/* Seletor de cidades – desktop */
.farol-city-selector {
    gap: 0.25rem;
}

.farol-city-title {
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 1.25rem;
    color: #0C285C;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

/* Botões de cidade */
.farol-city-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.45rem 1rem;
    border-radius: 5px; /* antes 999px */
    /* background-color: #c8ab37; antes 0.06 */
    background-color: #77a7ff86; /* antes 0.06 */
    border: 1px solid #0c285c40;
    color: #000000;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
}

.farol-city-pill:hover {
    background-color: #0C285C;
    color: #ffffff;
    border-color: #0C285C;
}

/* "Todas as cidades" mantém destaque */
.farol-city-pill-all {
    background-color: #0C285C;
    color: #ffffff;
    border-color: #0C285C;
}


.farol-city-pill-all:hover {
    background-color: #0A1F4A;
    border-color: #0A1F4A;
}

.farol-city-pill-all-important{
    background-color: #80611b;
    border-color: #0A1F4A;
}

.farol-city-badge {
    display: inline-block;
    padding: 0.2rem 0.45rem 0.05rem 0.45rem;
    border-radius: 4px;
    background-color: #8490f5;
    color: #000000;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Seletor de cidades – mobile */
.farol-city-selector-mobile .farol-city-title {
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 1.25rem;
    color: #0C285C;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.farol-city-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(12, 40, 92, 0.06);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.85rem;
}

.farol-city-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.75rem;
    border-radius: 5px;
    text-decoration: none;
    color: #3A3A3A;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.farol-city-option:hover {
    background-color: rgba(12, 40, 92, 0.06);
    color: #0C285C;
}

/* Nome da cidade atual */
.farol-city-current {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 2rem; /* antes ~1rem */
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0C285C;
    letter-spacing: -0.02em;
}



/* Card de evento Farol – container */
.farol-event-card .singlelisting-item {
    border-radius: 14px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.farol-event-card .singlelisting-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Imagem */
.farol-event-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Badge de data */
.farol-event-date {
    background-color: #C79827;
    color: #ffffff;
    font-size: 1.0rem;
    border-radius: 5px;
    padding-inline: 0.6rem;
}

/* Título e texto */
.farol-event-title-link {
    color: #0C285C;
    font-size: 1.2rem;
}

.farol-event-title-link:hover {
    color: #0A1F4A;
    text-decoration: none;
}

.farol-event-excerpt a {
    font-size: 0.85rem;
    color: #3A3A3A;
    text-decoration: none;
}

.farol-event-excerpt a:hover {
    color: #0C285C;
}

/* Meta (cidade, categoria) */
.farol-event-meta {
    font-size: 0.8rem;
    color: #7A7A7A;
}

/* Rodapé do card */
.farol-event-footer {
    border-top: 1px solid #F0F0F0;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

/* Local */
.farol-event-location {
    font-size: 0.8rem;
    color: #3A3A3A;
}

.farol-event-location-icon {
    background-color: rgba(12,40,92,0.08);
    color: #0C285C;
    border-radius: 999px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Botão adicionar à agenda */
.farol-event-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #0C285C;
    color: #0C285C;
    text-decoration: none;
    font-size: 0.9rem;
}

.farol-event-add:hover {
    background-color: #0C285C;
    color: #ffffff;
}


.farol-text-muted {
    color: #7A7A7A;
}
