* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--body-bg);
    color: var(--text-color);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.page-shell {
    min-height: 100vh;
    padding: 0 16px 40px;
}

.page-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-section {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border: 0;
    outline: 0;
    box-shadow: none;
    user-select: none;
    -webkit-user-drag: none;
}

.blocks-section {
    position: relative;
    z-index: 2;
    margin-top: calc(var(--hero-overlap-desktop) * -1);
}

.blocks-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.block-card {
    display: block;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    transition: transform .22s ease;
    will-change: transform;
}

.block-card:hover {
    transform: translateY(-4px);
}

.block-card:hover .block-image {
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.09));
}

.block-card:active,
.block-card.is-pressed {
    transform: scale(.985);
}

.block-image {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.09));
    transition: filter .22s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.about-section {
    margin-top: 32px;
    padding: 24px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.section-title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
}

.about-content {
    font-size: 16px;
    line-height: 1.7;
}

.page-footer {
    padding: 24px 8px 10px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.location-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.block-toggle-card {
    padding: 0;
    width: 100%;
    cursor: pointer;
    appearance: none;
}

.locations-panel {
    margin-top: 10px;
    padding: 14px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.locations-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.location-unit-button {
    border: 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.location-unit-button:hover {
    transform: translateY(-1px);
    background: #e5e7eb;
}

.location-unit-button.is-active {
    background: #dbeafe;
}

.location-map-box iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 14px;
}

.content-list-panel {
    margin-top: 10px;
    padding: 14px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.content-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.content-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    border-color: rgba(0,0,0,.10);
}

.content-list-item-image {
    width: 84px;
    min-width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.content-list-item-body {
    flex: 1;
    min-width: 0;
}

.content-list-item-title {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
    color: #111827;
}

.content-list-item-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

@media (max-width: 768px) {
    .content-list-panel {
        margin-top: 8px;
        padding: 12px;
        border-radius: 16px;
    }

    .content-list-item {
        gap: 12px;
        padding: 10px;
    }

    .content-list-item-image {
        width: 72px;
        min-width: 72px;
        height: 72px;
        border-radius: 12px;
    }

    .content-list-item-title {
        font-size: 16px;
    }

    .content-list-item-description {
        font-size: 13px;
    }
    .dynamic-panel {
    margin-top: 10px;
    }
}





/* configuração MOBILE */

@media (max-width: 768px) {
    .page-shell {
        padding: 0 0px 28px;
    }

    .blocks-section {
        margin-top: calc(var(--hero-overlap-mobile) * -1);
    }

    .blocks-list {
        gap: 8px;
    }

    .about-section {
        margin-top: 26px;
        padding: 20px;
        border-radius: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-content {
        font-size: 15px;
    }

    .locations-panel {
        padding: 12px 12px 14px;
    }

    .location-map-box iframe {
        height: 260px;
    }
    .locations-panel {
        margin-top: 8px;
        padding: 12px;
        border-radius: 16px;
    }

    .location-map-box iframe {
        height: 260px;
    }
}


