
.container {
    width: 80%;
    max-width: 600px;
}

.content {
    height: 800px;
    overflow-y: auto;
}

    .day {
        margin-bottom: 16px;
    }
    .day h3 {
        margin: 0 0 8px;
        font-size: 1.2rem;
        color: #333;
    }
    .day ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .day ul li {
        margin: 4px 0;
        padding: 8px;
        background: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
.capelas-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 84px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0; /* ISSO É CRUCIAL */

    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;

    font-size: 1.4rem;
    cursor: pointer;
}

.capela-nome {
    flex: 1;                 /* ocupa o espaço do meio */
    max-width: 600px;        /* trava expansão */
    text-align: center;
    padding: 0 1rem;
}
.capelas-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.capelas-mapa {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.capelas-mapa iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
}


.nav-btn:hover {
    opacity: 0.85;
}


@media (max-width: 768px) {
    
    .capela-nome {
        flex: none;
        width: 60%;
    }
    .capelas-mapa iframe {
        height: 300px;
    }
}
