body {
    font-family: "Montserrat", Arial, sans-serif;
}

.grecaptcha-badge {
    visibility: hidden;
}

.website-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.login-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ea580c;
    isolation: isolate;
    cursor: pointer;
    border: none;
}

.login-btn:not(:disabled):hover {
    background-color: #ea580c;
}

.login-btn > span {
    position: relative;
    z-index: 2;
}

.login-btn:not(:disabled)::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #fb923c 0%, #f97316 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.login-btn:not(:disabled):hover::after {
    transform: scaleX(1);
}

.website-submit-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 12rem;
    border: 1px solid rgba(251, 146, 60, 0.4);
    background-color: #ea580c;
    cursor: pointer;
    isolation: isolate;
}

.website-submit-btn:not(:disabled):hover {
    background-color: #ea580c;
}

.website-submit-btn:not(:disabled)::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #fb923c 0%, #f97316 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.website-submit-btn:not(:disabled):hover::after {
    transform: scaleX(1);
}

.website-submit-btn > span,
.website-submit-btn > * {
    position: relative;
    z-index: 2;
}

.website-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.home-cinematic-overlay {
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.45) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.65) 100%);
}

.home-glass-card {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-header-login {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Logo do header — compacto no mobile (não depender só do Tailwind CDN) */
header a.shrink-0 img {
    height: 1.375rem;
    width: auto;
}

@media (min-width: 768px) {
    header a.shrink-0 img {
        height: 2.5rem;
    }
}

/* Header nav: não depender só do Tailwind CDN para exibir o menu */
header nav[aria-label="Menu principal"] {
    display: none;
    align-items: center;
}

header nav[aria-label="Acesso rápido"] {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    header nav[aria-label="Menu principal"] {
        display: flex;
    }

    header nav[aria-label="Acesso rápido"] {
        display: none;
    }
}

.home-nav-dropdown:focus-within .home-nav-dropdown-panel,
.home-nav-dropdown:hover .home-nav-dropdown-panel {
    pointer-events: auto;
    opacity: 1;
}

.home-nav-dropdown:focus-within button svg,
.home-nav-dropdown:hover button svg {
    transform: rotate(180deg);
}

.page-viewport {
    height: 100vh;
    overflow: hidden;
}

html:has(.page-viewport),
html:has(.page-viewport) body {
    overflow: hidden;
    height: 100%;
}

@media (max-width: 767px) {
    .home-cinematic.page-viewport {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    html:has(.home-cinematic.page-viewport),
    html:has(.home-cinematic.page-viewport) body {
        overflow: auto;
        height: auto;
    }

    .home-cinematic main {
        padding-bottom: 6rem;
    }
}

.website-content h2,
.website-content h3 {
    color: #0c2e60;
}

.website-content p,
.website-content li {
    line-height: 1.7;
}

.website-content .form-control {
    border-radius: 0.375rem;
}

.about-segment-card {
    display: block;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-segment-card:hover {
    border-color: rgba(251, 146, 60, 0.4);
    transform: translateY(-2px);
}

.about-segment-img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-segment-card:hover .about-segment-img {
    transform: scale(1.05);
}

.home-brand-logo {
    opacity: 0.75;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-brand-logo:hover {
    opacity: 1;
    transform: scale(1.04);
}

/* ── Home page: rhythm, light bands, motion ── */
.home-page {
    overflow-x: hidden;
}

.home-hero {
    isolation: isolate;
}

.home-hero-media {
    will-change: transform;
    transform: scale(1.08);
}

.home-wave-divider {
    position: relative;
    z-index: 10;
    height: 5.5rem;
    margin-top: -1px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 768px) {
    .home-wave-divider {
        height: 7rem;
    }
}

.home-light-band {
    position: relative;
    z-index: 10;
    background: #fff;
    color: #171717;
}

.home-light-band .home-eyebrow {
    color: #ea580c;
}

.home-light-band h2,
.home-light-band h3 {
    color: #0a0a0a;
}

.home-light-band p {
    color: #525252;
}

.home-stat-card {
    background: transparent;
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 0;
    box-shadow: none;
}

.home-stats-grid .home-stat-card:last-child {
    border-right: none;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .home-stats-grid .home-stat-card {
        border-right: none;
    }

    .home-stats-grid .home-stat-card:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.07);
    }
}

@media (max-width: 639px) {
    .home-stats-grid .home-stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .home-stats-grid .home-stat-card:last-child {
        border-bottom: none;
    }
}

.home-stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ea580c;
}

@media (min-width: 768px) {
    .home-stat-number {
        font-size: 2.25rem;
    }
}

.home-section-dark {
    background: linear-gradient(180deg, #0a0a0a 0%, #171717 50%, #0a0a0a 100%);
}

.home-section-panel {
    position: relative;
    overflow: hidden;
}

.home-section-panel::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.home-segments-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .home-segments-showcase {
        gap: 2.5rem;
    }
}

.home-segment-showcase {
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-segment-showcase:hover {
    border-color: rgba(251, 146, 60, 0.35);
    box-shadow: 0 28px 56px -24px rgba(0, 0, 0, 0.65);
    transform: translateY(-2px);
}

.home-segment-showcase__link {
    position: relative;
    display: block;
    min-height: 27rem;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

@media (min-width: 768px) {
    .home-segment-showcase__link {
        min-height: 33rem;
    }
}

.home-segment-showcase__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-segment-showcase--reverse .home-segment-showcase__bg {
    object-position: center right;
}

.home-segment-showcase:hover .home-segment-showcase__bg {
    transform: scale(1.04);
}

.home-segment-showcase__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0) 0%,
        rgba(10, 10, 10, 0.02) 28%,
        rgba(10, 10, 10, 0.45) 52%,
        rgba(10, 10, 10, 0.82) 68%,
        rgba(10, 10, 10, 0.96) 82%,
        rgba(10, 10, 10, 0.98) 100%
    );
}

.home-segment-showcase--reverse .home-segment-showcase__shade {
    background: linear-gradient(
        270deg,
        rgba(10, 10, 10, 0) 0%,
        rgba(10, 10, 10, 0.02) 28%,
        rgba(10, 10, 10, 0.45) 52%,
        rgba(10, 10, 10, 0.82) 68%,
        rgba(10, 10, 10, 0.96) 82%,
        rgba(10, 10, 10, 0.98) 100%
    );
}

@media (max-width: 767px) {
    .home-segment-showcase__shade,
    .home-segment-showcase--reverse .home-segment-showcase__shade {
        background: linear-gradient(
            to top,
            rgba(10, 10, 10, 0.98) 0%,
            rgba(10, 10, 10, 0.88) 32%,
            rgba(10, 10, 10, 0.35) 58%,
            rgba(10, 10, 10, 0) 100%
        );
    }
}

.home-segment-showcase__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
    min-height: 38rem;
    margin-left: auto;
    width: 100%;
    max-width: 100%;
    padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
    .home-segment-showcase__body {
        justify-content: center;
        min-height: 48rem;
        max-width: 46%;
        padding: 2.5rem 2.5rem 2.5rem 1.75rem;
    }

    .home-segment-showcase--reverse .home-segment-showcase__body {
        margin-left: 0;
        margin-right: auto;
        padding: 2.5rem 1.75rem 2.5rem 2.5rem;
    }
}

.home-segment-showcase__brand {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fb923c;
}

.home-segment-showcase__title {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fafafa;
}

@media (min-width: 768px) {
    .home-segment-showcase__title {
        font-size: 1.75rem;
    }
}

.home-segment-showcase__text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #d4d4d4;
}

@media (min-width: 768px) {
    .home-segment-showcase__text {
        font-size: 0.9rem;
        line-height: 1.65;
    }
}

.home-segment-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fdba74;
    transition: color 0.2s ease, gap 0.2s ease;
}

.home-segment-showcase:hover .home-segment-showcase__cta {
    color: #fb923c;
    gap: 0.65rem;
}

.home-segments-bento {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .home-segments-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-segments-bento {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-segment-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}

.home-segment-card:hover {
    border-color: rgba(251, 146, 60, 0.45);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55);
}

.home-segment-card .about-segment-img {
    height: 13rem;
}

.home-brand-logo--light {
    opacity: 0.85;
    filter: none;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.35s ease;
}

.home-brand-logo--light:hover {
    opacity: 1;
    transform: scale(1.06);
}

.home-feature-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.75rem;
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.home-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 146, 60, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.home-story-visual {
    will-change: transform;
    border-radius: 1.25rem;
    overflow: visible;
    padding: 1.25rem 0.75rem    
}

.home-historia-svg {
    width: 100%;
    height: auto;
    display: block;
}

.home-historia-flow {
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: home-historia-draw 2.2s ease forwards 0.4s;
}

.home-historia-flow--delay {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation-delay: 0.9s;
}

.home-historia-flow--delay2 {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation-delay: 1.1s;
}

.home-historia-dot {
    animation: home-historia-pulse 3s ease-in-out infinite;
}

.home-historia-dot--delay {
    animation-delay: 1.2s;
}

@keyframes home-historia-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes home-historia-pulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.home-cta-parallax {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.home-cta-parallax-bg {
    position: absolute;
    inset: -15% 0;
    will-change: transform;
    background-size: cover;
    background-position: center;
}

.home-cta-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(234, 88, 12, 0.25) 100%);
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Zoje-style intro & section animations */
[data-intro],
[data-anim] {
    opacity: 0;
    transition:
        opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-intro].is-visible,
[data-anim].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}

[data-intro="0"],
[data-anim="0"] { transform: translate3d(-2.5rem, 0, 0); }
[data-intro="100"],
[data-anim="1"] { transform: translate3d(-2.5rem, 0, 0); }
[data-intro="200"],
[data-anim="2"] { transform: translate3d(-2.5rem, 0, 0); }
[data-intro="300"],
[data-anim="3"] { transform: translate3d(0, 2.5rem, 0); }
[data-intro="400"],
[data-anim="4"] { transform: translate3d(0, 2.5rem, 0); }
[data-intro="500"],
[data-anim="5"] { transform: translate3d(0, 2.5rem, 0); }
[data-intro="600"],
[data-anim="6"] { transform: translate3d(2.5rem, 0, 0); }
[data-intro="700"],
[data-anim="7"] { transform: translate3d(2.5rem, 2.5rem, 0); }
[data-intro="800"],
[data-anim="8"] { transform: translate3d(0, 2.5rem, 0); }
[data-intro="900"],
[data-anim="9"] { transform: translate3d(-2.5rem, 0, 0); }
[data-intro="1000"],
[data-anim="10"] { transform: translate3d(2.5rem, 0, 0); }
[data-intro="1100"],
[data-anim="11"] { transform: translate3d(0, 2.5rem, 0); }
[data-intro="1200"],
[data-anim="12"] { transform: translate3d(-2.5rem, 0, 0); }

.home-section-full {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
}

.home-headline-sm {
    display: block;
    font-size: clamp(0.65rem, 1.4vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fb923c;
}

.home-headline-lg {
    display: block;
    margin-top: 0.35rem;
    font-size: clamp(2rem, 6.5vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.home-hero-content {
    position: relative;
    z-index: 10;
    max-width: 52rem;
}

.home-scroll-hint {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    animation: home-scroll-bounce 2.2s ease-in-out infinite;
}

.home-scroll-hint svg {
    width: 1.1rem;
    height: 1.1rem;
    opacity: 0.7;
}

@keyframes home-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.home-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.home-blob--orange {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35) 0%, rgba(249, 115, 22, 0) 70%);
    filter: blur(40px);
    animation: home-blob-drift 9s ease-in-out infinite alternate;
}

.home-blob--white {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px);
    animation: home-blob-drift 11s ease-in-out infinite alternate-reverse;
}

.home-blob--dark {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
    filter: blur(30px);
}

@keyframes home-blob-drift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

.home-curve-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background: #fff;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.15);
    z-index: 5;
}

.home-curve-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4.5rem;
    background: inherit;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.2);
    z-index: 5;
}

.home-section-dark .home-curve-bottom {
    background: #fff;
}

.home-float-slow {
    animation: home-float 6s ease-in-out infinite;
}

.home-float-mid {
    animation: home-float 4.5s ease-in-out infinite reverse;
}

@keyframes home-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.home-hero .home-headline-lg {
    color: #fff;
}

.home-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.home-section-panel .home-headline-lg {
    color: #fff;
}

.home-section-dark .home-headline-lg {
    color: #fff;
}

.home-final-cta .home-blob--orange {
    width: 28rem;
    height: 28rem;
    right: -8rem;
    bottom: -6rem;
}

.home-final-cta .home-blob--white {
    width: 20rem;
    height: 20rem;
    left: -4rem;
    top: 10%;
}

.home-section-stats .home-curve-top {
    margin-top: -1px;
}

.home-section-brands {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.home-brands-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
    margin-top: 0;
}

.home-brands-orbit__core {
    grid-column: 1 / -1;
    max-width: 36rem;
    margin-inline: auto;
    text-align: center;
}

.home-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.home-brand-card__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9.5rem;
    height: 3.75rem;
    padding: 0.35rem;
}

.home-brand-card__logo .home-brand-logo--light {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 9rem;
    max-height: 3.25rem;
    object-fit: contain;
    object-position: center;
    opacity: 0.65;
    filter: grayscale(100%);
    transform: none;
    transition: filter 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
}

.home-brand-card:hover .home-brand-card__logo .home-brand-logo--light,
.home-brand-card:focus-within .home-brand-card__logo .home-brand-logo--light {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

.home-brand-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    opacity: 1;
    transform: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-brand-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    color: #737373;
    background: rgba(0, 0, 0, 0.04);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.home-brand-social__link:hover,
.home-brand-social__link:focus-visible {
    color: #ea580c;
    background: rgba(234, 88, 12, 0.1);
    transform: translateY(-1px);
}

.home-brand-social__icon {
    width: 0.95rem;
    height: 0.95rem;
    display: block;
}

@media (min-width: 1024px) {
    .home-brands-orbit {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-template-rows: auto auto auto auto;
        gap: 2rem 1.5rem;
        align-items: center;
        justify-items: center;
        max-width: 68rem;
        margin-inline: auto;
        padding-top: 1rem;
    }

    .home-brands-orbit__core {
        grid-column: 2 / 5;
        grid-row: 2 / 4;
        align-self: center;
        padding: 1.5rem 1rem;
    }

    .home-brands-orbit__item--zoje { grid-column: 2; grid-row: 1; }
    .home-brands-orbit__item--supernova { grid-column: 3; grid-row: 1; }
    .home-brands-orbit__item--dollor { grid-column: 4; grid-row: 1; }
    .home-brands-orbit__item--baoyu { grid-column: 1; grid-row: 2; }
    .home-brands-orbit__item--ppk { grid-column: 1; grid-row: 3; }
    .home-brands-orbit__item--mak { grid-column: 5; grid-row: 2; }
    .home-brands-orbit__item--sewpower { grid-column: 5; grid-row: 3; }
    .home-brands-orbit__item--makprime { grid-column: 2; grid-row: 4; }
    .home-brands-orbit__item--makauto { grid-column: 3; grid-row: 4; }
    .home-brands-orbit__item--ppkmoto { grid-column: 4; grid-row: 4; }

    .home-brand-card__logo {
        width: 11rem;
        height: 4.25rem;
    }

    .home-brand-card__logo .home-brand-logo--light {
        max-width: 10.5rem;
        max-height: 3.75rem;
    }

    .home-brand-social {
        opacity: 0;
        transform: translateY(4px);
        pointer-events: none;
    }

    .home-brand-card:hover .home-brand-social,
    .home-brand-card:focus-within .home-brand-social {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.home-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a0a 0%, #141414 45%, #1a1008 100%);
}

.home-final-cta__grid {
    min-height: min(100svh, 56rem);
}

.home-final-cta__content {
    max-width: 36rem;
}

.about-page .home-final-cta__grid {
    min-height: 0;
}

@media (min-width: 1024px) {
    .home-final-cta__grid {
        min-height: 100svh;
    }

    .home-final-cta__content {
        grid-column: 2;
        justify-self: end;
    }
}

.home-partnership-visual {
    position: relative;
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
}

.home-partnership-visual img,
.home-partnership-visual svg,
.home-partnership-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

@media (min-width: 768px) {
    .home-partnership-visual {
        max-width: 44rem;
    }
}

@media (min-width: 1024px) {
    .home-final-cta__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .home-partnership-visual {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 52rem;
        margin: 0;
        transform: none;
        pointer-events: none;
        z-index: 1;
        justify-self: start;
        align-self: center;
    }

    .home-partnership-visual.home-float-slow {
        animation: home-float 6s ease-in-out infinite;
    }

    .home-partnership-visual svg,
    .home-partnership-svg {
        filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.4));
        transform: scale(1.15);
        transform-origin: center left;
    }
}

.home-partnership-flow {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: home-partnership-draw 2.4s ease forwards 0.6s;
}

.home-partnership-bar {
    transform-box: fill-box;
    transform-origin: center bottom;
    transform: scaleY(0);
    animation: home-partnership-grow 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.home-partnership-bar:nth-child(2) { animation-delay: 1s; }
.home-partnership-bar:nth-child(3) { animation-delay: 1.15s; }
.home-partnership-bar:nth-child(4) { animation-delay: 1.3s; }
.home-partnership-bar:nth-child(5) { animation-delay: 1.45s; }

.home-partnership-dot {
    animation: home-partnership-pulse 3s ease-in-out infinite;
}

.home-partnership-dot:nth-child(2) { animation-delay: 0.8s; }
.home-partnership-dot:nth-child(3) { animation-delay: 1.6s; }

@keyframes home-partnership-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes home-partnership-grow {
    to { transform: scaleY(1); }
}

@keyframes home-partnership-pulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.35); }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-intro],
    [data-anim] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-hero-media,
    .home-story-visual,
    .home-blob {
        transform: none !important;
        animation: none !important;
    }

    .home-scroll-hint {
        animation: none;
    }

    .home-float-slow,
    .home-float-mid {
        animation: none;
    }

    .home-historia-flow,
    .home-historia-dot {
        animation: none !important;
    }

    .home-partnership-visual.home-float-slow {
        animation: none;
    }

    .home-partnership-visual svg,
    .home-partnership-svg {
        transform: none;
    }
}

.website-form-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #f5f5f5;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.website-form-input:hover:not(:focus):not(:disabled) {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.website-form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.website-form-input:focus {
    border-color: rgba(249, 115, 22, 0.55);
    background: rgba(255, 255, 255, 0.09);
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.website-form-field {
    display: flex;
    flex-direction: column;
}

.website-form-label {
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #d4d4d4;
    letter-spacing: 0.01em;
}

.website-form-label .required {
    color: #fb923c;
    margin-right: 0.125rem;
}

.website-form-hint {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: rgba(163, 163, 163, 0.9);
}

.website-form-hint.is-error {
    color: #fca5a5;
}

.website-form-hint.is-success {
    color: #86efac;
}

.website-form-section {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
}

@media (min-width: 768px) {
    .website-form-section {
        padding: 1.5rem;
    }
}

.website-form-section-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.website-form-section-title::before {
    content: "";
    width: 0.25rem;
    height: 1.125rem;
    border-radius: 9999px;
    background: #f97316;
    flex-shrink: 0;
}

.has-error .website-form-input,
.website-form-input.has-error {
    border-color: rgba(248, 113, 113, 0.65);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.help-block.with-errors,
.website-form-field .help-block {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: #fca5a5;
}

textarea.website-form-input {
    min-height: 9rem;
    resize: vertical;
}

select.website-form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a3a3a3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

select.website-form-input option {
    background: #171717;
    color: #f5f5f5;
}

.website-contact-hours {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.25);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.website-contact-hours__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.website-contact-hours__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.website-contact-hours__title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fb923c;
}

.website-contact-hours__text {
    margin-top: 0.25rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #e5e5e5;
}

.website-contact-hours__text strong {
    color: #fafafa;
    font-weight: 600;
}

.website-contact-table {
    border-collapse: collapse;
}

.website-contact-table thead {
    background: rgba(255, 255, 255, 0.04);
}

.website-contact-table th {
    padding: 0.875rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a3a3a3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.website-contact-table td {
    padding: 1rem 1.25rem;
    color: #e5e5e5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.website-contact-table tbody tr:last-child td {
    border-bottom: none;
}

.website-contact-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.website-contact-table td:first-child {
    font-weight: 600;
    color: #fff;
}

.website-contact-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-weight: 500;
    transition: color 0.2s ease;
}

.website-contact-wa:hover {
    color: #86efac;
}

.website-file-upload {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    border-radius: 0.75rem;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.website-file-upload:hover {
    border-color: rgba(249, 115, 22, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.website-file-upload:has(input:focus) {
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.website-legal-content {
    color: #d4d4d4;
}

.website-legal-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}

.website-legal-text,
.website-legal-list {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: #a3a3a3;
}

.website-legal-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.625rem;
}

.website-legal-list li {
    position: relative;
    padding-left: 1rem;
}

.website-legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 9999px;
    background: #f97316;
}

ol.website-legal-list {
    list-style: none;
    counter-reset: legal-item;
}

ol.website-legal-list li {
    counter-increment: legal-item;
    padding-left: 1.75rem;
}

ol.website-legal-list li::before {
    content: counter(legal-item) ")";
    top: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: #fb923c;
    font-weight: 700;
    font-size: 0.8125rem;
}

/* ── Public site footer (dark) ── */
.site-footer {
    position: relative;
    background: #1e1e1eba;
    color: #d4d4d4;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
    max-width: 80rem;
    margin-inline: auto;
    padding: 3rem 1.25rem 2rem;
}

@media (min-width: 768px) {
    .site-footer__inner {
        padding-inline: 2rem;
    }
}

.site-footer__grid {
    display: grid;
    gap: 2rem 2.5rem;
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
        gap: 2.5rem 3rem;
    }
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 640px) {
    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .site-footer__brand {
        grid-column: auto;
    }
}

.site-footer__logo {
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__logo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.site-footer__logo img {
    height: 2.5rem;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .site-footer__logo img {
        height: 2.75rem;
    }
}

.site-footer__tagline {
    max-width: 26rem;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #a3a3a3;
}

.site-footer__hours {
    margin-top: 1rem;
    max-width: 26rem;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #d4d4d4;
}

.site-footer__hours strong {
    color: #fafafa;
    font-weight: 600;
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.625rem 1.125rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(249, 115, 22, 0.45);
    background: #ea580c;
    color: #fafafa;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__cta:hover {
    background: #f97316;
    border-color: rgba(249, 115, 22, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgba(234, 88, 12, 0.45);
}

.site-footer__phones {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.7;
    color: #737373;
}

.site-footer__phones-label {
    display: inline-block;
    margin-right: 0.35rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fb923c;
}

.site-footer__title {
    margin-bottom: 0.875rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fafafa;
}

.site-footer__title--spaced {
    margin-top: 1.5rem;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #a3a3a3;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: #ea580c;
    transition: width 0.2s ease, margin 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: #fafafa;
    transform: translateX(2px);
}

.site-footer__links a:hover::before,
.site-footer__links a:focus-visible::before {
    width: 0.5rem;
    margin-right: 0.4rem;
}

.site-footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}

.site-footer__copy {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #737373;
}

.site-footer__note {
    font-size: 0.625rem;
    color: #525252;
    letter-spacing: 0.02em;
}

/* ── Home WhatsApp widget ── */
.home-wa-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 60;
    font-family: "Montserrat", system-ui, sans-serif;
}

.home-wa-fab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border: none;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.65);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-wa-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.75);
}

.home-wa-fab[aria-expanded="true"] {
    transform: rotate(0deg) scale(0.96);
}

.home-wa-fab__icon {
    width: 1.85rem;
    height: 1.85rem;
}

.home-wa-fab__pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(37, 211, 102, 0.55);
    animation: home-wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes home-wa-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.45); opacity: 0; }
}

.home-wa-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.85rem);
    width: min(22rem, calc(100vw - 2.5rem));
    border-radius: 1rem;
    overflow: hidden;
    background: #efeae2;
    box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.55);
    transform-origin: right bottom;
    animation: home-wa-panel-in 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-wa-panel[hidden] {
    display: none;
}

@keyframes home-wa-panel-in {
    from { opacity: 0; transform: scale(0.92) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.home-wa-panel__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: #075e54;
    color: #fff;
}

.home-wa-panel__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.875rem;
    font-weight: 700;
}

.home-wa-panel__meta {
    flex: 1;
    min-width: 0;
}

.home-wa-panel__title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.home-wa-panel__status {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.8);
}

.home-wa-panel__dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #25d366;
}

.home-wa-panel__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.2s ease;
}

.home-wa-panel__close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.home-wa-panel__chat {
    max-height: 22rem;
    overflow-y: auto;
    padding: 1rem 0.85rem 0.85rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 45%),
        #e5ddd5;
}

.home-wa-bubble {
    position: relative;
    max-width: 92%;
    margin-bottom: 0.85rem;
    padding: 0.65rem 0.75rem 1.35rem;
    border-radius: 0.5rem 0.5rem 0.5rem 0.15rem;
    background: #fff;
    color: #303030;
    font-size: 0.8125rem;
    line-height: 1.45;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.home-wa-bubble p + p {
    margin-top: 0.35rem;
}

.home-wa-bubble__time {
    position: absolute;
    right: 0.55rem;
    bottom: 0.35rem;
    font-size: 0.625rem;
    color: #8696a0;
}

.home-wa-segments {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.home-wa-segment {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.65rem;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-wa-segment:hover,
.home-wa-segment:focus-visible {
    border-color: rgba(37, 211, 102, 0.45);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.35);
    outline: none;
}

.home-wa-segment__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: #dcf8c6;
    color: #075e54;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.home-wa-segment__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.home-wa-segment__text strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #111;
}

.home-wa-segment__text small {
    font-size: 0.6875rem;
    color: #667781;
}

@media (prefers-reduced-motion: reduce) {
    .home-wa-fab__pulse {
        animation: none;
    }

    .home-wa-panel {
        animation: none;
    }
}

/* Onde Estamos */
.website-place-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .website-place-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .website-place-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.website-place-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.website-place-card:hover {
    border-color: rgba(249, 115, 22, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.website-place-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.website-place-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.website-place-card:hover .website-place-card__img {
    transform: scale(1.03);
}

.website-place-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.website-place-card__region {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fb923c;
}

.website-place-card__title {
    margin-top: 0.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}

.website-place-card__address {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #a3a3a3;
}

.website-place-card__segments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.875rem;
    padding: 0;
    list-style: none;
}

.website-place-card__segments li {
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.25rem 0.625rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
}

.website-place-map {
    position: relative;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16 / 9;
}

.website-place-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.website-place-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fb923c;
    transition: color 0.2s ease;
}

.website-place-card__link:hover {
    color: #fdba74;
}

/* NPS — escala 0–10 */
.website-nps-scale__legend {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.website-nps-scale__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .website-nps-scale__grid {
        grid-template-columns: repeat(11, minmax(0, 1fr));
        gap: 0.625rem;
    }
}

.website-nps-scale__option {
    position: relative;
    cursor: pointer;
}

.website-nps-scale__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.website-nps-scale__option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.website-nps-scale__option:hover span {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.22);
}

.website-nps-scale__option input:focus-visible + span {
    outline: 2px solid #fb923c;
    outline-offset: 2px;
}

.website-nps-scale__option input:checked + span {
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.55);
}

.website-nps-scale__option--low input:checked + span {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.website-nps-scale__option--mid input:checked + span {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.website-nps-scale__option--high input:checked + span {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

@media (max-width: 639px) {
    .website-nps-scale__legend {
        flex-direction: column;
        align-items: flex-start;
    }

    .website-nps-scale__option span {
        min-height: 2.5rem;
        font-size: 0.8125rem;
    }
}

.news-detail__content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #d4d4d8;
}

.news-detail__content h1,
.news-detail__content h2,
.news-detail__content h3 {
    color: #fff;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.news-detail__content p {
    margin: 0 0 1rem;
}

.news-detail__content ul,
.news-detail__content ol {
    margin: 0 0 1rem 1.25rem;
}

.news-detail__content a {
    color: #fb923c;
    text-decoration: underline;
}

.news-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1rem 0;
}

.home-news-card {
    text-decoration: none;
    color: inherit;
}

.home-news-card:hover,
.home-news-card:focus {
    text-decoration: none;
    color: inherit;
}

