
        html, body {
            width: 100%;
            overflow-x: hidden;
        }

        /* Home: header transparente sobre o carrossel */
        .navbar.nav-spacevents {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0) 100%) !important;
            box-shadow: none !important;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        /* Estado inicial (topo): mantém gradiente sobre o hero */
        .navbar.nav-spacevents.nav-home-top {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0) 100%) !important;
        }

        /* Ao scroll: fundo preto + texto branco */
        .navbar.nav-spacevents.nav-home-scrolled {
            background: rgba(0, 0, 0, 0.86) !important;
        }

        .navbar.nav-spacevents.nav-home-scrolled .nav-link,
        .navbar.nav-spacevents.nav-home-scrolled .menu-left .nav-link,
        .navbar.nav-spacevents.nav-home-scrolled .menu-right > li.nav-item > .nav-link,
        .navbar.nav-spacevents.nav-home-scrolled .menu-right li.dropdown > .nav-link {
            color: #ffffff !important;
        }

        /* Hover continua coral no estado com scroll */
        .navbar.nav-spacevents.nav-home-scrolled .nav-link:hover,
        .navbar.nav-spacevents.nav-home-scrolled .menu-left .nav-link:hover,
        .navbar.nav-spacevents.nav-home-scrolled .menu-right > li.nav-item > .nav-link:hover,
        .navbar.nav-spacevents.nav-home-scrolled .menu-right li.dropdown > .nav-link:hover {
            color: #ff7854 !important;
        }

        /* "Cadastre-se" permanece laranja no scroll (regra acima força branco nos .nav-link do menu-right) */
        .navbar.nav-spacevents.nav-home-scrolled .menu-right > li.nav-item > .nav-link.btn-cadastre {
            color: #ff7854 !important;
        }

        .navbar.nav-spacevents.nav-home-scrolled .menu-right > li.nav-item > .nav-link.btn-cadastre:hover {
            color: #ffffff !important;
        }

        /* MantÃ©m cliques no header acima do overlay */
        .navbar.nav-spacevents .container.nav-wrapper {
            position: relative;
            z-index: 1001;
        }

        /* Home hero (mantÃ©m carrossel como fundo) */
        .home-hero {
            position: relative;
            min-height: 820px;
            overflow: hidden;
        }

        @keyframes heroImageFadeIn {
            from {
                opacity: 0;
                transform: scale(1.03);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

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

        #banner-home {
            opacity: 0;
        }

        .home-hero.hero-ready #banner-home {
            animation: heroImageFadeIn 900ms ease-out forwards;
        }

        #banner-home .carousel-inner {
            --hero-parallax-offset: 0px;
            transform: translate3d(0, var(--hero-parallax-offset), 0);
            will-change: transform;
        }

        #banner-home .carousel-item img {
            height: 920px !important;
            object-fit: cover;
            object-position: center;
        }

        /* Layout do print nÃ£o mostra controles */
        #banner-home .carousel-indicators,
        #banner-home .carousel-control-prev,
        #banner-home .carousel-control-next {
            display: none !important;
        }

        .home-hero-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 110px 16px 70px;
            pointer-events: none;
        }

        .home-hero-panel {
            pointer-events: auto;
            position: relative;
            width: 100%;
            max-width: 1120px;
            padding: 70px 46px 42px;
            border-radius: 40px;
            overflow: hidden;
            background: transparent;
            border: none;
        }

        /* Home: sem â€œplacaâ€ central â€” tudo flutuando no carrossel */
        .home-hero-panel::before { display: none; }

        .home-hero-top-icons {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 22px;
            filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
        }

        .home-hero-icon {
            width: 54px;
            height: 38px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
        }

        .home-hero-badge {
            position: absolute;
            right: 50%;
            transform: translateX(110px);
            top: -8px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
            background: #ff7854;
            color: #fff;
            padding: 3px 8px;
            border-radius: 999px;
        }

        .home-hero-title {
            position: relative;
            text-align: center;
            font-family: "Poppins", sans-serif;
            font-size: 64px;
            font-weight: 600 !important;
            font-style: normal;
            line-height: 125%;
            letter-spacing: 0;
            vertical-align: middle;
            color: #ffffff;
            -webkit-text-stroke: 0 !important;
            text-shadow: 0px 4px 4px rgba(0, 0, 0, 1) !important;
            margin: 0 0 26px;
            opacity: 0;
            transform: translate3d(0, 30px, 0);
        }

        .home-hero-highlight {
            margin: 0 0 26px;
            text-align: center;
            font-family: "Poppins", sans-serif;
            font-size: 22px;
            font-weight: 500;
            font-style: normal;
            line-height: 125%;
            letter-spacing: 0;
            vertical-align: middle;
            color: #ffffff;
            text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
            opacity: 0;
            transform: translate3d(0, 30px, 0);
        }

        .home-mode-wrap {
            position: relative;
            width: fit-content;
            margin: 0 auto 22px;
            opacity: 0;
            transform: translate3d(0, 26px, 0);
        }

        .home-mode-badge {
            position: absolute;
            right: -37px;
            top: -14px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 54px;
            height: 22px;
            padding: 0 10px;
            border-radius: 999px;
            background: #ff7854;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.50);
        }

        .home-mode-switch {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0;
            width: 178px;
            height: 45px;
            padding: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            overflow: visible;
        }

        .home-mode-indicator {
            position: absolute;
            top: 0;
            left: 0;
            width: 86px;
            height: 45px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.18);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.14);
            transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.32s ease;
            will-change: transform;
            pointer-events: none;
        }

        .home-mode-input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .home-mode-option {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 1 1 0;
            width: 89px;
            height: 45px;
            border-radius: 999px;
            border: 1px solid transparent;
            background: transparent;
            color: rgba(255, 255, 255, 0.86);
            cursor: pointer;
            font-size: 0;
            font-weight: 700;
            transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }

        .home-mode-option .fa {
            display: block;
            font-size: 26px;
            line-height: 1;
            transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.32s ease, opacity 0.32s ease;
            transform: translateY(2px);
        }

        .home-mode-option .home-mode-option-svg {
            display: block;
            width: 30px;
            height: 30px;
            transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.32s ease;
            transform: translateY(2px);
        }

        .home-mode-option .home-mode-option-svg path {
            fill: currentColor !important;
            fill-opacity: 1 !important;
        }

        .home-mode-option:hover {
            transform: translateY(-1px);
            color: #fff;
        }

        .home-mode-option-disabled,
        .home-mode-option-disabled:hover {
            cursor: not-allowed;
            pointer-events: auto;
            opacity: 0.55;
            transform: none;
        }

        .home-mode-input:checked + .home-mode-option {
            color: #fff;
        }

        #home-banner-mode-food:checked ~ .home-mode-indicator {
            transform: translateX(92px);
        }

        .home-mode-input:checked + .home-mode-option .fa {
            transform: translateY(2px) scale(1.08);
            color: #ffffff;
        }

        .home-mode-input:checked + .home-mode-option .home-mode-option-svg {
            transform: translateY(2px) scale(1.08);
        }

        .home-mode-option .sr-only {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        .home-mode-option[data-tooltip] {
            position: relative;
        }

        .home-mode-option[data-tooltip]::after {
            content: attr(data-tooltip);
            position: absolute;
            left: 50%;
            bottom: calc(100% + 8px);
            transform: translateX(-50%);
            white-space: nowrap;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(12, 12, 15, 0.92);
            color: #fff;
            font-family: "Poppins", sans-serif;
            font-size: 12px;
            font-weight: 500;
            line-height: 1;
            letter-spacing: 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
            z-index: 12;
        }

        .home-mode-option[data-tooltip]::before {
            content: "";
            position: absolute;
            left: 50%;
            bottom: calc(100% + 2px);
            transform: translateX(-50%);
            border-width: 6px 6px 0 6px;
            border-style: solid;
            border-color: rgba(12, 12, 15, 0.92) transparent transparent transparent;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s ease, visibility 0.18s ease;
            z-index: 12;
        }

        .home-mode-option[data-tooltip]:hover::after,
        .home-mode-option[data-tooltip]:focus-visible::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-2px);
        }

        .home-mode-option[data-tooltip]:hover::before,
        .home-mode-option[data-tooltip]:focus-visible::before {
            opacity: 1;
            visibility: visible;
        }

        .home-banner-img {
            width: 100%;
            object-fit: cover;
            object-position: center;
        }

        .home-search-bar {
            opacity: 0;
            transform: translate3d(0, 34px, 0);
        }

        .home-hero.hero-ready .home-mode-wrap {
            animation: heroContentSlideUp 620ms ease-out 140ms forwards;
        }

        .home-hero.hero-ready .home-hero-title {
            animation: heroContentSlideUp 760ms ease-out 240ms forwards;
        }

        .home-hero.hero-ready .home-hero-highlight {
            animation: heroContentSlideUp 760ms ease-out 300ms forwards;
        }

        .home-hero.hero-ready .home-search-bar {
            animation: heroContentSlideUp 760ms ease-out 360ms forwards;
        }

        @media (prefers-reduced-motion: reduce) {
            #banner-home,
            .home-mode-wrap,
            .home-hero-title,
            .home-hero-highlight,
            .home-search-bar {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }

            #banner-home .carousel-inner {
                transform: none !important;
            }
        }

        /* Refinos para â€œfundirâ€ com o fundo do carrossel */
        .home-hero-panel {
            box-shadow: none;
        }

        .home-hero-icon {
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: rgba(255, 255, 255, 0.95);
        }

        .home-search-bar {
            position: relative;
            display: flex;
            align-items: stretch;
            gap: 0;
            background: #ffffff;
            border-radius: 999px;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        /* Bloco de campos: padding à esquerda sem deslocar o botão Procurar */
        .home-search-fields {
            flex: 1 1 auto;
            min-width: 0;
            display: grid;
            grid-template-columns: 1.2fr 0.9fr 0.9fr;
            align-items: stretch;
            gap: 0;
            padding-left: 28px;
            box-sizing: border-box;
        }

        .home-search-field {
            padding: 14px 18px 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            position: relative;
        }

        /* Separadores discretos, altura parcial, centrados (Figma) */
        .home-search-fields .home-search-field + .home-search-field {
            border-left: 0;
        }

        .home-search-fields .home-search-field + .home-search-field::before {
            content: "";
            position: absolute;
            left: 0;
            top: 14px;
            bottom: 14px;
            width: 0;
            box-sizing: border-box;
            border: 0;
            border-left: 1px solid #818181;
            pointer-events: none;
        }

        .home-search-label {
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 500;
            font-style: normal;
            line-height: 100%;
            letter-spacing: 0;
            vertical-align: middle;
            color: #111;
            margin: 0;
        }

        .home-search-input {
            border: 0 !important;
            outline: none !important;
            padding: 6px 0 0 !important;
            height: auto !important;
            background: transparent !important;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 500;
            font-style: normal;
            line-height: 100%;
            letter-spacing: 0;
            vertical-align: middle;
            color: rgba(0, 0, 0, 0.62);
            width: 100%;
        }

        .home-search-date-row {
            display: flex;
            align-items: flex-end;
            gap: 2px;
            min-width: 0;
        }

        .home-search-date-row .home-search-input {
            flex: 1;
            min-width: 0;
        }

        .home-busca-date-clear {
            display: none;
            flex-shrink: 0;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            margin: 0 0 2px 0;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: transparent;
            color: rgba(0, 0, 0, 0.38);
            cursor: pointer;
            line-height: 1;
        }

        .home-search-date-field--filled .home-busca-date-clear {
            display: inline-flex;
        }

        .home-busca-date-clear:hover,
        .home-busca-date-clear:focus {
            color: #ff7854;
            background: rgba(255, 120, 84, 0.14);
            outline: none;
        }

        .home-busca-dp-footer {
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            margin: 10px 0 0;
            padding: 10px 0 2px;
            text-align: center;
        }

        .home-busca-dp-clear {
            border: 0;
            background: transparent;
            color: #ff7854;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
        }

        .home-busca-dp-clear:hover,
        .home-busca-dp-clear:focus {
            background: rgba(255, 120, 84, 0.12);
            outline: none;
        }

        .home-date-popover {
            position: absolute;
            z-index: 1300;
            width: min(772px, calc(100vw - 24px));
            padding: 18px;
            border: 1px solid rgba(255, 120, 84, 0.55);
            border-radius: 16px;
            box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
            background: #fff;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
        }

        .home-date-popover.home-date-popover--dates {
            height: 540px;
        }

        .home-date-popover__title {
            width: 79px;
            height: 23px;
            margin: 0 auto 15px;
            color: #131313;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 16px;
            line-height: 144%;
            letter-spacing: 0;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .home-date-popover__tabs {
            display: flex;
            justify-content: center;
            gap: 6px;
            width: 341px;
            max-width: 100%;
            margin: 0 auto 30px;
            padding: 4px;
            border-radius: 999px;
            background: #ececec;
        }

        .home-date-popover__tab {
            border: 0;
            border-radius: 999px;
            background: transparent;
            color: #8b8b8b;
            width: 161px;
            max-width: 100%;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 500;
            line-height: 1;
            padding: 10px 22px;
            cursor: pointer;
            transition: all .2s ease;
        }

        .home-date-popover__tab.is-active {
            background: #fff;
            color: #111;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
        }

        .home-date-popover__body {
            width: 100%;
            flex: 1 1 auto;
            min-height: 0;
            overflow-y: auto;
            overscroll-behavior: contain;
        }

        .home-date-popover__calendars {
            display: grid;
            grid-template-columns: repeat(2, minmax(300px, 1fr));
            gap: 20px;
        }

        .home-date-popover__month {
            min-width: 0;
        }

        .home-date-popover__month-head {
            display: grid;
            grid-template-columns: 40px 1fr 40px;
            align-items: center;
            margin-bottom: 8px;
        }

        .home-date-popover__month-title {
            text-align: center;
            color: #151515;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 16px;
            leading-trim: none;
            line-height: 144%;
            letter-spacing: 0;
            vertical-align: middle;
        }

        .home-date-popover__month-nav {
            width: 40px;
            height: 40px;
            border: 0;
            border-radius: 999px;
            background: transparent;
            color: #1f1f1f;
            font-size: 32px;
            line-height: 1;
            cursor: pointer;
            transition: background .2s ease, color .2s ease;
        }

        .home-date-popover__month-nav:disabled {
            opacity: 0;
            pointer-events: none;
            cursor: default;
        }

        .home-date-popover__month-nav:not(:disabled):hover {
            background: #fff1ec;
            color: #ff7854;
        }

        .home-date-popover__month-nav:focus,
        .home-date-popover__month-nav:active {
            outline: none;
            box-shadow: none;
        }

        .home-date-popover__weekdays,
        .home-date-popover__days {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 2px;
        }

        .home-date-popover__weekdays {
            margin-bottom: 4px;
        }

        .home-date-popover__weekdays span {
            text-align: center;
            color: #8a8a8a;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 12px;
            leading-trim: none;
            line-height: 144%;
            letter-spacing: 0;
            vertical-align: middle;
        }

        .home-date-popover__day {
            border: 0;
            height: 38px;
            border-radius: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #111;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 12px;
            leading-trim: none;
            line-height: 144%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            cursor: pointer;
            transition: background .2s ease, color .2s ease;
        }

        .home-date-popover__day.is-out {
            visibility: hidden;
            pointer-events: none;
        }

        .home-date-popover__day.is-disabled,
        .home-date-popover__day:disabled {
            color: #d8d8d8;
            cursor: default;
        }

        .home-date-popover__day:not(.is-disabled):not(:disabled):not(.is-single):hover {
            background: #fff1ec;
            color: #f16643;
            border-radius: 999px;
        }

        .home-date-popover__day.is-in-range {
            background: #fff1ec;
            color: #121212;
        }

        .home-date-popover__day.is-start,
        .home-date-popover__day.is-end {
            background:
                radial-gradient(circle 14px at 50% 50%, #ff7854 0, #ff7854 13px, rgba(255, 120, 84, 0) 14px),
                #fff1ec;
            color: #fff;
        }

        .home-date-popover__day.is-start {
            border-radius: 19px 0 0 19px;
        }

        .home-date-popover__day.is-end {
            border-radius: 0 19px 19px 0;
        }

        .home-date-popover__day.is-single {
            background:
                radial-gradient(circle 14px at 50% 50%, #ff7854 0, #ff7854 13px, rgba(255, 120, 84, 0) 14px),
                transparent;
            color: #fff;
            border-radius: 999px;
        }

        .home-date-popover__time-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin: 18px auto 0;
            max-width: 420px;
        }

        .home-date-popover__time-field {
            position: relative;
        }

        .home-date-popover__time-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #8a8a8a;
            font-size: 14px;
            z-index: 1;
            pointer-events: none;
        }

        .home-date-popover__time-field .custom-select-trigger {
            padding-left: 36px;
        }

        .home-date-popover__flex {
            max-width: 760px;
            margin: 0 auto;
        }

        .home-date-popover__section-title {
            margin: 0 0 22px;
            color: #131313;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 16px;
            leading-trim: none;
            line-height: 144%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
        }

        .home-date-popover__pill-row {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .home-date-popover__pill {
            border: 2px solid #dddddd;
            border-radius: 999px;
            background: #fff;
            color: #1e1e1e;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 14px;
            leading-trim: none;
            line-height: 144%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            height: 32px;
            padding: 0 16px;
            cursor: pointer;
        }

        .home-date-popover__pill.is-selected {
            border-color: #ff7854;
            box-shadow: none;
        }

        .home-date-popover__flex-carousel {
            position: relative;
        }

        .home-date-popover__flex-nav {
            width: 34px;
            height: 34px;
            border: 1px solid #dcdcdc;
            border-radius: 999px;
            background: #fff;
            color: #1d1d1d;
            font-size: 30px;
            line-height: 0;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
            transition: background .2s ease, color .2s ease;
        }

        .home-date-popover__flex-nav--prev {
            left: 0;
        }

        .home-date-popover__flex-nav--next {
            right: 0;
        }

        .home-date-popover__flex-nav:hover:not(:disabled) {
            background: #fff1ec;
            color: #ff7854;
        }

        .home-date-popover__flex-nav:focus,
        .home-date-popover__flex-nav:active {
            outline: none;
            box-shadow: none;
        }

        .home-date-popover__flex-nav:disabled {
            opacity: 0;
            pointer-events: none;
        }

        .home-date-popover__flex-nav.is-hidden {
            opacity: 0;
            pointer-events: none;
        }

        .home-date-popover__flex-months {
            display: grid;
            grid-template-columns: repeat(var(--home-flex-cols, 6), 124px);
            gap: 10px;
            justify-content: center;
            width: 100%;
        }

        .home-date-popover__flex-month {
            border: 2px solid #e7e7e7;
            border-radius: 10px;
            width: 124px;
            height: 133px;
            padding: 12px 10px;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
        }

        .home-date-popover__flex-month.is-selected {
            border-color: #ff7854;
            box-shadow: none;
        }

        .home-date-popover__flex-month.is-disabled,
        .home-date-popover__flex-month:disabled {
            cursor: default;
            pointer-events: none;
        }

        .home-date-popover__flex-month-icon {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .home-date-popover__flex-month-icon img {
            width: 38px;
            height: 38px;
            display: block;
            object-fit: contain;
        }

        .home-date-popover__flex-month-name {
            color: #1d1d1d;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 14px;
            leading-trim: none;
            line-height: 144%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            text-transform: lowercase;
        }

        .home-date-popover__flex-month-year {
            color: #8b8b8b;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 10px;
            leading-trim: none;
            line-height: 144%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
        }

        .home-date-popover__footer {
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            margin-top: 14px;
            padding-top: 10px;
            text-align: center;
        }

        .home-date-popover__clear {
            border: 0;
            background: transparent;
            color: #ff7854;
            font-family: "Poppins", sans-serif;
            font-size: 13px;
            font-weight: 600;
            line-height: 1;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
        }

        .home-date-popover__clear:hover,
        .home-date-popover__clear:focus {
            background: rgba(255, 120, 84, 0.12);
            outline: none;
        }

        @media (max-width: 991.98px) {
            .home-date-popover {
                width: min(94vw, 620px);
                padding: 14px;
            }

            .home-date-popover__calendars {
                grid-template-columns: 1fr;
                gap: 14px;
                max-height: 430px;
                overflow-y: auto;
                padding-right: 2px;
            }

            .home-date-popover__month-title {
                font-size: 20px;
            }

            .home-date-popover__section-title {
                font-size: 16px;
            }

        }

        @media (max-width: 639.98px) {
            .home-date-popover {
                width: calc(100vw - 16px);
                max-height: calc(100vh - 120px);
                overflow-y: auto;
                border-radius: 14px;
            }

            .home-date-popover__tabs {
                width: 100%;
                max-width: 341px;
            }

            .home-date-popover__time-row {
                grid-template-columns: 1fr;
                gap: 8px;
            }

        }

        .home-search-submit {
            cursor: pointer;
            border: 0;
            background: #ff7854;
            color: #fff;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            font-weight: 500;
            font-style: normal;
            line-height: 100%;
            letter-spacing: 0;
            vertical-align: middle;
            padding: 0 22px;
            min-width: 150px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 999px;
            margin: 8px 8px 8px 0;
            flex-shrink: 0;
            align-self: stretch;
        }

        .home-search-submit:hover {
            background: #ff6a43;
            color: #fff;
        }

        .home-search-submit .fa {
            font-size: 1em;
        }

        /* MantÃ©m o dtf no form sem aparecer (layout do print tem um campo â€œDataâ€) */
        .home-search-hidden {
            position: absolute !important;
            left: -9999px !important;
            width: 1px !important;
            height: 1px !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        /* jQuery UI autocomplete (localização) — mesmo vocabulário visual que
           `.espacos-quick-filter-local-panel` (borda coral, raio, sombra, lista com scroll). */
        ul.ui-autocomplete.home-search-autocomplete {
            max-height: 270px !important;
            overflow-y: auto !important;
            overflow-x: hidden !important;
            box-sizing: border-box;
            padding: 10px 10px 10px 12px !important;
            margin: 8px 0 0 !important;
            z-index: 1200 !important;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.35;
            color: #222222;
            background: #ffffff !important;
            border: 1px solid #ff7d5a !important;
            border-radius: 18px !important;
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16) !important;
            /* Mesmo padrão de scroll que `.wizard-time-pick__dropdown` (coral + trilho rosado). */
            scrollbar-width: thin;
            scrollbar-color: #ff7b59 #fff5f0;
        }

        ul.ui-autocomplete.home-search-autocomplete::-webkit-scrollbar {
            width: 10px;
        }

        ul.ui-autocomplete.home-search-autocomplete::-webkit-scrollbar-track {
            margin: 6px 0;
            background: #fff5f0;
            border-radius: 999px;
        }

        ul.ui-autocomplete.home-search-autocomplete::-webkit-scrollbar-thumb {
            background: #ff7b59;
            border-radius: 999px;
            border: 2px solid #fff5f0;
        }

        ul.ui-autocomplete.home-search-autocomplete::-webkit-scrollbar-thumb:hover {
            background: #ff6a45;
        }

        ul.ui-autocomplete.home-search-autocomplete .ui-menu-item {
            margin: 0 0 6px;
            padding: 0 !important;
            list-style: none;
            border: 0 !important;
        }

        ul.ui-autocomplete.home-search-autocomplete .ui-menu-item:last-child {
            margin-bottom: 0;
        }

        ul.ui-autocomplete.home-search-autocomplete .ui-menu-item-wrapper {
            padding: 8px 10px;
            border-radius: 10px;
            color: #222222 !important;
            border: 0 !important;
            background: transparent !important;
            font-weight: 500;
        }

        ul.ui-autocomplete.home-search-autocomplete .home-ac-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        ul.ui-autocomplete.home-search-autocomplete .home-ac-main-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        ul.ui-autocomplete.home-search-autocomplete .home-ac-primary {
            color: #1e1e1e;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.25;
        }

        ul.ui-autocomplete.home-search-autocomplete .home-ac-item.is-space .home-ac-primary {
            font-weight: 600;
        }

        ul.ui-autocomplete.home-search-autocomplete .home-ac-secondary {
            color: #6b6b6b;
            font-size: 12px;
            font-weight: 500;
            line-height: 1.2;
        }

        ul.ui-autocomplete.home-search-autocomplete .home-ac-badge {
            flex-shrink: 0;
            color: #ff6a45;
            background: rgba(255, 125, 90, 0.14);
            border-radius: 999px;
            padding: 2px 8px;
            font-size: 11px;
            font-weight: 600;
            line-height: 1.2;
        }

        ul.ui-autocomplete.home-search-autocomplete .ui-menu-item .ui-menu-item-wrapper.ui-state-active,
        ul.ui-autocomplete.home-search-autocomplete .ui-menu-item .ui-menu-item-wrapper.ui-state-focus {
            margin: 0 !important;
            border: 0 !important;
            background: rgba(255, 125, 90, 0.14) !important;
            color: #111111 !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca {
            padding: 10px 12px 12px;
            border: 1px solid rgba(255, 120, 84, 0.45);
            border-radius: 16px;
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
            background: #ffffff;
            min-width: 300px;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca:before,
        .datepicker.datepicker-dropdown.datepicker-home-busca:after {
            display: none;
        }

        .datepicker.datepicker-home-busca table {
            width: 100%;
            border-collapse: collapse !important;
            border-spacing: 0 !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table td,
        .datepicker.datepicker-dropdown.datepicker-home-busca table th {
            border: none !important;
        }

        .datepicker.datepicker-home-busca table tr th {
            color: #1d1d1d;
            font-size: 12px;
            font-weight: 700;
            text-transform: none;
            border-radius: 0;
            height: 32px;
        }

        .datepicker.datepicker-home-busca table tr th.prev,
        .datepicker.datepicker-home-busca table tr th.next {
            color: #1d1d1d;
            font-size: 28px;
            font-weight: 400;
            line-height: 1;
            width: 32px;
        }

        .datepicker.datepicker-home-busca table tr th.datepicker-switch {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.01em;
            padding: 6px 0 10px;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td {
            box-sizing: border-box;
            vertical-align: middle;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr th.dow {
            width: 38px;
            height: auto;
            min-height: 28px;
            box-sizing: border-box;
            vertical-align: middle;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day {
            color: #111111;
            font-size: 13px;
            font-weight: 600;
            width: 38px;
            height: 38px;
            min-width: 38px;
            min-height: 38px;
            padding: 0 !important;
            line-height: 38px;
            border-radius: 0;
            border: none !important;
            background-clip: padding-box;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day:hover:not(.disabled):not(.active):not(.selected),
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.focused:not(.active):not(.selected) {
            background-color: transparent !important;
            background-image: radial-gradient(
                circle 14px at 50% 50%,
                #fff1ec 0,
                #fff1ec 13px,
                rgba(255, 241, 236, 0) 14px
            ) !important;
            color: #f16643 !important;
            border-radius: 0 !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.old,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.new {
            color: #c4c4c4;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.disabled,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.disabled:hover {
            color: #d8d8d8;
            background: transparent !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.disabled:not(.active):not(.selected),
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.disabled:not(.active):not(.selected):hover {
            color: #d8d8d8 !important;
            background: transparent !important;
            background-image: none !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.today:not(.active):not(.selected) {
            background: transparent !important;
            color: #111111;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.range:not(.selected),
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.range:not(.selected):hover {
            background-color: #fff1ec !important;
            background-image: none !important;
            color: #111111 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.active,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.selected,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.active,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.selected,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.selected,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.selected,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.active {
            background-color: #fff1ec !important;
            background-image: radial-gradient(
                circle 14px at 50% 50%,
                #ff7854 0,
                #ff7854 13px,
                rgba(255, 120, 84, 0) 14px
            ) !important;
            color: #ffffff !important;
            text-shadow: none !important;
            border-radius: 0 !important;
            border: none !important;
            box-shadow: none !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.active:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.selected:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.active:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.selected:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.selected:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.selected:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.active:hover {
            background-color: #fff1ec !important;
            background-image: radial-gradient(
                circle 14px at 50% 50%,
                #ff6a43 0,
                #ff6a43 13px,
                rgba(255, 106, 67, 0) 14px
            ) !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.home-range-strip-mid,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.home-range-strip-mid:hover {
            border-radius: 0 !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.selected.home-range-strip-start,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.selected.home-range-strip-start:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.active.home-range-strip-start,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.active.home-range-strip-start:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.selected.home-range-strip-start,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.selected.home-range-strip-start:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.active.home-range-strip-start,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.active.home-range-strip-start:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.selected.home-range-strip-start,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.selected.home-range-strip-start:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.selected.home-range-strip-start,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.selected.home-range-strip-start:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.active.home-range-strip-start,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.active.home-range-strip-start:hover {
            border-radius: 19px 0 0 19px !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.selected.home-range-strip-end,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.selected.home-range-strip-end:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.active.home-range-strip-end,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.active.home-range-strip-end:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.selected.home-range-strip-end,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.selected.home-range-strip-end:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.active.home-range-strip-end,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.active.home-range-strip-end:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.selected.home-range-strip-end,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.selected.home-range-strip-end:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.selected.home-range-strip-end,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.selected.home-range-strip-end:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.active.home-range-strip-end,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.active.home-range-strip-end:hover {
            border-radius: 0 19px 19px 0 !important;
        }

        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.selected.home-range-strip-single,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.selected.home-range-strip-single:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.active.home-range-strip-single,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.active.home-range-strip-single:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.selected.home-range-strip-single,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.selected.home-range-strip-single:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.active.home-range-strip-single,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.today.active.home-range-strip-single:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.selected.home-range-strip-single,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.selected.home-range-strip-single:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.selected.home-range-strip-single,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.selected.home-range-strip-single:hover,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.active.home-range-strip-single,
        .datepicker.datepicker-dropdown.datepicker-home-busca table tr td.day.range.today.active.home-range-strip-single:hover {
            border-radius: 999px !important;
        }

        .datepicker.datepicker-home-busca table thead tr:first-child th {
            border-bottom: 1px solid #ece7e4;
            padding-bottom: 8px;
        }

        .datepicker.datepicker-home-busca table thead tr:nth-child(2) th {
            color: #8a8a8a;
            font-size: 12px;
            font-weight: 700;
            padding-top: 8px;
            padding-bottom: 8px;
        }

        /* SeÃ§Ã£o: tipos de evento (layout estilo referÃªncia) */
        .event-types-section {
            background: #ffffff;
            padding: 80px 0 64px;
        }

        .event-types-title {
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 48px;
            line-height: 145%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            color: #0c0c0f;
            margin: 0 0 48px;
        }

        .event-types-grid {
            display: grid;
            grid-template-columns: repeat(3, 314px);
            column-gap: 34px;
            row-gap: 42px;
            justify-content: center;
            width: min(1320px, calc(100% - 32px));
            max-width: 1320px;
            margin: 0 auto;
            padding: 0;
        }

        .event-type-card {
            opacity: 0;
            transition: opacity 520ms ease;
        }

        .event-type-card.is-visible {
            opacity: 1;
        }

        .event-type-card:nth-child(1).is-visible { transition-delay: 80ms; }
        .event-type-card:nth-child(2).is-visible { transition-delay: 140ms; }
        .event-type-card:nth-child(3).is-visible { transition-delay: 200ms; }
        .event-type-card:nth-child(4).is-visible { transition-delay: 260ms; }
        .event-type-card:nth-child(5).is-visible { transition-delay: 320ms; }
        .event-type-card:nth-child(6).is-visible { transition-delay: 380ms; }

        .event-type-card {
            position: relative;
            width: 314px;
            height: 314px;
            min-height: 314px;
            border-radius: 14px;
            overflow: hidden;
            display: block;
            text-decoration: none !important;
            box-shadow:
                0px 4px 7.3px 0px rgba(0, 0, 0, 0.25);
            background-size: cover;
            background-position: center;
            transform: translateZ(0);
        }

        .event-type-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0);
            transition: 0.3s;
        }

        .event-type-card:hover::before {
            background: rgba(0, 0, 0, 0.4);
        }

        .event-type-content {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 8px;
            z-index: 1;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
        }

        .event-type-content h6 {
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 600;
            line-height: 1.05;
            letter-spacing: 0;
            vertical-align: middle;
            margin: 0;
            padding: 0;
            text-transform: none;
        }

        .event-type-content p {
            color: #ffffff;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 16px;
            line-height: 120%;
            letter-spacing: 0;
            width: 267px;
            max-width: 100%;
            margin: 0;
            padding: 0;
            display: block;
        }

        /* SeÃ§Ã£o: â€œPor que a Spacevents?â€ (carrossel) */
        .why-carousel-section {
            padding: 0;
        }

        #why-spacevents {
            position: relative;
        }

        .why-carousel-wrap {
            width: min(1680px, calc(100% - 56px));
            max-width: 1680px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
        }

        .why-section-slide {
            padding: 56px 0 72px;
            min-height: 70vh;
            display: flex;
            align-items: flex-start;
        }

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

        @keyframes whyBarFadeIn {
            from {
                opacity: 0;
                transform: scaleX(0.3);
            }
            to {
                opacity: 1;
                transform: scaleX(1);
            }
        }

        .why-bg-dark {
            background: #0b0b0d;
        }

        .why-bg-orange {
            background: #ff7854;
        }

        .why-title {
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 48px;
            line-height: 145%;
            letter-spacing: 0;
            vertical-align: middle;
            color: #ffffff;
            margin: 0 0 14px;
        }

        .why-title .accent {
            color: #ff7854;
        }

        .why-card { background: transparent; }

        .why-slide {
            display: grid;
            grid-template-columns: minmax(540px, 1.05fr) minmax(460px, 0.95fr);
            gap: clamp(20px, 2.5vw, 48px);
            align-items: end;
            padding: 8px 0 36px;
        }

        .why-carousel-section .why-image,
        .why-carousel-section .why-copy {
            opacity: 0;
            transform: translate3d(0, 22px, 0);
            will-change: transform, opacity;
        }

        .why-carousel-section.is-visible .carousel-item.active .why-image {
            animation: whySlideUpFade 680ms ease-out forwards;
        }

        .why-carousel-section.is-visible .carousel-item.active .why-copy {
            animation: whySlideUpFade 760ms ease-out 130ms forwards;
        }

        .why-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 18px 46px rgba(0,0,0,0.45);
        }

        .why-image img {
            width: 100%;
            height: clamp(380px, 30vw, 500px);
            object-fit: cover;
            display: block;
        }

        .why-copy h3 {
            color: #ffffff;
            font-size: 30px;
            line-height: 1.15;
            font-weight: 600;
            margin: 0 0 10px;
        }

        .why-copy p {
            color: rgba(255,255,255,0.85);
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 18px;
            line-height: 130%;
            letter-spacing: 0;
            vertical-align: middle;
            margin: 0 0 16px;
            max-width: 420px;
        }

        .why-copy-ul-hp{
            color: #000;
        }

        .why-copy-ul-ss{
            color: #ffffff;
        }

        .why-list {
            margin: 0 0 18px;
            padding: 0;
            list-style: none;
            color: rgba(255,255,255,0.88);
            font-size: 13px;
            line-height: 1.35;
            max-width: 440px;
        }

        .why-list li {
            margin: 0 0 8px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .why-list i {
            margin-top: 2px;
            color: #ff7854;
        }

        .why-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 26px;
            min-height: 52px;
            border-radius: 16px;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 20px;
            line-height: 110%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            text-decoration: none !important;
            background: #ff7854;
            color: #fff !important;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
            transition:
                background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.22s ease;
        }

        .why-btn:hover,
        .why-btn:focus,
        .why-btn:active,
        .why-btn:visited {
            color: #ffffff !important;
        }

        .why-btn:hover {
            background: #ff6a45;
            transform: translateY(-2px);
            box-shadow:
                0 14px 32px rgba(0, 0, 0, 0.22),
                0 4px 10px rgba(0, 0, 0, 0.12);
        }

        .why-btn:active {
            background: #e86846;
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
            transition-duration: 0.12s;
        }

        .why-btn:focus {
            outline: none;
            color: #ffffff !important;
        }

        .why-btn:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.92);
            outline-offset: 3px;
            color: #ffffff !important;
        }

        .why-on-orange { color: #111; }
        .why-on-orange .why-title {
            color: #ffffff;
        }

        .why-on-orange .why-title .accent {
            color: #111;
        }

        .why-on-orange .why-count {
            color: rgba(255, 255, 255, 0.92);
        }
        .why-on-orange .why-copy h3 { color: #111; }
        .why-on-orange .why-copy p {
            color: rgba(0,0,0,0.75);
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 18px;
            line-height: 130%;
            letter-spacing: 0;
            vertical-align: middle;
        }
        .why-on-orange .why-list { color: rgba(0,0,0,0.78); }
        .why-on-orange .why-list i { color: rgba(0,0,0,0.65); }
        .why-on-orange .why-btn {
            background: #111;
            color: #fff !important;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
        }

        .why-on-orange .why-btn:hover {
            background: #111;
            transform: translateY(-2px);
            box-shadow:
                0 14px 32px rgba(0, 0, 0, 0.28),
                0 4px 10px rgba(0, 0, 0, 0.14);
        }

        .why-on-orange .why-btn:active {
            background: #111;
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
            transition-duration: 0.12s;
        }

        .why-progress {
            display: flex;
            flex-direction: column;
            width: fit-content;
            max-width: 100%;
            align-items: stretch;
            gap: 10px;
            margin-top: 28px;
        }

        .why-bars {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .why-bar {
            width: 92px;
            height: 6px;
            border-radius: 999px;
            background: rgba(255,255,255,0.35);
            opacity: 0;
            transform: scaleX(0.3);
            transform-origin: left center;
        }

        .why-carousel-section.is-visible .carousel-item.active .why-bar {
            animation: whyBarFadeIn 420ms ease-out forwards;
        }

        .why-carousel-section.is-visible .carousel-item.active .why-bar:nth-child(1) { animation-delay: 160ms; }
        .why-carousel-section.is-visible .carousel-item.active .why-bar:nth-child(2) { animation-delay: 260ms; }
        .why-carousel-section.is-visible .carousel-item.active .why-bar:nth-child(3) { animation-delay: 360ms; }

        .why-bar.is-active {
            background: #ff7854;
        }

        .why-count {
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 14px;
            line-height: 144%;
            letter-spacing: 0;
            text-align: right;
            vertical-align: middle;
            color: rgba(255,255,255,0.65);
            white-space: nowrap;
        }

        .why-control {
            position: absolute;
            bottom: 40px;
            width: 54px;
            height: 54px;
            border-radius: 999px;
            background: transparent;
            border: none;
            color: #ff7854;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            line-height: 1;
        }

        .why-control i {
            line-height: 1;
            text-shadow:
                0.6px 0 0 currentColor,
                -0.6px 0 0 currentColor,
                0 0.6px 0 currentColor,
                0 -0.6px 0 currentColor;
        }

        .why-control.prev { left: 14px; }
        .why-control.next { right: 14px; }

        .why-control:focus { outline: none; }

        .why-control,
        .why-bar {
            cursor: pointer;
        }

        #why-spacevents.is-last-slide .why-control {
            color: #111;
        }

        .why-carousel-section .carousel-indicators,
        .why-carousel-section .carousel-control-prev,
        .why-carousel-section .carousel-control-next {
            display: none !important;
        }

        .why-mobile-static {
            display: none;
        }

        /* SeÃ§Ã£o: espaÃ§os em destaque */
        .mais-populares {
            background: #ffffff;
            padding: 96px 0 72px !important;
        }

        .mais-populares h4 {
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 48px;
            line-height: 145%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            color: #0d0d0f;
            margin-bottom: 14px !important;
        }

        .mais-populares > .row:first-child > .col-12 {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
        }

        .mais-populares h5 {
            color: #ff7854 !important;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 16px;
            line-height: 145%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            margin: 0 auto;
            width: max-content;
            white-space: nowrap;
        }

        .mais-populares .card-deck-wrapper {
            width: 100%;
            max-width: 1680px;
            margin: 0 auto;
            padding: 22px 18px 10px;
            background: #ffffff;
        }

        .mais-populares #card-deck-scroll {
            display: flex;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            gap: 17px;
            overflow-x: auto;
            overflow-y: visible;
            scroll-behavior: smooth;
            padding: 10px 8px 26px;
            -ms-overflow-style: none;
            scrollbar-width: none;
            scroll-snap-type: x mandatory;
            background: #ffffff !important;
        }

        .mais-populares #card-deck-scroll::-webkit-scrollbar {
            display: none;
        }

        .mais-populares #card-deck-scroll .space-card {
            position: relative;
            width: 275px;
            max-width: 275px;
            flex: 0 0 275px;
            flex-shrink: 0;
            min-width: 275px;
            margin: 0 !important;
            border: none;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            display: block !important;
            text-decoration: none !important;
            background: #ffffff;
            scroll-snap-align: start;
            height: 345px;
        }

        .mais-populares #card-deck-scroll .space-card .space-card-media,
        .mais-populares #card-deck-scroll .space-card .foto-espaco {
            width: 100%;
            height: 100%;
        }

        .mais-populares #card-deck-scroll .space-card .foto-espaco {
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
            transform: scale(1);
            background-size: cover !important;
            background-position: center !important;
        }

        .mais-populares #card-deck-scroll .space-card:hover .foto-espaco {
            transform: scale(1.05);
        }

        .mais-populares #card-deck-scroll .space-card .space-card-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            padding: 16px 16px 14px;
            background: transparent;
        }

        .mais-populares #card-deck-scroll .space-card-name {
            display: block;
            color: #ffffff;
            font-family: "Poppins", sans-serif;
            font-size: 22px;
            font-weight: 600;
            font-style: normal;
            line-height: 100%;
            letter-spacing: 0;
            margin-bottom: 4px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
        }

        .mais-populares #card-deck-scroll .space-card-city {
            color: #ff7854 !important;
            font-family: "Poppins", sans-serif;
            font-size: 17px;
            font-weight: 500;
            font-style: italic;
            line-height: 100%;
            letter-spacing: 0;
            margin: 0;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
        }

        @media (max-width: 1279.98px) {
            .mais-populares #card-deck-scroll .space-card {
                width: 275px;
                max-width: 275px;
                flex-basis: 275px;
                min-width: 275px;
            }
        }

        @media (max-width: 991.98px) {
            .mais-populares .card-deck-wrapper {
                padding: 18px 0 0;
            }

            .mais-populares #card-deck-scroll {
                gap: 17px;
            }

            .mais-populares #card-deck-scroll .space-card {
                width: 275px;
                max-width: 275px;
                flex-basis: 275px;
                min-width: 275px;
            }

            .mais-populares #card-deck-scroll .space-card-name {
                font-size: 24px;
            }

            .mais-populares h5 {
                width: auto;
                max-width: 100%;
                white-space: normal;
                padding: 0 14px;
            }
        }

        @media (max-width: 575.98px) {
            .mais-populares {
                padding: 58px 0 50px !important;
            }

            .mais-populares h4 {
                font-size: 36px;
                line-height: 145%;
                margin-bottom: 10px !important;
            }

            .mais-populares h5 {
                font-size: 16px;
                line-height: 145%;
                font-weight: 500;
                padding: 0 14px;
                width: auto;
                max-width: 100%;
                white-space: normal;
            }

            .mais-populares .card-deck-wrapper {
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                padding: 14px 12px 8px;
            }

            .mais-populares #card-deck-scroll .space-card {
                width: 275px;
                max-width: 275px;
                flex-basis: 275px;
                min-width: 275px;
                height: 345px;
            }

            .mais-populares #card-deck-scroll .space-card-name {
                font-size: 24px;
            }
        }

        .destaques-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 54px;
            height: 54px;
            border: none;
            border-radius: 999px;
            background: transparent !important;
            color: #ff7854;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            font-size: 42px;
            line-height: 1;
            cursor: pointer;
            padding: 0;
            opacity: 1;
            transition: opacity 0.2s ease;
            outline: none;
            box-shadow: none;
            -webkit-tap-highlight-color: transparent;
        }

        .destaques-scroll-btn:hover,
        .destaques-scroll-btn:focus,
        .destaques-scroll-btn:focus-visible {
            background: transparent !important;
            opacity: 0.92;
            color: #ff7854;
            outline: none;
            box-shadow: none !important;
        }

        .destaques-scroll-btn:active {
            background: transparent !important;
            opacity: 0.85;
            outline: none;
            box-shadow: none !important;
        }

        .destaques-scroll-prev { left: 14px; }
        .destaques-scroll-next { right: 14px; }

        .destaques-scroll-btn .carousel-control-prev-icon,
        .destaques-scroll-btn .carousel-control-next-icon {
            background-image: none !important;
            width: 0;
            height: 0;
        }

        .destaques-scroll-prev::before,
        .destaques-scroll-next::before {
            font-family: FontAwesome;
            display: inline-block;
            line-height: 1;
            color: inherit;
            text-shadow:
                0.6px 0 0 currentColor,
                -0.6px 0 0 currentColor,
                0 0.6px 0 currentColor,
                0 -0.6px 0 currentColor;
        }

        .destaques-scroll-prev::before { content: "\f104"; }
        .destaques-scroll-next::before { content: "\f105"; }

        .cta-anuncie-wrap {
            background: #fff;
            padding: 10px 0 52px;
        }

        .cta-anuncie-wrap .container {
            display: flex;
            justify-content: center;
        }

        .cta-anuncie-card {
            background: #ff7854;
            border-radius: 28px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            min-height: 450px;
            width: 1230px;
            max-width: 100%;
            margin: 0;
        }

        .cta-anuncie-content {
            margin: 20px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .cta-anuncie-content h3 {
            color: #0c0c0d;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 48px;
            line-height: 115%;
            letter-spacing: 0;
            vertical-align: middle;
            max-width: 520px;
            margin: 0 0 30px;
        }

        .cta-anuncie-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 222px;
            height: 56px;
            border: none;
            border-radius: 16px;
            background: #121316;
            color: #fff !important;
            text-decoration: none !important;
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            line-height: 110%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            padding: 0;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
            transition:
                background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.22s ease;
        }

        .cta-anuncie-btn:hover,
        .cta-anuncie-btn:focus,
        .cta-anuncie-btn:active,
        .cta-anuncie-btn:visited {
            color: #ffffff !important;
        }

        .cta-anuncie-btn:hover {
            background: #121316;
            transform: translateY(-2px);
            box-shadow:
                0 14px 32px rgba(0, 0, 0, 0.28),
                0 4px 10px rgba(0, 0, 0, 0.14);
        }

        .cta-anuncie-btn:active {
            background: #121316;
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
            transition-duration: 0.12s;
        }

        .cta-anuncie-btn:focus {
            outline: none;
            color: #ffffff !important;
        }

        .cta-anuncie-btn:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.92);
            outline-offset: 3px;
            color: #ffffff !important;
        }

        .cta-anuncie-media {
            position: relative;
            min-height: 280px;
        }

        .cta-anuncie-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 22px 0 0 22px;
        }

        .depoimentos {
            display: none !important;
            background: #ececec !important;
            padding: 84px 0 68px !important;
            pointer-events: none !important;
            user-select: none !important;
        }

        .depoimentos * {
            pointer-events: none !important;
            cursor: default !important;
        }

        .depoimentos .container {
            max-width: 1172px;
        }

        .depoimentos .depoimentos-head {
            margin-bottom: 42px;
        }

        .depoimentos .depoimentos-head h4 {
            color: #0d0d0f;
            font-size: 56px;
            font-weight: 700;
            line-height: 1.05;
            margin: 0 0 14px !important;
            text-align: center;
        }

        .depoimentos .depoimentos-head h5 {
            color: #ff7854;
            font-size: 20px;
            font-weight: 500;
            max-width: 920px;
            margin: 0 auto;
            text-align: center;
            line-height: 1.3;
        }

        .depoimentos .depoimentos-grid {
            display: grid;
            grid-template-columns: repeat(4, 278px);
            gap: 20px;
            width: 1172px;
            max-width: 100%;
            margin: 0 auto;
            justify-content: center;
            row-gap: 20px;
        }

        .depoimentos .depoimento-col {
            display: block;
        }

        .depoimentos .depoimento-card {
            width: 278px;
            height: 357px;
            min-height: 357px;
            background: #ffffff;
            border: 1px solid rgba(255, 120, 84, 0.35);
            border-radius: 16px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            padding: 20px 20px 18px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .depoimentos .depoimento-avatar {
            width: 79px;
            height: 79px;
            border-radius: 999px;
            display: block;
            object-fit: cover;
            background-size: cover !important;
            background-position: center !important;
            margin-bottom: 14px;
            border: 2px solid #ff7854;
        }

        .depoimentos .depoimento-nome {
            color: #111216;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            margin: 0 0 10px;
        }

        .depoimentos .depoimento-cargo {
            color: #7f848c;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            margin: 0 0 16px;
            min-height: 34px;
        }

        .depoimentos .depoimento-texto {
            color: #30343a;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0;
            text-align: center;
            vertical-align: middle;
            margin: 0;
            text-align: center;
        }

        .depoimentos .depoimento-texto::before {
            content: "\201C";
            color: #ff7854;
        }

        .depoimentos .depoimento-texto::after {
            content: "\201D";
            color: #ff7854;
        }

        .blog-story-section {
            background: #070707;
            border-radius: 0;
            overflow: hidden;
            width: 100%;
            box-sizing: border-box;
            padding: 64px 0 72px;
            margin: 0;
            user-select: none !important;
        }

        /* Texto da seção: cursor de texto; links (cards, botões) usam pointer abaixo.
           Evita `.blog-story-section * { cursor: default !important }` — isso anulava o
           pointer nos filhos do <a> (imagem, título), pois * ganhava do inherit do link. */
        .blog-story-section .blog-story-kicker,
        .blog-story-section .blog-story-title,
        .blog-story-section .blog-story-subtitle {
            cursor: default;
        }

        .blog-story-section a,
        .blog-story-section button {
            pointer-events: auto;
            cursor: pointer;
        }

        .blog-story-section a.blog-story-btn[aria-disabled="true"] {
            cursor: not-allowed;
        }

        .blog-story-kicker {
            color: rgba(255, 255, 255, 0.8);
            font-family: "Poppins", sans-serif;
            font-size: 20px;
            font-weight: 600;
            font-style: normal;
            line-height: 100%;
            letter-spacing: 0;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .blog-story-title {
            color: #ffffff;
            width: 100%;
            max-width: 1066px;
            height: auto;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 48px;
            line-height: 115%;
            letter-spacing: 0;
            vertical-align: middle;
            opacity: 1;
            margin: 0 0 14px;
            max-width: 100%;
        }

        .blog-story-subtitle {
            color: rgba(255, 255, 255, 0.78);
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            font-weight: 500;
            font-style: normal;
            line-height: 100%;
            letter-spacing: 0;
            margin: 0 0 40px;
        }

        .blog-story-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            max-width: 100%;
            min-height: 52px;
            border-radius: 16px;
            border: none;
            background: #ff7854;
            color: #111 !important;
            font-family: "Poppins", sans-serif;
            font-size: 20px;
            font-weight: 600;
            font-style: normal;
            line-height: 110%;
            letter-spacing: 0;
            padding: 12px 22px;
            text-decoration: none !important;
            margin: 48px 0 0;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
            transition:
                background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.22s ease;
        }

        .blog-story-btn:hover,
        .blog-story-btn:focus,
        .blog-story-btn:active,
        .blog-story-btn:visited {
            color: #111 !important;
        }

        .blog-story-btn:hover {
            background: #ff6a45;
            transform: translateY(-2px);
            box-shadow:
                0 14px 32px rgba(0, 0, 0, 0.22),
                0 4px 10px rgba(0, 0, 0, 0.12);
        }

        .blog-story-btn:active {
            background: #e86846;
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
            transition-duration: 0.12s;
        }

        .blog-story-btn:focus {
            outline: none;
            color: #111 !important;
        }

        .blog-story-btn:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.92);
            outline-offset: 3px;
            color: #111 !important;
        }

        .blog-story-section a.blog-story-btn[aria-disabled="true"]:hover,
        .blog-story-section a.blog-story-btn[aria-disabled="true"]:active {
            background: #ff7854;
            transform: none;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
        }

        .blog-story-grid {
            row-gap: 18px;
        }

        .blog-story-btn-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .blog-story-card {
            display: block;
            color: #fff;
        }

        .blog-story-card-image-link {
            display: block;
            width: 100%;
            max-width: 310px;
            margin-bottom: 10px;
            border-radius: 16px;
            overflow: hidden;
            line-height: 0;
            text-decoration: none !important;
        }

        .blog-story-card-content {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .blog-story-card-image {
            width: 100%;
            max-width: 310px;
            height: 310px;
            border-radius: 16px;
            object-fit: cover;
            display: block;
            margin-bottom: 0;
            transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
        }

        .blog-story-card-image-link:hover .blog-story-card-image,
        .blog-story-card-image-link:focus-visible .blog-story-card-image {
            transform: scale(1.03);
            filter: brightness(1.06);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        }

        @media (prefers-reduced-motion: reduce) {
            .blog-story-card-image {
                transition: filter 0.2s ease, box-shadow 0.2s ease;
            }

            .blog-story-card-image-link:hover .blog-story-card-image,
            .blog-story-card-image-link:focus-visible .blog-story-card-image {
                transform: none;
            }
        }

        .blog-story-card-tag {
            color: rgba(255, 255, 255, 0.82);
            font-size: 14px;
            margin-bottom: 8px;
            display: block;
        }

        .blog-story-card-title {
            color: #ffffff;
            width: 100%;
            max-width: 357px;
            height: auto;
            font-family: "Poppins", sans-serif;
            font-size: 20px;
            font-weight: 500;
            font-style: medium;
            line-height: 125%;
            letter-spacing: 0;
            opacity: 1;
            margin: 0;
        }

        .cities-highlight-section {
            background: #ececec;
            padding: 62px 0 68px;
        }

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

        .cities-highlight-section .cities-highlight-media {
            opacity: 0;
            transform: translate3d(0, 22px, 0);
        }

        .cities-highlight-title {
            opacity: 0;
            transform: translate3d(0, 22px, 0);
        }

        .cities-highlight-section.is-visible .cities-highlight-title {
            animation: citiesFadeUp 700ms ease-out forwards;
        }

        .cities-highlight-section.is-visible .cities-highlight-media {
            animation: citiesFadeUp 780ms ease-out 120ms forwards;
        }

        .cities-highlight-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 46px;
            align-items: center;
        }

        .cities-highlight-title {
            color: #0d0d0f;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 48px;
            line-height: 145%;
            letter-spacing: 0;
            vertical-align: middle;
            margin: 0 0 26px;
            max-width: 520px;
        }

        .cities-highlight-list {
            list-style: none;
            padding: 0;
            margin: 0;
            max-width: 560px;
        }

        .cities-highlight-list li {
            border-bottom: 1px solid rgba(0, 0, 0, 0.28);
            padding: 10px 0;
            opacity: 0;
            transform: translate3d(0, 18px, 0);
        }

        .cities-highlight-section.is-visible .cities-highlight-list li {
            animation: citiesFadeUp 620ms ease-out forwards;
        }

        .cities-highlight-section.is-visible .cities-highlight-list li:nth-child(1) { animation-delay: 120ms; }
        .cities-highlight-section.is-visible .cities-highlight-list li:nth-child(2) { animation-delay: 190ms; }
        .cities-highlight-section.is-visible .cities-highlight-list li:nth-child(3) { animation-delay: 260ms; }
        .cities-highlight-section.is-visible .cities-highlight-list li:nth-child(4) { animation-delay: 330ms; }

        .cities-highlight-list li:hover,
        .cities-highlight-list li:focus-within {
            border-bottom-color: rgba(255, 120, 84, 0.75);
        }

        .cities-highlight-link {
            color: #212327;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 24px;
            line-height: 145%;
            letter-spacing: 0;
            vertical-align: middle;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.22s ease, transform 0.22s ease;
        }

        .cities-highlight-link:hover {
            color: #FF7854 !important;
            transform: translateX(2px);
        }

        .cities-highlight-link.is-active {
            color: #ff7854;
            font-weight: 500;
        }

        .cities-highlight-link.is-active:hover {
            color: #FF7854 !important;
        }

        .cities-highlight-link.is-disabled {
            color: #7a7d82;
            pointer-events: none;
        }

        .cities-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 16px;
            border-radius: 999px;
            background: #ff7854;
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: .02em;
            text-transform: uppercase;
            padding: 0 7px;
        }

        .cities-highlight-media {
            margin: 0;
            position: relative;
            min-height: 473px;
        }

        .cities-highlight-media-image {
            position: absolute;
            inset: 0;
            width: 100%;
            max-width: 526px;
            height: 473px;
            border-radius: 18px;
            object-fit: cover;
            display: block;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
            opacity: 0;
            transform: scale(1.03);
            transition: opacity 460ms ease, transform 460ms ease;
            will-change: opacity, transform;
        }

        .cities-highlight-media-image.is-active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        .cities-highlight-media::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.1) 100%);
            pointer-events: none;
            z-index: 3;
        }

        @media (max-width: 991.98px) {
            #banner-home .carousel-item img {
                height: 760px !important;
            }

            .home-hero {
                min-height: 700px;
            }

            .cities-highlight-section {
                padding: 46px 0 52px;
            }

            .cities-highlight-wrap {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .cities-highlight-title {
                font-size: 40px;
                line-height: 145%;
                margin-bottom: 16px;
                max-width: none;
            }

            .cities-highlight-link {
                font-size: 22px;
                line-height: 145%;
            }

            .cities-highlight-media {
                display: none;
            }

            .blog-story-section {
                padding: 52px 0 58px;
            }

            .blog-story-title {
                font-size: 48px;
                height: auto;
                line-height: 115%;
            }

            .cta-anuncie-wrap {
                padding: 6px 0 44px;
            }

            .cta-anuncie-card {
                grid-template-columns: 1fr;
                border-radius: 22px;
            }

            .cta-anuncie-content {
                padding: 30px 26px 20px;
            }

            .cta-anuncie-content h3 {
                font-size: 40px;
                line-height: 115%;
                margin-bottom: 20px;
                max-width: none;
            }

            .cta-anuncie-btn {
                font-size: 24px;
                padding: 12px 18px;
            }

            .cta-anuncie-media {
                min-height: 265px;
            }

            .cta-anuncie-media img {
                border-radius: 0 0 22px 22px;
            }

            .depoimentos {
                padding: 58px 0 48px !important;
            }

            .depoimentos .depoimentos-head h4 {
                font-size: 44px;
            }

            .depoimentos .depoimentos-head h5 {
                font-size: 17px;
            }

            .depoimentos .depoimentos-grid {
                grid-template-columns: repeat(2, 278px);
                gap: 20px;
                width: 576px;
                max-width: 100%;
                justify-content: center;
            }

            .depoimentos .depoimento-card {
                width: 278px;
                height: 357px;
                min-height: 357px;
            }

            .depoimentos .depoimento-nome {
                font-size: 17px;
            }

            .depoimentos .depoimento-cargo {
                font-size: 12px;
            }

            .depoimentos .depoimento-texto {
                font-size: 12px;
            }

            .home-hero-overlay {
                padding: 90px 12px 44px;
                align-items: flex-start;
            }

            .home-hero-panel {
                padding: 54px 18px 18px;
                border-radius: 28px;
            }

            .home-hero-title {
                font-size: 38px;
            }

            .home-hero-highlight {
                font-size: 18px;
                margin-bottom: 20px;
            }

            .home-search-bar {
                flex-direction: column;
                align-items: stretch;
                border-radius: 22px;
            }

            .home-search-fields {
                grid-template-columns: 1fr;
                padding-left: 16px;
                padding-right: 16px;
            }

            .home-search-fields .home-search-field + .home-search-field::before {
                display: none;
            }

            .home-search-fields .home-search-field + .home-search-field {
                border-top: 2px solid #bdbdbd;
            }

            .home-search-submit {
                margin: 10px;
                width: calc(100% - 20px);
                box-sizing: border-box;
                min-width: 0;
                border-radius: 16px;
                padding: 14px 18px;
                align-self: stretch;
            }

            /* Em telas pequenas, deixa o hero crescer com o conteúdo para
               evitar que o card de busca seja cortado pelo overflow: hidden. */
            .home-hero {
                overflow: visible;
                min-height: 0;
            }

            #banner-home {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 0;
                overflow: hidden;
            }

            #banner-home .carousel-inner,
            #banner-home .carousel-item {
                height: 100%;
            }

            #banner-home .carousel-item img {
                height: 100% !important;
                min-height: 100%;
                width: 100%;
                object-fit: cover;
            }

            .home-hero-overlay {
                position: relative;
                inset: auto;
                align-items: stretch;
                z-index: 1;
            }

            .home-hero-panel {
                position: relative;
                z-index: 2;
            }

            .event-types-section {
                padding: 60px 0 40px;
            }

            .event-types-title {
                font-size: 40px;
                line-height: 145%;
                font-weight: 600;
                margin-bottom: 32px;
            }

            .event-types-grid {
                display: flex;
                flex-wrap: nowrap;
                gap: 14px;
                padding: 0 24px;
                width: 100%;
                max-width: 100%;
                justify-content: flex-start;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-padding-left: 24px;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .event-types-grid::-webkit-scrollbar {
                display: none;
            }

            .event-type-card {
                width: 183px;
                min-width: 183px;
                max-width: 183px;
                height: 170px;
                min-height: 170px;
                flex: 0 0 183px;
                scroll-snap-align: start;
            }

            .event-type-content {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }

            .event-type-content h6 {
                font-size: 22px;
            }

            .event-type-content p {
                display: none;
            }

            .why-title {
                font-size: 42px;
            }

            .why-slide {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .why-section-slide {
                min-height: 62vh;
                align-items: flex-start;
            }

            .why-image img {
                width: 400px;
                height: 360px;
            }

            .why-control {
                top: auto;
                bottom: 26px;
                transform: none;
            }
        }

        @media (max-width: 767.98px) {
            .home-hero-title {
                font-size: 32px;
            }

            .home-hero-highlight {
                font-size: 16px;
            }
        }

        @media (max-width: 575.98px) {
            .home-hero-title {
                font-size: 32px;
            }

            .home-hero-highlight {
                font-size: 15px;
                margin-bottom: 16px;
            }

            .cities-highlight-section {
                padding: 40px 0 44px;
            }

            .cities-highlight-title {
                font-size: 32px;
                line-height: 145%;
            }

            .cities-highlight-link {
                font-size: 20px;
                line-height: 145%;
            }

            .cities-highlight-media-image {
                height: 250px;
                border-radius: 14px;
            }

            .blog-story-section {
                border-radius: 0;
                width: 100%;
                box-sizing: border-box;
                padding: 42px 0 48px;
                margin: 0;
            }

            .blog-story-title {
                width: 322px;
                max-width: 100%;
                height: auto;
                font-size: 32px;
                line-height: 115%;
                text-align: left;
            }

            .blog-story-subtitle {
                width: 270px;
                max-width: 100%;
                height: auto;
                font-size: 16px;
                font-weight: 500;
                line-height: 100%;
                margin-bottom: 28px;
                text-align: left;
            }

            .blog-story-btn {
                width: 184px;
                height: 46px;
                margin: 36px 0 0;
                padding: 0 16px;
            }

            .blog-story-btn-label {
                width: 164px;
                height: 15px;
                font-size: 14px;
                font-weight: 600;
                line-height: 1.1;
                text-align: center;
                vertical-align: middle;
            }

            .blog-story-card {
                display: flex;
                align-items: flex-start;
                gap: 12px;
            }

            .blog-story-card-image-link {
                flex: 0 0 126px;
                width: 126px;
                min-width: 126px;
                max-width: 126px;
                margin-bottom: 0;
            }

            .blog-story-card-image {
                width: 100%;
                min-width: 0;
                max-width: none;
                height: 125px;
                margin-bottom: 0;
            }

            .blog-story-card-content {
                flex: 1 1 auto;
            }

            .blog-story-card-tag {
                font-size: 13px;
                margin-bottom: 6px;
                text-align: left;
            }

            .blog-story-card-title {
                max-width: none;
                font-size: 16px;
            }

            .cta-anuncie-wrap {
                padding: 4px 0 38px;
            }

            .cta-anuncie-content {
                padding: 26px 18px 18px;
            }

            .cta-anuncie-content h3 {
                font-size: 32px;
                line-height: 115%;
            }

            .cta-anuncie-btn {
                width: 100%;
                font-size: 22px;
            }

            .cta-anuncie-media {
                min-height: 235px;
            }

            .depoimentos .depoimentos-head {
                margin-bottom: 22px;
            }

            .depoimentos .depoimentos-head h4 {
                font-size: 38px;
                margin-bottom: 8px !important;
            }

            .depoimentos .depoimentos-head h5 {
                font-size: 15px;
                padding: 0 8px;
            }

            .depoimentos .depoimento-card {
                padding: 16px 14px 14px;
                min-height: auto;
                width: 100%;
                height: auto;
            }

            .depoimentos .depoimentos-grid {
                grid-template-columns: 1fr;
                width: 100%;
                gap: 14px;
            }

            .depoimentos .depoimento-nome {
                font-size: 16px;
            }

            .depoimentos .depoimento-cargo {
                font-size: 11px;
                margin-bottom: 10px;
            }

            .depoimentos .depoimento-texto {
                font-size: 11px;
            }

            .event-types-title {
                font-size: 32px;
                line-height: 145%;
                font-weight: 600;
                margin-bottom: 24px;
            }

            .event-types-grid {
                display: flex;
                flex-wrap: nowrap;
                gap: 14px;
                padding: 0 24px;
                width: 100%;
                max-width: 100%;
                justify-content: flex-start;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-padding-left: 24px;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .event-types-grid::-webkit-scrollbar {
                display: none;
            }

            .event-type-card {
                width: 183px;
                min-width: 183px;
                max-width: 183px;
                height: 170px;
                min-height: 170px;
                flex: 0 0 183px;
                scroll-snap-align: start;
            }

            .event-type-content h6 {
                font-size: 22px;
            }

            .why-title {
                font-size: 34px;
            }

            .why-image img {
                width: 350px;
                height: 328px;
            }

            .why-bar {
                width: 70px;
                height: 6px;
            }

            .why-section-slide {
                min-height: 58vh;
            }

        }

        /* A partir de ~991px (tablet/mobile) o carrossel desktop sai de cena
           e o card estático entra com o mesmo visual do mobile. */
        @media (max-width: 991.98px) {
            .why-carousel-section {
                padding: 0 0 24px;
            }

            #why-spacevents {
                display: none;
            }

            .why-mobile-static {
                display: block;
                width: 100%;
                max-width: 100%;
                height: 843px;
                margin: 0;
                background: #070707;
                border-radius: 14px;
                overflow: hidden;
                padding: 0 0 16px;
                box-sizing: border-box;
            }

            .why-mobile-hero {
                position: relative;
                margin: 0 0 6px;
            }

            .why-mobile-body {
                padding: 47px 16px 0;
            }

            .why-mobile-static img {
                width: 100%;
                height: 322px;
                object-fit: cover;
                display: block;
                border-radius: 0;
                margin-bottom: 0;
                -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.35) 88%, rgba(0, 0, 0, 0) 100%);
                mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.35) 88%, rgba(0, 0, 0, 0) 100%);
            }

            .why-mobile-title {
                color: #ffffff;
                font-family: Poppins, sans-serif;
                width: 332px;
                height: 126px;
                font-size: 40px;
                font-weight: 600;
                line-height: 118%;
                letter-spacing: 0;
                vertical-align: middle;
                opacity: 1;
                margin: 0;
                position: absolute;
                left: 16px;
                right: 16px;
                bottom: -70px;
                z-index: 2;
                text-shadow: 0 4px 14px rgba(0, 0, 0, 0.75);
            }

            .why-mobile-title .accent {
                color: #ff7854;
            }

            .why-mobile-step {
                color: #ff7854;
                font-family: Poppins, sans-serif;
                font-size: 12px;
                font-weight: 500;
                line-height: 145%;
                letter-spacing: 0;
                vertical-align: middle;
                margin: 0 0 4px;
                text-transform: uppercase;
            }

            .why-mobile-headline {
                color: #ffffff;
                font-family: Poppins, sans-serif;
                width: 308px;
                height: 58px;
                font-size: 18px;
                font-weight: 600;
                line-height: 145%;
                letter-spacing: 0;
                vertical-align: middle;
                margin: 0 0 8px;
            }

            .why-mobile-copy {
                color: rgba(255, 255, 255, 0.9);
                font-family: Poppins, sans-serif;
                font-size: 12px;
                font-weight: 500;
                line-height: 130%;
                letter-spacing: 0;
                vertical-align: middle;
                margin: 0 0 12px;
            }

            .why-mobile-headline.is-second {
                width: 308px;
                height: 58px;
            }

            .why-mobile-copy.is-first {
                width: 308px;
                height: 32px;
                line-height: 130%;
            }

            .why-mobile-copy.is-second {
                width: 308px;
                height: 34px;
                line-height: 145%;
            }

            .why-mobile-headline.is-third {
                width: 308px;
                height: 58px;
                color: #ff7854;
                line-height: 145%;
            }
        }

        /* Pop-up de alerta personalizado (home) */
        .home-alert { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 16px; }
        .home-alert.is-open { display: flex; }
        .home-alert__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.45); }
        .home-alert__dialog { position: relative; background: linear-gradient(180deg, rgba(255, 121, 89, 1) 0%, rgba(255, 255, 255, 1) 60%); border-radius: 22px; width: 100%; max-width: 380px; overflow: hidden; box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22); text-align: center; font-family: 'Poppins', sans-serif; }
        .home-alert__close { position: absolute; top: 14px; right: 16px; width: 28px; height: 28px; border: 0; background: transparent; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; z-index: 2; padding: 0; }
        .home-alert__close:hover, .home-alert__close:focus { outline: none; opacity: 0.85; }
        .home-alert__head { padding: 44px 24px 30px; }
        .home-alert__icon-circle { width: 76px; height: 76px; border-radius: 50%; background: #fff; margin: 0 auto; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18); }
        .home-alert__icon-circle i { font-size: 32px; color: #1f1f1f; }
        .home-alert__title { font-size: 18px; font-weight: 700; color: #1f1f1f; margin: 22px 24px 10px; line-height: 1.25; }
        .home-alert__message { font-size: 14px; color: #333; margin: 0 24px 22px; line-height: 1.45; }
        .home-alert__message strong { font-weight: 700; }
        .home-alert__ok { background: #fff; border: 1px solid #dcdcdc; border-radius: 999px; padding: 9px 36px; font-size: 14px; font-weight: 500; color: #1f1f1f; cursor: pointer; margin: 0 auto 26px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); }
        .home-alert__ok:hover { border-color: #FF7854; color: #FF7854; }
        .home-alert__ok:focus { outline: none; }
    