:root {
    --cl-primary: #89398f;
    --cl-primary-dark: #6f2e74;
    --cl-primary-soft: rgba(137, 57, 143, 0.12);
    --cl-text: #2b2b2b;
    --cl-text-muted: #7a7a7a;
    --cl-text-label: #888888;
    --cl-bg: #ffffff;
    --cl-bg-soft: #faf8f6;
    --cl-bg-card: #f3ece6;
    --cl-border: #e8e8e8;
    --cl-border-strong: #d9d9d9;
    --cl-shadow: 0 8px 32px rgba(43, 43, 43, 0.06);
    --cl-shadow-sm: 0 2px 12px rgba(43, 43, 43, 0.05);
    --cl-radius: 16px;
    --cl-radius-sm: 12px;
    --cl-radius-pill: 999px;
    --cl-navbar-height: 72px;
    --cl-font: 'Montserrat', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--cl-font);
    font-weight: 400;
    color: var(--cl-text);
    background: var(--cl-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cl-container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.cl-container-narrow {
    width: min(480px, calc(100% - 2rem));
    margin: 0 auto;
}

.cl-text-bold {
    font-weight: 700;
}

.cl-text-regular {
    font-weight: 400;
}

.cl-text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cl-text-primary {
    color: var(--cl-primary);
}

.cl-text-muted {
    color: var(--cl-text-muted);
}

.cl-section-title {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cl-text);
}

.cl-step-header {
    margin: 0 0 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: var(--cl-text-muted);
}

.cl-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0.75rem;
}

.cl-stepper-track {
    flex: 1;
    max-width: 72px;
    height: 2px;
    background: var(--cl-border);
}

.cl-stepper-track.is-done,
.cl-stepper-track.is-active {
    background: var(--cl-primary);
}

.cl-stepper-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cl-border);
    flex-shrink: 0;
}

.cl-stepper-node.is-done,
.cl-stepper-node.is-active {
    background: var(--cl-primary);
}

.cl-stepper-labels {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--cl-text-muted);
}

.cl-stepper-labels span.is-active {
    color: var(--cl-primary);
    font-weight: 700;
}

.cl-card {
    background: var(--cl-bg);
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-radius);
    box-shadow: var(--cl-shadow-sm);
}

.cl-card-surface {
    background: var(--cl-bg-card);
    border: none;
    border-radius: var(--cl-radius);
    padding: 1.25rem 1.5rem;
}

.cl-summary-list {
    display: flex;
    flex-direction: column;
}

.cl-summary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
    font-size: 0.9375rem;
}

.cl-summary-row:last-child {
    border-bottom: none;
}

.cl-summary-label {
    font-weight: 400;
    color: var(--cl-text-label);
}

.cl-summary-value {
    font-weight: 700;
    color: var(--cl-text);
    text-align: right;
}

.cl-summary-value.is-primary {
    color: var(--cl-primary);
}

.cl-input,
.cl-select,
.cl-textarea {
    width: 100%;
    padding: 0 1rem;
    border: 1px solid var(--cl-border-strong);
    border-radius: var(--cl-radius-sm);
    font-family: var(--cl-font);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--cl-text);
    background: #fff;
}

.cl-input,
.cl-select {
    height: 52px;
}

.cl-textarea {
    min-height: 120px;
    padding: 1rem;
    resize: vertical;
}

.cl-input::placeholder,
.cl-textarea::placeholder {
    color: var(--cl-text-muted);
    font-weight: 400;
}

.cl-input:focus,
.cl-select:focus,
.cl-textarea:focus {
    outline: 2px solid var(--cl-primary-soft);
    border-color: var(--cl-primary);
}

.cl-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--cl-text-muted);
}

.cl-checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--cl-primary);
}

.cl-checkbox-row a {
    color: var(--cl-primary);
    font-weight: 700;
    text-decoration: underline;
}

.cl-btn-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cl-btn-row .cl-btn {
    flex: 1;
}

.cl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 52px;
    padding: 0 1.5rem;
    border: 1px solid transparent;
    border-radius: var(--cl-radius-pill);
    font-family: var(--cl-font);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cl-btn-primary {
    background: var(--cl-primary);
    color: #fff;
}

.cl-btn-primary:hover {
    background: var(--cl-primary-dark);
}

.cl-btn-outline {
    background: #fff;
    border-color: var(--cl-border-strong);
    color: var(--cl-text-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.cl-btn-outline:hover {
    border-color: var(--cl-primary);
    color: var(--cl-primary);
}

.cl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cl-navbar {
    background: var(--cl-primary);
    box-shadow: var(--cl-shadow);
}

.cl-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--cl-navbar-height);
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.cl-brand-logo {
    height: 40px;
    width: auto;
}

.cl-brand-logo-light {
    display: block;
    filter: brightness(0) invert(1);
}

.cl-brand-logo-dark {
    display: none;
}

.cl-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cl-icon-btn,
.cl-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cl-icon-btn:hover,
.cl-menu-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cl-icon-btn i,
.cl-drawer-social i {
    font-size: 1.25rem;
}

.cl-page-home #clSearchToggle {
    display: none;
}

.cl-lang-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--cl-radius-pill);
    padding: 0.2rem;
}

.cl-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 0.65rem;
    border-radius: var(--cl-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, color 0.2s ease;
}

.cl-lang-btn.is-active {
    background: #fff;
    color: var(--cl-primary);
}

.cl-lang-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
}

.cl-menu-btn {
    flex-direction: column;
    gap: 5px;
}

.cl-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cl-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.cl-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.cl-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.cl-search-panel {
    display: none;
    background: #fff;
    border-top: 1px solid var(--cl-border);
}

.cl-search-panel.is-open {
    display: block;
}

.cl-search-panel-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.25rem 0 1.5rem;
}

.cl-search-panel .cl-home-search {
    width: 100%;
    max-width: 580px;
}

.cl-search-close {
    position: absolute;
    top: 0.75rem;
    right: 0;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--cl-text-muted);
    cursor: pointer;
}

.cl-search-form {
    display: grid;
    gap: 0.75rem;
    max-width: 560px;
}

.cl-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(43, 43, 43, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
}

.cl-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.cl-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 100%);
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1002;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.cl-drawer.is-open {
    transform: translateX(0);
}

.cl-drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: var(--cl-text-muted);
    cursor: pointer;
}

.cl-drawer-brand {
    display: flex;
    justify-content: center;
    margin: 2rem 0 2.5rem;
}

.cl-drawer-brand img {
    height: 64px;
    width: auto;
}

.cl-drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.cl-drawer-menu a {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cl-text);
}

.cl-drawer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.cl-drawer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cl-bg-soft);
    color: var(--cl-primary);
    font-size: 1.25rem;
}

.cl-main {
    min-height: calc(100vh - var(--cl-navbar-height) - 280px);
}

.cl-home-hero {
    padding: 2rem 1.25rem 1.75rem;
    background: var(--cl-bg);
    text-align: center;
}

.cl-home-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.cl-home-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #6B2B78;
}

.cl-home-subtitle {
    margin: 0 0 1.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #6B6B6B;
}

.cl-home-search {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto 1.25rem;
    padding: 8px 8px 8px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(43, 43, 43, 0.04);
}

.cl-home-search-activity {
    flex: 1 1 0%;
    min-width: 0;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.875rem;
    color: #222222;
    background: transparent;
}

.cl-home-search-activity::placeholder {
    color: #B0B0B0;
}

.cl-home-search-divider {
    flex-shrink: 0;
    width: 1px;
    height: 22px;
    margin: 0 14px;
    background: #E5E5E5;
}

.cl-home-search-location {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cl-home-location-pin {
    flex-shrink: 0;
    color: #8B2FA8;
}

.cl-home-search-where {
    width: 72px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.875rem;
    color: #555555;
    background: transparent;
}

.cl-home-search-where::placeholder {
    color: #B0B0B0;
}

.cl-location-suggestions {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: auto;
    min-width: 200px;
    z-index: 40;
    padding: 6px 0;
    border: 0.5px solid #dddddd;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: 240px;
    overflow-y: auto;
}

.cl-location-suggestion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.cl-location-suggestion:hover {
    background: #f6f0f8;
}

.cl-location-suggestion-name {
    font-size: 0.8125rem;
    color: #222222;
}

.cl-location-suggestion-meta {
    font-size: 0.6875rem;
    color: #888888;
}

.cl-home-geo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    border: none;
    background: none;
    color: #8B2FA8;
    cursor: pointer;
}

.cl-home-geo-btn.is-loading {
    color: #aaaaaa;
}

.cl-home-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border: none;
    border-radius: 50%;
    background: #8B2FA8;
    cursor: pointer;
}

.cl-home-search-submit:hover {
    background: #7a2894;
}

.cl-home-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.cl-home-filter-btn {
    padding: 0.5rem 1.15rem;
    border: 1px solid #E0E0E0;
    border-radius: 999px;
    background: #ffffff;
    color: #333333;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cl-home-filter-btn:hover {
    border-color: #8B2FA8;
    color: #8B2FA8;
}

.cl-home-filter-btn.is-active {
    border-color: #8B2FA8;
    background: #8B2FA8;
    color: #ffffff;
}

.cl-home-zones {
    padding: 0 0 2rem;
    background: var(--cl-bg);
}

.cl-home-zones-inner {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.cl-home-zones-title {
    margin: 0 0 0.8rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaaaaa;
}

.cl-distritos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cl-distrito-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 12px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background-color: #4A2D7A;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.cl-distrito-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 55%);
}

.cl-distrito-card-label {
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.cl-hero {
    padding: 4.5rem 0 5rem;
    background: var(--cl-bg-soft);
}

.cl-hero-title {
    margin: 0 auto;
    max-width: 720px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cl-primary);
    text-align: center;
}

.cl-footer {
    background: var(--cl-primary);
    color: #fff;
}

.cl-footer-top {
    padding: 3rem 0 2rem;
}

.cl-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cl-footer-title {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cl-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.cl-footer-links a,
.cl-footer-contact a {
    color: #fff;
    opacity: 0.92;
    font-weight: 400;
}

.cl-footer-links a:hover,
.cl-footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

.cl-footer-contact {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 400;
}

.cl-footer-contact i {
    font-size: 1.125rem;
}

.cl-footer-bottom {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cl-footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cl-footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.cl-footer-copy {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .cl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cl-home-hero {
        padding: 3.5rem 2.5rem 2.75rem;
    }

    .cl-home-title {
        font-size: 2rem;
        font-weight: 700;
    }

    .cl-home-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cl-home-search {
        max-width: 640px;
        padding: 10px 10px 10px 24px;
    }

    .cl-home-search-activity {
        font-size: 0.9375rem;
    }

    .cl-home-search-where {
        width: 100px;
        font-size: 0.9375rem;
    }

    .cl-home-search-submit {
        width: 44px;
        height: 44px;
    }

    .cl-home-filter-btn {
        padding: 0.55rem 1.35rem;
        font-size: 0.875rem;
    }

    .cl-home-zones {
        padding: 0 0 3.75rem;
    }

    .cl-distritos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 14px;
    }

    .cl-distrito-card {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .cl-distrito-card-label {
        font-size: 1rem;
    }
}

.cl-distrito-page {
    background: #ffffff;
    padding-bottom: 2.5rem;
}

.cl-distrito-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1rem 1rem;
    text-align: center;
    border-bottom: 0.5px solid #f0eaf5;
}

.cl-distrito-intro {
    margin: 0 0 4px;
    font-size: 0.75rem;
    color: #888888;
}

.cl-distrito-name {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 700;
    color: #8B2FA8;
}

.cl-distrito-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 0 0;
}

.cl-distrito-empty {
    margin: 0;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: #aaaaaa;
}

.cl-categoria-section {
    margin-bottom: 4px;
}

.cl-categoria-title {
    margin: 0;
    padding: 14px 16px 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cl-subcategoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    padding: 4px 16px 16px;
}

.cl-subcategoria-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 0.5px solid #ede8f5;
    background: #fafafa;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cl-subcategoria-card:hover {
    border-color: #d9cce6;
    background: #f5f2f8;
}

.cl-subcategoria-thumb {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.cl-subcategoria-text {
    min-width: 0;
}

.cl-subcategoria-name {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #222222;
}

.cl-subcategoria-count {
    margin: 2px 0 0;
    font-size: 0.75rem;
    color: #aaaaaa;
}

@media (min-width: 992px) {
    .cl-distrito-header {
        padding: 2rem 2.5rem 1.25rem;
    }

    .cl-distrito-intro {
        font-size: 0.875rem;
    }

    .cl-distrito-name {
        font-size: 2rem;
    }

    .cl-categoria-title {
        padding: 14px 40px 8px;
    }

    .cl-subcategoria-grid {
        padding: 4px 40px 16px;
    }

    .cl-distrito-empty {
        padding: 2.5rem 2.5rem;
    }
}

.cl-subcat-page {
    background: #ffffff;
    padding-bottom: 2rem;
}

.cl-subcat-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1rem 0.875rem;
    border-bottom: 0.5px solid #f0eaf5;
}

.cl-subcat-title {
    margin: 0 0 2px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222222;
}

.cl-subcat-district {
    margin: 0;
    font-size: 0.8125rem;
    color: #888888;
}

.cl-subcat-find {
    margin: 8px 0 0;
    font-size: 0.75rem;
    color: #777777;
    line-height: 1.6;
    font-style: italic;
}

.cl-cidade-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cl-cidade-filters::-webkit-scrollbar {
    display: none;
}

.cl-cidade-filter-btn {
    flex-shrink: 0;
    height: 34px;
    padding: 0 14px;
    border: 0.5px solid #e5dceb;
    border-radius: 999px;
    background: #faf7fc;
    color: #666666;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cl-cidade-filter-btn:hover {
    border-color: #d2c0e0;
    color: #8B2FA8;
}

.cl-cidade-filter-btn.is-active {
    background: #8B2FA8;
    border-color: #8B2FA8;
    color: #ffffff;
}

.cl-subcat-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 0;
}

.cl-subcat-empty {
    margin: 0;
    padding: 3rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: #aaaaaa;
}

.cl-cidade-section {
    margin-bottom: 8px;
}

.cl-cidade-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 8px;
}

.cl-cidade-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3e5f5;
}

.cl-cidade-name {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #222222;
}

.cl-cidade-count {
    margin: 0;
    font-size: 0.75rem;
    color: #aaaaaa;
}

.cl-atividade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px 8px;
}

.cl-cidade-divider {
    height: 0.5px;
    margin: 4px 0;
    background: #f0eaf5;
}

.cl-atividade-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
}

.cl-atividade-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 170px;
    padding: 14px 14px 0;
    background-size: cover;
    background-position: center;
}

.cl-atividade-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.44));
}

.cl-atividade-hero-text {
    position: relative;
    z-index: 1;
}

.cl-atividade-hero-title {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.cl-atividade-hero-subtitle {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.625rem;
}

.cl-atividade-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #8B2FA8;
}

.cl-atividade-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-size: 0.5625rem;
    font-weight: 700;
    color: #6A1B9A;
}

.cl-atividade-bar-divider {
    width: 0.5px;
    height: 22px;
    background: rgba(255, 255, 255, 0.3);
}

.cl-atividade-bar-text {
    min-width: 0;
}

.cl-atividade-bar-city {
    margin: 0;
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cl-atividade-bar-plan {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.625rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cl-atividade-footer {
    padding: 8px 12px;
    background: #ffffff;
}

.cl-atividade-footer-name {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #222222;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cl-atividade-footer-price {
    margin: 2px 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8B2FA8;
}

@media (min-width: 992px) {
    .cl-subcat-header {
        padding: 2rem 2.5rem 1.25rem;
    }

    .cl-subcat-title {
        font-size: 1.75rem;
    }

    .cl-subcat-find {
        font-size: 0.8125rem;
    }

    .cl-subcat-body {
        padding: 1rem 0;
    }

    .cl-cidade-heading {
        padding: 16px 40px 10px;
    }

    .cl-cidade-name {
        font-size: 1.0625rem;
    }

    .cl-atividade-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0 40px 12px;
    }
}

.cl-atividade-page {
    background: #ffffff;
    padding: 1.25rem 1rem 3rem;
}

.cl-atividade-empty {
    margin: 0;
    padding: 3rem 1rem;
    text-align: center;
    color: #aaaaaa;
}

.cl-atividade-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.cl-atividade-detail-hero-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

.cl-atividade-detail-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.cl-atividade-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.45));
}

.cl-atividade-detail-hero-text {
    position: absolute;
    top: 20px;
    left: 18px;
    right: 18px;
    z-index: 1;
}

.cl-atividade-detail-hero-title {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.cl-atividade-detail-hero-subtitle {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
}

.cl-atividade-detail-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #8B2FA8;
}

.cl-atividade-detail-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 0.625rem;
    font-weight: 700;
    color: #6A1B9A;
}

.cl-atividade-detail-bar-divider {
    width: 0.5px;
    height: 28px;
    background: rgba(255, 255, 255, 0.3);
}

.cl-atividade-detail-bar-city {
    margin: 0;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
}

.cl-atividade-detail-bar-plan {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6875rem;
}

.cl-atividade-accordion {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cl-acc-item {
    border: 2px solid #ece7f5;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.cl-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
    border: none;
    background: #ffffff;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.cl-acc-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #222222;
}

.cl-acc-title {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: 1.3;
}

.cl-acc-header-left i {
    font-size: 1.0625rem;
    color: #2b2b2b;
}

.cl-faq-question {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.4;
}

.cl-faq-question + p,
.cl-acc-body-faq p {
    margin: 0 0 12px;
}

.cl-acc-chevron {
    font-size: 1rem;
    color: #bbbbbb;
    transition: transform 0.2s ease;
    display: inline-block;
}

.cl-acc-header.is-open .cl-acc-chevron {
    transform: rotate(180deg);
}

.cl-acc-body {
    display: none;
    padding: 0 16px 16px;
    font-size: 0.875rem;
    color: #555555;
    line-height: 1.6;
    border-top: 0.5px solid #f0eaf5;
    padding-top: 12px;
}

.cl-acc-body.is-open {
    display: block;
}

.cl-acc-body a {
    color: #8B2FA8;
    font-weight: 600;
}

.cl-acc-empty {
    margin: 0;
    color: #aaaaaa;
}

.cl-acc-map {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
}

.cl-acc-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: none;
}

.cl-atividade-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    padding: 14px 0;
    border: 1.5px solid #8B2FA8;
    border-radius: 999px;
    background: #ffffff;
    color: #8B2FA8;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.cl-atividade-contact-btn i {
    font-size: 1.0625rem;
}

.cl-atividade-sticky-title {
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222222;
}

.cl-atividade-ssr-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cl-atividade-sticky-partner {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cl-atividade-sticky-partner span {
    color: #8B2FA8;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.cl-atividade-plans-label {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cl-atividade-plans-list {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cl-atividade-plan-card {
    position: relative;
    border: 1.5px solid #ece7f5;
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    background: #ffffff;
    transition: border-color 0.15s ease;
}

.cl-atividade-plan-card.is-popular {
    margin-top: 8px;
}

.cl-atividade-plan-card.is-selected {
    border-color: #8B2FA8;
    border-width: 2px;
}

.cl-atividade-plan-badge {
    position: absolute;
    top: -10px;
    left: 14px;
    background: #8B2FA8;
    color: #ffffff;
    font-size: 0.625rem;
    padding: 3px 12px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.cl-atividade-plan-name {
    margin: 0 0 2px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #222222;
}

.cl-atividade-plan-desc {
    margin: 0;
    font-size: 0.75rem;
    color: #aaaaaa;
    line-height: 1.4;
}

.cl-atividade-schedule-label {
    margin-top: 0.5rem;
}

.cl-atividade-datas-horarios {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cl-weekday-group {
    border: 1px solid #ece7f5;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.cl-weekday-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    border: none;
    background: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #222222;
    text-align: left;
}

.cl-weekday-chevron {
    font-size: 0.9375rem;
    color: #bbbbbb;
    transition: transform 0.2s ease;
    display: inline-block;
}

.cl-weekday-header.is-open .cl-weekday-chevron {
    transform: rotate(180deg);
}

.cl-weekday-body {
    display: none;
    padding: 0 14px 12px;
    flex-direction: column;
    gap: 8px;
}

.cl-weekday-body.is-open {
    display: flex;
}

.cl-slot-row,
.cl-data-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: #333333;
    cursor: pointer;
}

.cl-data-row {
    border: 1px solid #ece7f5;
    border-radius: 12px;
    padding: 12px 14px;
    background: #ffffff;
}

.cl-slot-row input[type="checkbox"],
.cl-data-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8B2FA8;
    cursor: pointer;
    flex-shrink: 0;
}

.cl-slot-row input[type="checkbox"]:disabled,
.cl-data-row input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.cl-atividade-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cl-atividade-btn-primary,
.cl-atividade-btn-secondary {
    width: 100%;
    padding: 16px 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
}

.cl-atividade-btn-primary {
    background: #8B2FA8;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cl-atividade-btn-secondary {
    background: #ffffff;
    color: #8B2FA8;
    border: 1.5px solid #8B2FA8;
}

body.cl-modal-open {
    overflow: hidden;
}

.cl-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 30, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 1000;
}

.cl-modal-box {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.cl-modal-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 20px 12px;
    flex-shrink: 0;
}

.cl-modal-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    min-width: 44px;
}

.cl-modal-step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ece7f5;
    color: #aaaaaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.cl-modal-step.is-active .cl-modal-step-circle,
.cl-modal-step.is-done .cl-modal-step-circle {
    background: #8B2FA8;
    color: #ffffff;
}

.cl-modal-step-label {
    font-size: 0.5625rem;
    color: #bbbbbb;
    text-align: center;
    line-height: 1.2;
    max-width: 56px;
}

.cl-modal-step.is-active .cl-modal-step-label {
    color: #8B2FA8;
    font-weight: 700;
}

.cl-modal-step-line {
    flex: 1 1 auto;
    height: 2px;
    background: #ece7f5;
    margin: 13px 2px 0;
    min-width: 8px;
}

.cl-modal-step-line.is-done {
    background: #8B2FA8;
}

.cl-modal-body {
    padding: 8px 22px 8px;
    overflow-y: auto;
    flex: 1 1 auto;
}

.cl-modal-heading {
    margin: 0 0 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #222222;
}

.cl-modal-subheading {
    margin: -10px 0 16px;
    font-size: 0.8125rem;
    color: #999999;
}

.cl-modal-field {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cl-modal-field-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 2px;
}

.cl-modal-input,
.cl-modal-textarea {
    border: 1.5px solid #e8e4ef;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 0.875rem;
    color: #222222;
    outline: none;
    background: #ffffff;
}

.cl-modal-input:focus,
.cl-modal-textarea:focus {
    border-color: #8B2FA8;
}

.cl-modal-input.has-error {
    border-color: #d64545;
}

.cl-modal-textarea {
    resize: vertical;
    min-height: 72px;
}

.cl-modal-field-error {
    font-size: 0.6875rem;
    color: #d64545;
    min-height: 12px;
    display: block;
}

.cl-modal-submit-error {
    width: 100%;
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #d64545;
    text-align: center;
}

.cl-modal-plans-list,
.cl-modal-schedule-list {
    margin-bottom: 8px;
}

.cl-modal-summary-card {
    background: #f7f3fa;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.cl-modal-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.8125rem;
}

.cl-modal-summary-row + .cl-modal-summary-row {
    border-top: 0.5px solid #ece7f5;
}

.cl-modal-summary-label {
    color: #999999;
    flex-shrink: 0;
}

.cl-modal-summary-value {
    color: #222222;
    font-weight: 600;
    text-align: right;
}

.cl-modal-summary-value.is-price {
    color: #8B2FA8;
    font-weight: 700;
}

.cl-modal-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    color: #444444;
    cursor: pointer;
    margin: 4px 0 8px;
}

.cl-modal-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8B2FA8;
    flex-shrink: 0;
    margin-top: 1px;
}

.cl-modal-footer {
    display: flex;
    gap: 10px;
    padding: 12px 22px 22px;
    flex-shrink: 0;
}

.cl-modal-footer-success {
    flex-direction: column;
}

.cl-modal-btn-back,
.cl-modal-btn-next,
.cl-modal-btn-text {
    flex: 1 1 auto;
    padding: 14px 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
}

.cl-modal-btn-back {
    background: #f0eef3;
    color: #666666;
    border: none;
}

.cl-modal-btn-next {
    background: #8B2FA8;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cl-modal-btn-text {
    background: transparent;
    color: #888888;
    border: none;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.cl-modal-success {
    text-align: center;
    padding: 12px 0 8px;
}

.cl-modal-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #8B2FA8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cl-modal-success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222222;
    margin: 0 0 8px;
}

.cl-modal-success-message {
    font-size: 0.8125rem;
    color: #777777;
    margin: 0 0 18px;
    line-height: 1.5;
}

.cl-modal-success .cl-modal-summary-card {
    text-align: left;
}

@media (min-width: 992px) {
    .cl-atividade-page {
        padding: 2.5rem 2.5rem 5rem;
    }

    .cl-atividade-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .cl-atividade-detail-hero {
        height: 360px;
    }

    .cl-atividade-detail-hero-title {
        font-size: 1.375rem;
    }

    .cl-atividade-right {
        position: sticky;
        top: 80px;
    }

    .cl-atividade-sticky-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .cl-footer-grid {
        grid-template-columns: 1fr;
    }

    .cl-lang-switch {
        display: none;
    }

    .cl-btn-row {
        flex-direction: column;
    }
}

.cl-institucional-page {
    background: #ffffff;
    padding: 2rem 1rem 3rem;
}

.cl-institucional-inner {
    max-width: 760px;
    margin: 0 auto;
}

.cl-institucional-title {
    margin: 0 0 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
}

.cl-institucional-body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--cl-text);
}

.cl-institucional-body h1,
.cl-institucional-body h2,
.cl-institucional-body h3,
.cl-institucional-body h4 {
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.35;
}

.cl-institucional-body h1 { font-size: 1.5rem; }
.cl-institucional-body h2 { font-size: 1.25rem; }
.cl-institucional-body h3 { font-size: 1.125rem; }
.cl-institucional-body h4 { font-size: 1rem; }

.cl-institucional-body p {
    margin: 0 0 1rem;
}

.cl-institucional-body ul,
.cl-institucional-body ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
    list-style: revert;
}

.cl-institucional-body li {
    margin-bottom: 0.35rem;
}

.cl-institucional-body a {
    color: var(--cl-primary);
    text-decoration: underline;
}

.cl-institucional-body a:hover {
    color: var(--cl-primary-dark);
}

.cl-institucional-body strong {
    font-weight: 700;
}

.cl-institucional-body blockquote {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--cl-primary);
    background: var(--cl-bg-soft);
    color: var(--cl-text-muted);
}

@media (max-width: 575px) {
    .cl-institucional-title {
        font-size: 1.375rem;
    }
}

.cl-faq-page {
    background: #ffffff;
    padding: 2rem 1rem 3rem;
}

.cl-faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

.cl-faq-page-title {
    margin: 0 0 1.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
}

.cl-faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: faq-counter;
}

.cl-faq-item {
    margin: 0 0 1.75rem;
    counter-increment: faq-counter;
}

.cl-faq-item-question {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.45;
    text-transform: uppercase;
}

.cl-faq-item-question::before {
    content: counter(faq-counter) ". ";
}

.cl-faq-item-answer {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--cl-text);
}

.cl-faq-item-answer p {
    margin: 0 0 0.75rem;
}

.cl-faq-item-answer p:last-child {
    margin-bottom: 0;
}

.cl-faq-item-answer ul,
.cl-faq-item-answer ol {
    margin: 0 0 0.75rem;
    padding-left: 1.5rem;
    list-style: revert;
}

.cl-faq-item-answer a {
    color: var(--cl-primary);
    text-decoration: underline;
}

.cl-faq-item-answer a:hover {
    color: var(--cl-primary-dark);
}

@media (max-width: 575px) {
    .cl-faq-page-title {
        font-size: 1.375rem;
    }
}

.cl-blog-page {
    background: #ffffff;
    padding: 2rem 1rem 3rem;
}

.cl-blog-inner {
    max-width: 960px;
    margin: 0 auto;
}

.cl-blog-page-title {
    margin: 0 0 1.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
}

.cl-blog-empty {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--cl-text);
}

.cl-blog-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.cl-blog-card-link {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
    align-items: start;
}

.cl-blog-card-img-wrap {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
}

.cl-blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cl-blog-card-cat {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--cl-primary);
}

.cl-blog-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.35;
}

.cl-blog-card-date {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    color: #888888;
}

.cl-blog-card-excerpt {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--cl-text);
}

.cl-blog-artigo-page {
    background: #ffffff;
    padding: 2rem 1rem 3rem;
}

.cl-blog-artigo-inner {
    max-width: 760px;
    margin: 0 auto;
}

.cl-blog-artigo-back {
    margin: 0 0 1.25rem;
}

.cl-blog-artigo-back a {
    font-size: 0.875rem;
    color: var(--cl-primary);
    text-decoration: none;
}

.cl-blog-artigo-back a:hover {
    text-decoration: underline;
}

.cl-blog-artigo-cat {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--cl-primary);
}

.cl-blog-artigo-title {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
}

.cl-blog-artigo-date {
    display: block;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: #888888;
}

.cl-blog-artigo-cover-wrap {
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.cl-blog-artigo-cover {
    width: 100%;
    height: auto;
    display: block;
}

.cl-blog-artigo-body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--cl-text);
}

.cl-blog-artigo-body h1,
.cl-blog-artigo-body h2,
.cl-blog-artigo-body h3,
.cl-blog-artigo-body h4 {
    margin: 1.5rem 0 0.75rem;
    color: #222222;
    line-height: 1.35;
}

.cl-blog-artigo-body h1 { font-size: 1.5rem; }
.cl-blog-artigo-body h2 { font-size: 1.25rem; }
.cl-blog-artigo-body h3 { font-size: 1.125rem; }
.cl-blog-artigo-body h4 { font-size: 1rem; }

.cl-blog-artigo-body p {
    margin: 0 0 0.75rem;
}

.cl-blog-artigo-body ul,
.cl-blog-artigo-body ol {
    margin: 0 0 0.75rem;
    padding-left: 1.5rem;
    list-style: revert;
}

.cl-blog-artigo-body a {
    color: var(--cl-primary);
    text-decoration: underline;
}

.cl-blog-artigo-body a:hover {
    color: var(--cl-primary-dark);
}

.cl-blog-artigo-body strong {
    font-weight: 700;
}

.cl-blog-artigo-body blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--cl-primary);
    background: #f7f7f7;
}

@media (max-width: 575px) {
    .cl-blog-page-title,
    .cl-blog-artigo-title {
        font-size: 1.375rem;
    }

    .cl-blog-card-link {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.cl-notfound-page {
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(137, 57, 143, 0.1), transparent 70%),
        var(--cl-bg-soft);
    padding: 4rem 1rem 5rem;
    min-height: calc(70vh - var(--cl-navbar-height));
    display: flex;
    align-items: center;
}

.cl-notfound-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cl-notfound-code {
    margin: 0 0 0.5rem;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--cl-primary);
    letter-spacing: -0.04em;
}

.cl-notfound-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
}

.cl-notfound-text {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--cl-text-muted);
}

.cl-notfound-path {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--cl-radius-sm);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--cl-border);
    font-size: 0.8125rem;
    color: var(--cl-text-muted);
}

.cl-notfound-path code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.8125rem;
    color: var(--cl-text);
    word-break: break-all;
}

.cl-notfound-hint {
    margin: 0 0 1.75rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--cl-text-label);
}

.cl-notfound-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}

.cl-notfound-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 1.5rem;
    border-radius: var(--cl-radius-pill);
    background: var(--cl-primary);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cl-notfound-btn:hover {
    background: var(--cl-primary-dark);
    color: #ffffff;
}

.cl-notfound-btn--ghost {
    background: #ffffff;
    color: var(--cl-primary);
    border-color: rgba(137, 57, 143, 0.28);
}

.cl-notfound-btn--ghost:hover {
    background: var(--cl-primary-soft);
    color: var(--cl-primary-dark);
    border-color: rgba(137, 57, 143, 0.4);
}

.cl-notfound-links {
    text-align: left;
}

.cl-notfound-links-title {
    margin: 0 0 0.875rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cl-text-label);
}

.cl-notfound-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.cl-notfound-link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--cl-radius-sm);
    background: #ffffff;
    border: 1px solid var(--cl-border);
    box-shadow: var(--cl-shadow-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cl-text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.cl-notfound-link-card i {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--cl-primary);
}

.cl-notfound-link-card:hover {
    border-color: rgba(137, 57, 143, 0.35);
    box-shadow: var(--cl-shadow);
    transform: translateY(-1px);
    color: var(--cl-text);
}

@media (max-width: 575px) {
    .cl-notfound-code {
        font-size: 3.5rem;
    }

    .cl-notfound-title {
        font-size: 1.25rem;
    }

    .cl-notfound-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cl-notfound-link-grid {
        grid-template-columns: 1fr;
    }
}
