.canton-fair-page {
    --cf-red: #c9152d;
    --cf-red-dark: #820d1f;
    --cf-ink: #171717;
    --cf-muted: #5f6168;
    --cf-line: rgba(23, 23, 23, 0.12);
    --cf-cream: #f7f1e8;
    --cf-paper: #fffaf2;
    --cf-gold: #d8a73e;
    --cf-green: #1f6f5b;
    --cf-radius: 8px;
    background: var(--cf-paper);
    color: var(--cf-ink);
    scroll-behavior: smooth;
}

.canton-fair-page .site-header,
.canton-fair-page .site-footer,
.canton-fair-page .modal-overlay,
.canton-fair-page .fab-whatsapp {
    display: none;
}

.canton-fair-page img {
    max-width: 100%;
    height: auto;
}

.cf-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.cf-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-140%);
    background: #fff;
    color: var(--cf-ink);
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.cf-skip-link:focus {
    transform: translateY(0);
}

.cf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.cf-header.is-scrolled,
.cf-header.is-open {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(23, 23, 23, 0.12);
    backdrop-filter: blur(14px);
}

.cf-header__inner {
    width: min(1240px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cf-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.cf-logo__brand {
    width: 156px;
    height: auto;
    filter: none;
}

.cf-logo__divider {
    width: 1px;
    height: 34px;
    background: rgba(23, 23, 23, 0.16);
}

.cf-logo__canton {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: none;
}

.cf-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(23, 23, 23, 0.76);
}

.cf-nav a {
    padding: 12px 0;
    border-bottom: 2px solid transparent;
}

.cf-nav a:hover,
.cf-nav a:focus {
    color: var(--cf-red);
    border-color: var(--cf-red);
}

.cf-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cf-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(23, 23, 23, 0.18);
    border-radius: 8px;
    background: rgba(23, 23, 23, 0.04);
    color: var(--cf-ink);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.cf-menu-toggle span:not(.screen-reader-text) {
    width: 20px;
    height: 2px;
    background: currentColor;
    display: block;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cf-main {
    overflow: hidden;
}

@keyframes cfHeroImageDrift {
    from {
        transform: scale(1.04) translate3d(-1%, 0, 0);
    }
    to {
        transform: scale(1.1) translate3d(1.5%, -1%, 0);
    }
}

@keyframes cfRiseIn {
    from {
        opacity: 0;
        transform: translate3d(0, 42px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cfSoftPulse {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 18px 34px rgba(201, 21, 45, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }
    50% {
        transform: translate3d(0, -2px, 0) scale(1.012);
        box-shadow: 0 24px 46px rgba(201, 21, 45, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }
}

.cf-motion-ready .cf-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    transition-delay: var(--cf-delay, 0ms);
    will-change: opacity, transform;
}

.cf-motion-ready .cf-reveal[data-cf-reveal="left"] {
    transform: translate3d(-38px, 0, 0);
}

.cf-motion-ready .cf-reveal[data-cf-reveal="right"] {
    transform: translate3d(38px, 0, 0);
}

.cf-motion-ready .cf-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.cf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
    border: 1px solid var(--cf-red);
    background: var(--cf-red);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 14px 28px rgba(130, 13, 31, 0.22);
    position: relative;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
    will-change: transform;
}

.cf-btn::after {
    content: "";
    position: absolute;
    inset: -30% -45%;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.26) 50%, transparent 65%);
    transform: translate3d(-115%, 0, 0) rotate(6deg);
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.cf-btn:hover::after,
.cf-btn:focus::after {
    transform: translate3d(115%, 0, 0) rotate(6deg);
}

.cf-btn:hover,
.cf-btn:focus {
    background: var(--cf-red-dark);
    border-color: var(--cf-red-dark);
    color: #fff;
    transform: translateY(-2px);
}

.cf-btn:active {
    transform: translateY(0) scale(0.98);
}

.cf-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.cf-btn--ghost:hover,
.cf-btn--ghost:focus {
    background: #fff;
    border-color: #fff;
    color: var(--cf-ink);
}

.cf-btn--small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.78rem;
}

.cf-btn--block {
    width: 100%;
}

.cf-kicker {
    margin-bottom: 12px;
    color: var(--cf-red);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cf-hero {
    min-height: 100dvh;
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 142px 0 86px;
    color: #fff;
    isolation: isolate;
}

.cf-hero__image,
.cf-hero__image img,
.cf-hero__overlay {
    position: absolute;
    inset: 0;
}

.cf-hero__image {
    z-index: -3;
    overflow: hidden;
    background: #050507;
}

.cf-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.18) contrast(1.22) brightness(0.54) sepia(0.08);
    transform: scale(1.04);
    animation: cfHeroImageDrift 18s ease-in-out infinite alternate;
}

.cf-hero__overlay {
    z-index: -2;
    background:
        radial-gradient(circle at 20% 54%, rgba(201, 21, 45, 0.5), transparent 30%),
        radial-gradient(circle at 58% 38%, rgba(166, 12, 31, 0.34), transparent 34%),
        radial-gradient(circle at 80% 20%, rgba(130, 13, 31, 0.62), transparent 30%),
        linear-gradient(90deg, rgba(18, 2, 5, 0.88), rgba(97, 6, 18, 0.54) 48%, rgba(13, 2, 4, 0.86)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(83, 5, 15, 0.62) 46%, rgba(0, 0, 0, 0.9));
}

.cf-hero__content {
    max-width: 1120px;
    text-align: center;
}

.cf-hero h1 {
    font-size: clamp(2.25rem, 4.9vw, 4.95rem);
    line-height: 0.96;
    font-weight: 900;
    margin: 0 0 28px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #fff;
    text-wrap: balance;
    text-shadow: 0 6px 0 rgba(255, 255, 255, 0.05), 0 22px 54px rgba(0, 0, 0, 0.72);
    opacity: 0;
    animation: cfRiseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.cf-hero__lead {
    max-width: 760px;
    font-size: clamp(1.18rem, 2vw, 1.72rem);
    line-height: 1.22;
    color: rgba(255, 255, 255, 0.94);
    margin: 0 auto 28px;
    font-weight: 600;
    text-wrap: balance;
    opacity: 0;
    animation: cfRiseIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.cf-hero__details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    color: #fff;
    font-size: clamp(1rem, 1.75vw, 1.45rem);
    font-weight: 700;
    opacity: 0;
    animation: cfRiseIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.cf-hero__details span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cf-hero__details svg {
    width: 34px;
    height: 34px;
    color: var(--cf-red);
    fill: currentColor;
    flex: 0 0 auto;
    filter: drop-shadow(0 8px 18px rgba(201, 21, 45, 0.36));
    transition: transform 0.24s ease;
}

.cf-hero__details span:hover svg {
    transform: translate3d(0, -2px, 0) scale(1.08);
}

.cf-hero__divider {
    width: 2px;
    height: 36px;
    padding: 0;
    background: var(--cf-red);
    opacity: 0.9;
}

.cf-hero__actions {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: cfRiseIn 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.56s forwards;
}

.cf-hero__actions .cf-btn {
    min-width: min(100%, 460px);
    min-height: 78px;
    padding: 0 44px;
    border-radius: 9px;
    font-size: clamp(1.25rem, 2.5vw, 2.05rem);
    letter-spacing: 0;
    box-shadow: 0 18px 34px rgba(201, 21, 45, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    animation: cfSoftPulse 3.8s ease-in-out 1.5s infinite;
}

.cf-hero__actions .cf-btn:hover,
.cf-hero__actions .cf-btn:focus {
    animation: none;
    transform: translate3d(0, -4px, 0) scale(1.02);
    box-shadow: 0 26px 52px rgba(201, 21, 45, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cf-hero__proof span,
.cf-about__badges span {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.09);
    font-size: 0.82rem;
    font-weight: 700;
}

.cf-stats {
    background: var(--cf-ink);
    color: #fff;
    padding: 76px 0;
}

.cf-why {
    background:
        radial-gradient(circle at 8% 18%, rgba(201, 21, 45, 0.12), transparent 30%),
        radial-gradient(circle at 86% 8%, rgba(216, 167, 62, 0.16), transparent 30%),
        linear-gradient(180deg, #fffaf2 0%, #f7f1e8 100%);
    color: var(--cf-ink);
}

.cf-section {
    padding: 96px 0;
    scroll-margin-top: 96px;
}

.cf-section-head {
    max-width: 720px;
    margin-bottom: 36px;
}

.cf-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cf-section h2,
.cf-stats h2,
.cf-final-cta h2 {
    font-size: 2.65rem;
    line-height: 1.1;
    font-weight: 900;
    margin: 0 0 18px;
}

.cf-section p,
.cf-section li {
    color: var(--cf-muted);
}

.cf-stats .cf-kicker,
.cf-stats h2 {
    color: #fff;
}

.cf-why .cf-kicker {
    color: var(--cf-red);
}

.cf-why h2 {
    color: var(--cf-ink);
}

.cf-why .cf-section-head p {
    color: rgba(23, 23, 23, 0.72);
}

.cf-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding-top: 18px;
    background: transparent;
    border: 0;
}

.cf-stats__grid article {
    min-height: 245px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 26px 62px rgba(76, 24, 18, 0.12);
    transform: translate3d(0, 0, 0);
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cf-stats__grid article:hover {
    border-color: rgba(201, 21, 45, 0.26);
    background: #fff;
    box-shadow: 0 34px 72px rgba(76, 24, 18, 0.18);
    transform: translate3d(0, -14px, 0);
}

.cf-stats__grid article:nth-child(2),
.cf-stats__grid article:nth-child(4) {
    transform: translate3d(0, 22px, 0);
}

.cf-stats__grid article:nth-child(2):hover,
.cf-stats__grid article:nth-child(4):hover {
    transform: translate3d(0, 8px, 0);
}

.cf-stat-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(201, 21, 45, 0.12);
    color: var(--cf-red);
}

.cf-stat-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.cf-stats__grid strong {
    display: block;
    color: var(--cf-red);
    font-size: 2.35rem;
    line-height: 1;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}

.cf-stats__grid span {
    color: rgba(23, 23, 23, 0.68);
    font-weight: 600;
}

.cf-split {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 58px;
    align-items: center;
}

.cf-split--reverse {
    grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
}

.cf-split--reverse .cf-split__content {
    order: 2;
}

.cf-split--reverse .cf-split__media {
    order: 1;
}

.cf-split__content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.cf-split__media,
.cf-about__image,
.cf-lead__copy figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--cf-radius);
    background: #d8d0c4;
}

.cf-split__media {
    aspect-ratio: 4 / 3;
}

.cf-split__media img,
.cf-about__image img,
.cf-lead__copy figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.cf-split__media:hover img,
.cf-about__image:hover img,
.cf-lead__copy figure:hover img {
    transform: scale(1.055);
    filter: saturate(1.06) contrast(1.03);
}

.cf-timeline {
    display: grid;
    gap: 14px;
}

.cf-timeline article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius);
    background: #fff;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.cf-timeline article:hover {
    border-color: rgba(201, 21, 45, 0.28);
    box-shadow: 0 18px 34px rgba(48, 25, 25, 0.1);
    transform: translate3d(0, -4px, 0);
}

.cf-timeline span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--cf-red);
    color: #fff;
    font-weight: 900;
}

.cf-timeline h3,
.cf-feature-card h3,
.cf-package h3,
.cf-faq-item h3 {
    font-size: 1.08rem;
    margin: 0 0 8px;
}

.cf-timeline p,
.cf-feature-card p,
.cf-package li,
.cf-faq-item p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.cf-phases {
    position: relative;
    background:
        radial-gradient(circle at 18% 0%, rgba(201, 21, 45, 0.28), transparent 34%),
        linear-gradient(135deg, #4b090e 0%, #23090c 48%, #12090b 100%);
    color: #fff;
}

.cf-phases::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 78%);
}

.cf-phases .cf-container {
    position: relative;
    z-index: 1;
}

.cf-phases .cf-section-head {
    max-width: 880px;
}

.cf-phases .cf-kicker {
    color: #ffd04a;
}

.cf-phases h2 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 4.15rem);
}

.cf-phases .cf-section-head p {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.cf-phase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    margin-top: 42px;
}

.cf-phase-card {
    display: flex;
    height: 500px;
    min-height: 500px;
    overflow: hidden;
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #fff;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cf-phase-card:hover {
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 36px 72px rgba(0, 0, 0, 0.34);
    transform: none;
}

.cf-phase-card header {
    min-height: 86px;
    display: grid;
    place-items: center;
    gap: 5px;
    padding: 16px 22px;
    background: #202326;
    color: #fff;
    text-align: center;
}

.cf-phase-card header span {
    font-size: 1.08rem;
    line-height: 1.1;
    font-weight: 800;
}

.cf-phase-card header strong {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 700;
}

.cf-phase-card__body {
    position: relative;
    display: flex;
    flex: 1;
    min-height: 0;
    flex-direction: column;
    padding: 28px 22px 12px;
    background: #fff;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 21, 45, 0.58) rgba(23, 23, 23, 0.08);
}

.cf-phase-card__body::after {
    display: none;
}

.cf-phase-card__body::-webkit-scrollbar {
    width: 8px;
}

.cf-phase-card__body::-webkit-scrollbar-track {
    background: rgba(23, 23, 23, 0.08);
}

.cf-phase-card__body::-webkit-scrollbar-thumb {
    background: rgba(201, 21, 45, 0.58);
    border-radius: 999px;
}

.cf-phase-card ul {
    display: grid;
    gap: 15px;
    margin: 0 0 28px;
}

.cf-phase-card li {
    color: #1e2429;
    font-size: 0.88rem;
    line-height: 1.35;
}

.cf-phase-card .cf-btn {
    margin-top: auto;
    min-height: 52px;
    border-radius: 5px;
    font-size: 0.86rem;
    text-transform: none;
}

.cf-about {
    background: var(--cf-cream);
}

.cf-about__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: 64px;
    align-items: center;
}

.cf-about__image {
    aspect-ratio: 1 / 1;
}

.cf-about__grid p {
    font-size: 1.06rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.cf-about__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.cf-about__badges span {
    color: var(--cf-red-dark);
    border-color: rgba(201, 21, 45, 0.22);
    background: rgba(255, 255, 255, 0.74);
}

.cf-card-grid {
    display: grid;
    gap: 18px;
}

.cf-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cf-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cf-feature-card,
.cf-package {
    background: #fff;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius);
    padding: 26px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.cf-feature-card {
    min-height: 245px;
}

.cf-feature-card:hover {
    border-color: rgba(201, 21, 45, 0.28);
    box-shadow: 0 22px 44px rgba(48, 25, 25, 0.12);
    transform: translate3d(0, -8px, 0);
}

.cf-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(31, 111, 91, 0.12);
    color: var(--cf-green);
    font-weight: 900;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.cf-feature-card:hover .cf-icon {
    background: rgba(201, 21, 45, 0.12);
    color: var(--cf-red);
    transform: rotate(-4deg) scale(1.08);
}

.cf-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.cf-packages {
    background: #180f12;
    color: #fff;
}

.cf-packages .cf-kicker,
.cf-packages h2 {
    color: #fff;
}

.cf-packages .cf-kicker {
    font-size: 1.08rem;
    letter-spacing: 0.08em;
}

.cf-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.cf-package {
    display: flex;
    flex-direction: column;
    height: 720px;
    min-height: 720px;
    background: rgba(255, 255, 255, 0.95);
}

.cf-package:hover {
    border-color: rgba(201, 21, 45, 0.32);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
    transform: translate3d(0, -8px, 0);
}

.cf-package__label {
    color: var(--cf-red);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.cf-package h3 {
    color: var(--cf-red);
    font-size: 1.6rem;
    line-height: 1.18;
    margin-bottom: 20px;
}

.cf-package ul {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.cf-package__content {
    display: flex;
    flex: 1;
    min-height: 0;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 21, 45, 0.58) rgba(23, 23, 23, 0.08);
}

.cf-package__content::-webkit-scrollbar {
    width: 8px;
}

.cf-package__content::-webkit-scrollbar-track {
    background: rgba(23, 23, 23, 0.08);
}

.cf-package__content::-webkit-scrollbar-thumb {
    background: rgba(201, 21, 45, 0.58);
    border-radius: 999px;
}

.cf-package__group h4 {
    margin: 0 0 10px;
    color: #000;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cf-package__group ul {
    margin-bottom: 0;
}

.cf-package li {
    padding-left: 18px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.45;
}

.cf-package li::before,
.cf-check-list p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cf-red);
}

.cf-package .cf-btn {
    margin-top: auto;
}

.cf-link {
    margin-top: auto;
    color: var(--cf-red);
    font-weight: 900;
}

.cf-link:hover,
.cf-link:focus {
    color: var(--cf-red-dark);
}

.cf-audience {
    background: var(--cf-cream);
}

.cf-check-list {
    display: grid;
    gap: 12px;
}

.cf-check-list p {
    position: relative;
    padding-left: 22px;
    margin: 0;
}

.cf-lead {
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.95)),
        url("../images/canton-fair/textura-vermelha.png") center / cover;
}

.cf-lead__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 56px;
    align-items: start;
}

.cf-lead__copy {
    position: sticky;
    top: 112px;
}

.cf-lead__copy p {
    font-size: 1.06rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.cf-lead__copy figure {
    aspect-ratio: 1.45 / 1;
}

.cf-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius);
    box-shadow: 0 26px 60px rgba(48, 25, 25, 0.12);
}

.cf-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cf-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    font-size: 0.86rem;
    color: var(--cf-ink);
}

.cf-form input,
.cf-form select,
.cf-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid rgba(23, 23, 23, 0.18);
    border-radius: 8px;
    background: #fff;
    color: var(--cf-ink);
    font: inherit;
    font-weight: 500;
    outline: none;
}

.cf-form textarea {
    resize: vertical;
    min-height: 118px;
}

.cf-form input:focus,
.cf-form select:focus,
.cf-form textarea:focus {
    border-color: var(--cf-red);
    box-shadow: 0 0 0 3px rgba(201, 21, 45, 0.14);
}

.cf-form [aria-invalid="true"] {
    border-color: var(--cf-red);
    background: #fff5f5;
}

.cf-form__message {
    display: none;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.45;
}

.cf-form__message.is-visible {
    display: block;
}

.cf-form__message.is-success {
    background: #e8f7ef;
    color: #14523d;
    border: 1px solid rgba(31, 111, 91, 0.24);
}

.cf-form__message.is-error {
    background: #fff1f1;
    color: #8d1322;
    border: 1px solid rgba(201, 21, 45, 0.24);
}

.cf-faq {
    background: #fff;
}

.cf-faq__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 56px;
}

.cf-accordion {
    display: grid;
    gap: 12px;
}

.cf-faq-item {
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius);
    background: var(--cf-paper);
    overflow: hidden;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.cf-faq-item:hover {
    border-color: rgba(201, 21, 45, 0.26);
    box-shadow: 0 14px 30px rgba(48, 25, 25, 0.08);
    transform: translate3d(0, -3px, 0);
}

.cf-faq-item h3 {
    margin: 0;
}

.cf-faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 50px 20px 20px;
    color: var(--cf-ink);
    font: inherit;
    font-weight: 900;
    text-align: left;
    position: relative;
    cursor: pointer;
}

.cf-faq-item button::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--cf-red);
    transition: transform 0.24s ease, color 0.24s ease;
}

.cf-faq-item button[aria-expanded="true"]::after {
    content: "+";
    transform: translateY(-50%) rotate(45deg);
}

.cf-faq-item div {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.24s ease;
}

.cf-faq-item.is-open div {
    max-height: 260px;
    padding: 0 20px 20px;
    opacity: 1;
}

.cf-final-cta {
    padding: 92px 0;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(90, 11, 24, 0.92), rgba(18, 16, 17, 0.82)),
        url("../images/canton-fair/complexo-noturno.png") center / cover;
}

.cf-final-cta .cf-kicker {
    color: #f4c95d;
}

.cf-final-cta h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.cf-footer {
    padding: 72px 0 32px;
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 21, 45, 0.12), transparent 34%),
        linear-gradient(180deg, #050505 0%, #080808 100%);
    color: rgba(255, 255, 255, 0.78);
}

.cf-footer__grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(150px, 0.75fr) minmax(220px, 1fr) minmax(260px, 1.2fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.cf-footer__grid > * + * {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 40px;
}

.cf-footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.cf-footer__brand img {
    width: auto;
    height: 72px;
    max-width: 100%;
    filter: none;
}

.cf-footer__brand-col p {
    max-width: 30ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.cf-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.cf-footer__social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.cf-footer__social a:hover,
.cf-footer__social a:focus {
    background: var(--cf-red);
    border-color: var(--cf-red);
    color: #fff;
    transform: translateY(-2px);
}

.cf-footer__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cf-footer__title {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cf-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: var(--cf-red);
}

.cf-footer__links,
.cf-footer__contact {
    display: grid;
    gap: 12px;
}

.cf-footer__contact {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 600;
    color: #fff;
}

.cf-footer__contact a,
.cf-footer__contact > span,
.cf-footer__links a {
    display: inline-flex;
    align-items: center;
}

.cf-footer__contact a,
.cf-footer__contact > span {
    gap: 12px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.82);
    overflow-wrap: anywhere;
}

.cf-footer__contact svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex: 0 0 auto;
}

.cf-footer__links a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    line-height: 1.45;
    transition: transform 0.24s ease, color 0.24s ease;
}

.cf-footer__contact a:hover,
.cf-footer__contact a:focus,
.cf-footer__links a:hover,
.cf-footer__links a:focus {
    color: #fff;
}

.cf-footer__links a:hover,
.cf-footer__links a:focus {
    transform: translateX(3px);
}

.cf-footer__copy {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
}

.cf-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.cf-whatsapp:hover,
.cf-whatsapp:focus {
    transform: translate3d(0, -4px, 0) scale(1.05);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
}

.cf-whatsapp svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 1024px) {
    .cf-header__inner {
        min-height: 70px;
    }

    .cf-nav {
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: #fffaf2;
        color: var(--cf-ink);
        border: 1px solid var(--cf-line);
        border-radius: 8px;
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
    }

    .cf-nav.is-open {
        display: flex;
    }

    .cf-nav a {
        padding: 13px 10px;
        border-bottom: 1px solid var(--cf-line);
    }

    .cf-nav a:last-child {
        border-bottom: 0;
    }

    .cf-menu-toggle {
        display: inline-flex;
    }

    .cf-hero {
        min-height: 100dvh;
        min-height: 100svh;
        padding-top: 128px;
    }

    .cf-hero h1 {
        font-size: clamp(2.15rem, 6.5vw, 3.85rem);
    }

    .cf-section h2,
    .cf-stats h2,
    .cf-final-cta h2 {
        font-size: 2.2rem;
    }

    .cf-stats__grid,
    .cf-card-grid--four,
    .cf-card-grid--three,
    .cf-phase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cf-split,
    .cf-split--reverse,
    .cf-about__grid,
    .cf-lead__grid,
    .cf-faq__grid {
        grid-template-columns: 1fr;
    }

    .cf-split--reverse .cf-split__content,
    .cf-split--reverse .cf-split__media {
        order: initial;
    }

    .cf-lead__copy {
        position: static;
    }

    .cf-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cf-package {
        height: 640px;
        min-height: 640px;
        transform: none;
    }

    .cf-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }

    .cf-footer__grid > * + * {
        border-left: 0;
        padding-left: 0;
    }

    .cf-footer__grid > * {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding-top: 28px;
    }

    .cf-footer__grid > *:nth-child(-n+2) {
        border-top: 0;
        padding-top: 0;
    }
}

@media (max-width: 720px) {
    .cf-container,
    .cf-header__inner {
        width: min(100% - 28px, 1180px);
    }

    .cf-header__inner {
        gap: 10px;
    }

    .cf-header__actions {
        gap: 8px;
        flex: 0 0 auto;
    }

    .cf-header__actions .cf-btn {
        display: inline-flex;
        width: auto;
        min-height: 38px;
        padding: 0 10px;
        font-size: 0.68rem;
        white-space: nowrap;
    }

    .cf-logo img {
        width: auto;
    }

    .cf-logo {
        gap: 10px;
        min-width: 0;
    }

    .cf-logo .cf-logo__brand {
        width: 64px;
        max-width: 64px;
        max-height: 28px;
        object-fit: contain;
    }

    .cf-logo__divider {
        height: 18px;
    }

    .cf-logo .cf-logo__canton {
        width: 22px;
        height: 22px;
        max-width: 22px;
        max-height: 22px;
    }

    .cf-hero {
        min-height: 100dvh;
        min-height: 100svh;
        padding: 112px 0 58px;
        align-items: center;
    }

    .cf-hero__overlay {
        background:
            radial-gradient(circle at 52% 42%, rgba(201, 21, 45, 0.4), transparent 36%),
            linear-gradient(180deg, rgba(10, 1, 3, 0.82), rgba(97, 6, 18, 0.54) 42%, rgba(0, 0, 0, 0.88)),
            linear-gradient(90deg, rgba(38, 2, 7, 0.74), rgba(119, 8, 23, 0.38), rgba(14, 1, 4, 0.74));
    }

    .cf-hero__image img {
        object-position: 48% center;
        filter: saturate(1.08) contrast(1.2) brightness(0.48) sepia(0.08);
    }

    .cf-hero h1 {
        font-size: clamp(1.6rem, 7.4vw, 2.4rem);
        line-height: 1.02;
        margin-bottom: 22px;
    }

    .cf-hero__lead {
        font-size: clamp(1.08rem, 5.4vw, 1.45rem);
        line-height: 1.28;
        margin-bottom: 24px;
    }

    .cf-hero__details {
        gap: 12px;
        margin-bottom: 28px;
        font-size: 1rem;
    }

    .cf-hero__details span {
        width: 100%;
        justify-content: center;
    }

    .cf-hero__details svg {
        width: 28px;
        height: 28px;
    }

    .cf-hero__divider {
        display: inline-flex;
        width: 46px;
        height: 2px;
        margin: -2px auto 0;
    }

    .cf-hero__actions {
        flex-direction: column;
    }

    .cf-btn {
        width: 100%;
        min-height: 50px;
    }

    .cf-hero__actions .cf-btn {
        min-height: 64px;
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .cf-section,
    .cf-stats,
    .cf-final-cta {
        padding: 64px 0;
    }

    .cf-section h2,
    .cf-stats h2,
    .cf-final-cta h2 {
        font-size: 1.86rem;
    }

    .cf-stats__grid,
    .cf-card-grid--four,
    .cf-card-grid--three,
    .cf-phase-grid,
    .cf-package-grid,
    .cf-form__row {
        grid-template-columns: 1fr;
    }

    .cf-phase-grid {
        gap: 16px;
        margin-top: 30px;
    }

    .cf-phase-card {
        height: 430px;
        min-height: 430px;
    }

    .cf-package {
        height: 600px;
        min-height: 600px;
    }

    .cf-phase-card__body {
        padding: 24px 18px 12px;
    }

    .cf-stats__grid article {
        min-height: auto;
        padding: 24px;
    }

    .cf-stats__grid article:nth-child(2),
    .cf-stats__grid article:nth-child(4),
    .cf-stats__grid article:nth-child(2):hover,
    .cf-stats__grid article:nth-child(4):hover {
        transform: none;
    }

    .cf-split,
    .cf-about__grid,
    .cf-lead__grid,
    .cf-faq__grid {
        gap: 34px;
    }

    .cf-timeline article {
        grid-template-columns: 1fr;
    }

    .cf-form {
        padding: 20px;
    }

    .cf-footer {
        padding: 58px 0 28px;
    }

    .cf-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 34px;
    }

    .cf-footer__grid > *,
    .cf-footer__grid > *:nth-child(-n+2) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding-top: 28px;
    }

    .cf-footer__grid > *:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .cf-footer__brand img {
        height: 64px;
    }

    .cf-footer__contact {
        gap: 14px;
        font-size: 0.95rem;
    }

    .cf-footer__contact a,
    .cf-footer__contact > span {
        gap: 11px;
    }

    .cf-footer__contact svg {
        width: 24px;
        height: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .canton-fair-page,
    .canton-fair-page *,
    .canton-fair-page *::before,
    .canton-fair-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .cf-motion-ready .cf-reveal {
        opacity: 1;
        transform: none;
    }

    .cf-hero__image img,
    .cf-hero h1,
    .cf-hero__lead,
    .cf-hero__details,
    .cf-hero__actions {
        opacity: 1;
        transform: none;
    }
}
