body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

/* Efeito de Vidro Acetinado (Satin/Glassmorphism) */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.dark-glass-panel {
    background: rgba(16, 18, 22, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradiente Metálico e Acetinado Zortea */
.satin-red {
    background: linear-gradient(135deg, #FF3E46 0%, #E31C24 60%, #9C050A 100%);
    box-shadow: 0 4px 20px rgba(227, 28, 36, 0.35), inset 0 2px 3px rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 9999px;
}

.satin-red:hover {
    background: linear-gradient(135deg, #FF555C 0%, #F5252D 50%, #B30006 100%);
    box-shadow: 0 6px 25px rgba(227, 28, 36, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Efeito de Reflexo Metálico Dinâmico nos Cards */
.metal-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.metal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 55%
    );
    transform: rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.metal-card:hover::before {
    transform: translate(50%, 50%) rotate(45deg);
}

/* Revelações Animadas de Conteúdo no Scroll (Unfolding Effects) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Pulsação de Localização */
@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(227, 28, 36, 0.7); }
    70% { transform: scale(1.1); opacity: 0.4; box-shadow: 0 0 0 12px rgba(227, 28, 36, 0); }
    100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(227, 28, 36, 0); }
}

.pulse-pin {
    animation: pulseGlow 2s infinite;
}

#store-locator-map {
    min-height: 420px;
    z-index: 0;
}

#store-locator-map .leaflet-control-zoom a {
    color: #1e293b;
}

.store-locator-marker {
    background: transparent;
    border: none;
}

.store-locator-popup .leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
    padding: 0;
    overflow: hidden;
}

.store-locator-popup .leaflet-popup-content {
    margin: 0;
    width: 260px !important;
}

.store-locator-popup .leaflet-popup-tip {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.store-locator-popup-card__image {
    width: 100%;
    height: 7.5rem;
    object-fit: cover;
    display: block;
}

.store-locator-popup-card__body {
    padding: 0.85rem 1rem 1rem;
}

.store-locator-popup-card__client {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    margin-bottom: 0.65rem;
    padding: 0.35rem 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.store-locator-popup-card__client-logo {
    display: block;
    max-height: 2rem;
    max-width: 9rem;
    width: auto;
    object-fit: contain;
}

.store-locator-popup-card__location {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.25rem;
    font-family: "Geist Sans", Geist, sans-serif;
}

.store-locator-popup-card__project {
    font-size: 0.8rem;
    font-weight: 600;
    color: #E31C24;
    line-height: 1.35;
}

.hero-slide-media {
    z-index: 0;
}

.hero-slide-video,
.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero-slide.opacity-100 .hero-slide-video,
.hero-slide.opacity-100 .hero-slide-image {
    transform: scale(1.08);
}

.hero-slide-media__overlay {
    background: linear-gradient(180deg, rgba(8, 9, 11, 0.4) 0%, rgba(8, 9, 11, 0.85) 100%);
}

.growth-chart .growth-bar {
    transform: scaleY(0);
    transform-origin: center bottom;
    transform-box: fill-box;
}

.growth-chart .growth-area {
    opacity: 0;
}

.growth-chart .growth-curve {
    fill: none;
    stroke: #E31C24;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.growth-chart .growth-point {
    opacity: 0;
}

.growth-chart.is-visible .growth-bar {
    animation: growthBarUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

.growth-chart.is-visible .growth-area {
    animation: growthAreaIn 1.2s ease forwards;
    animation-delay: 0.45s;
}

.growth-chart.is-visible .growth-curve {
    animation: growthCurveDraw 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.growth-chart.is-visible .growth-point {
    animation: growthPointIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes growthBarUp {
    to { transform: scaleY(1); }
}

@keyframes growthAreaIn {
    to { opacity: 1; }
}

@keyframes growthCurveDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes growthPointIn {
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .growth-chart .growth-bar,
    .growth-chart .growth-area,
    .growth-chart .growth-curve,
    .growth-chart .growth-point {
        animation: none !important;
        opacity: 1;
        transform: scaleY(1);
        stroke-dashoffset: 0;
    }

    .growth-timeline__bar span {
        transform: scaleX(1) !important;
    }

    .growth-timeline__item {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Timeline vertical — mobile */
.growth-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.25rem 0;
}

.growth-timeline__item {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f5f9;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.growth-timeline__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.growth-timeline.is-visible .growth-timeline__item {
    opacity: 1;
    transform: translateY(0);
}

.growth-timeline__year {
    display: block;
    font-family: "Geist Sans", Geist, sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: #E31C24;
    line-height: 1.2;
    padding-top: 0.15rem;
}

.growth-timeline__content {
    min-width: 0;
}

.growth-timeline__value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.growth-timeline__item--highlight .growth-timeline__value {
    font-weight: 800;
    color: #E31C24;
}

.growth-timeline__bar {
    height: 6px;
    border-radius: 9999px;
    background: #f1f5f9;
    overflow: hidden;
}

.growth-timeline__bar span {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #FF3E46 0%, #E31C24 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--delay, 0s) + 0.15s);
}

.growth-timeline.is-visible .growth-timeline__bar span {
    transform: scaleX(var(--pct, 0));
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Dynamic Island — pill compacta que expande em overlay */
.dynamic-island-backdrop {
    position: fixed;
    inset: 0;
    z-index: 65;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.dynamic-island-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dynamic-island {
    position: fixed;
    top: 1.25rem;
    left: 0.625rem;
    z-index: 80;
    width: calc(100vw - 1.25rem);
    height: 3.5rem;
    transform: none;
    border-radius: 15px;
    pointer-events: auto;
    transition:
        width 0.72s cubic-bezier(0.32, 0.72, 0, 1),
        height 0.72s cubic-bezier(0.32, 0.72, 0, 1),
        box-shadow 0.5s ease;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
}

.dynamic-island.is-open {
    width: calc(100vw - 1.25rem);
    height: min(calc(100dvh - 2.5rem), 44rem);
    border-radius: 15px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22), 0 8px 24px rgba(15, 23, 42, 0.1);
}

.dynamic-island__shell {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: inherit;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dynamic-island__bar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem 0.75rem 1.125rem;
    min-height: 3.5rem;
}

.dynamic-island__logo {
    height: 2.1rem;
    width: auto;
}

.dynamic-island__toggle {
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #334155;
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.dynamic-island__toggle:hover {
    color: #E31C24;
    background: #fff;
}

.dynamic-island.is-open .dynamic-island__toggle {
    background: rgba(227, 28, 36, 0.08);
    border-color: rgba(227, 28, 36, 0.15);
    color: #E31C24;
}

.dynamic-island__toggle-icon {
    position: absolute;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.dynamic-island__toggle-icon--close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}

.dynamic-island.is-open .dynamic-island__toggle-icon--open {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
}

.dynamic-island.is-open .dynamic-island__toggle-icon--close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.dynamic-island__body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease 0s, visibility 0.35s ease 0s;
}

.dynamic-island.is-open .dynamic-island__body {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.4s ease 0.28s, visibility 0.4s ease 0.28s;
}

.dynamic-island__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 0.5rem 1.25rem 1rem;
    text-align: left;
}

.dynamic-island__menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
}

.dynamic-island__nav .curtain-item,
.dynamic-island__nav .curtain-item__inner {
    width: 100%;
    text-align: left;
}

.dynamic-island__nav .curtain-item {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
}

.dynamic-island__nav .curtain-item.mobile-accordion.is-expanded {
    align-items: flex-start;
}

.dynamic-island__nav .curtain-item:not(.mobile-accordion) .curtain-item__inner {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
}

.dynamic-island__nav .curtain-item.mobile-accordion .curtain-item__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dynamic-island .mobile-accordion__links {
    align-items: flex-start;
}

.dynamic-island__footer {
    flex-shrink: 0;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-start;
}

.dynamic-island__footer .curtain-item__inner {
    justify-content: flex-start;
}

.curtain-item {
    position: relative;
    overflow: hidden;
    min-height: 2.75rem;
}

.curtain-item__inner {
    position: relative;
    z-index: 2;
    display: block;
    transform: translateY(115%);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    transition-delay: calc(0.08s * var(--i) + 0.18s);
}

.curtain-item__veil {
    position: absolute;
    inset: 0;
    transform: translateY(0);
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.08s * var(--i) + 0.12s);
    z-index: 1;
}

.dynamic-island.is-open .curtain-item__inner {
    transform: translateY(0);
    opacity: 1;
}

.dynamic-island.is-open .curtain-item__veil {
    transform: translateY(-110%);
}

.dynamic-island:not(.is-open) .curtain-item__inner,
.dynamic-island:not(.is-open) .curtain-item__veil {
    transition-delay: 0s;
    transition-duration: 0.25s;
}

.dynamic-island:not(.is-open) .curtain-item__inner {
    transform: translateY(115%);
    opacity: 0;
}

.dynamic-island:not(.is-open) .curtain-item__veil {
    transform: translateY(0);
}

.curtain-item.mobile-accordion {
    overflow: visible;
}

.mobile-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #0f172a;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.mobile-accordion__trigger:hover {
    color: #E31C24;
}

.mobile-accordion__icon {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1), color 0.25s ease;
}

.mobile-accordion.is-expanded .mobile-accordion__icon {
    transform: rotate(180deg);
    color: #E31C24;
}

.mobile-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.65s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.mobile-accordion.is-expanded .mobile-accordion__panel {
    grid-template-rows: 1fr;
    opacity: 1;
}

.mobile-accordion__panel-inner {
    overflow: hidden;
    min-height: 0;
}

.mobile-accordion__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0 0.25rem 1rem;
    border-left: 2px solid rgba(227, 28, 36, 0.35);
    margin-top: 0.75rem;
}

.mobile-accordion__link {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #64748b;
    transition:
        color 0.25s ease,
        transform 0.55s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1);
    transform: translateY(0.5rem);
    opacity: 0;
}

.mobile-accordion.is-expanded .mobile-accordion__link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-accordion.is-expanded .mobile-accordion__link:nth-child(1) { transition-delay: 0.08s; }
.mobile-accordion.is-expanded .mobile-accordion__link:nth-child(2) { transition-delay: 0.16s; }
.mobile-accordion.is-expanded .mobile-accordion__link:nth-child(3) { transition-delay: 0.24s; }

.mobile-accordion:not(.is-expanded) .mobile-accordion__link {
    transition-delay: 0s;
}

.mobile-accordion__link:hover {
    color: #E31C24;
}

.overlay-link {
    color: #0f172a;
}

.overlay-link:hover {
    color: #E31C24;
}

@media (prefers-reduced-motion: reduce) {
    .dynamic-island,
    .dynamic-island-backdrop {
        transition: none !important;
    }

    .dynamic-island.is-open {
        width: calc(100vw - 1.25rem);
        height: min(calc(100dvh - 2.5rem), 44rem);
        border-radius: 15px;
    }

    .dynamic-island__body {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: none !important;
    }

    .curtain-item__inner,
    .curtain-item__veil {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .curtain-item__veil {
        display: none;
    }

    .mobile-accordion__panel {
        grid-template-rows: 1fr !important;
        opacity: 1 !important;
    }

    .mobile-accordion__link {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #101216;
}
::-webkit-scrollbar-thumb {
    background: #E31C24;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF3E46;
}

/* Páginas internas */
.page-hero {
    position: relative;
    padding: 9rem 0 4.5rem;
    background:
        linear-gradient(180deg, rgba(8, 9, 11, 0.72) 0%, rgba(8, 9, 11, 0.88) 100%),
        url('../images/hero-intro-poster.png') center/cover no-repeat;
    overflow: hidden;
}

.page-hero--solid {
    background: #08090B;
}

.page-hero--solid::before {
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(227, 28, 36, 0.08), transparent 60%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
}

.form-field {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field:focus {
    outline: none;
    border-color: #E31C24;
    box-shadow: 0 0 0 3px rgba(227, 28, 36, 0.12);
}

.job-card:hover {
    border-color: rgba(227, 28, 36, 0.35);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.portfolio-filter.is-active {
    background: #E31C24;
    color: #fff;
    border-color: #E31C24;
}

.jobs-tab {
    color: #64748b;
    border-color: #e2e8f0;
    background: #fff;
}

.jobs-tab:hover {
    border-color: rgba(227, 28, 36, 0.35);
    color: #E31C24;
}

.jobs-tab.is-active {
    background: #E31C24;
    border-color: #E31C24;
    color: #fff;
}

/* Overlay claro animado — seções com foto de fundo (Trabalhe Conosco) */
.soft-photo-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.soft-photo-overlay__wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.62) 45%, rgba(255, 255, 255, 0.75) 100%),
        linear-gradient(90deg, rgba(248, 250, 252, 0.4) 0%, transparent 40%, transparent 60%, rgba(248, 250, 252, 0.3) 100%);
}

.soft-photo-overlay__glow {
    position: absolute;
    width: 70%;
    height: 70%;
    top: -15%;
    left: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 45%, transparent 70%);
    animation: soft-photo-drift 14s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

.soft-photo-overlay__glow--alt {
    width: 55%;
    height: 55%;
    top: auto;
    left: auto;
    right: -8%;
    bottom: -12%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(241, 245, 249, 0.15) 40%, transparent 70%);
    animation-duration: 18s;
    animation-direction: alternate-reverse;
}

@keyframes soft-photo-drift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.75;
    }
    50% {
        transform: translate3d(6%, 4%, 0) scale(1.08);
        opacity: 1;
    }
    100% {
        transform: translate3d(-4%, 8%, 0) scale(1.02);
        opacity: 0.85;
    }
}

@media (prefers-reduced-motion: reduce) {
    .soft-photo-overlay__glow {
        animation: none;
        opacity: 0.9;
    }
}

.file-dropzone {
    border: 1.5px dashed #cbd5e1;
    border-radius: 1rem;
    background: #f8fafc;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.file-dropzone:hover,
.file-dropzone.is-dragover {
    border-color: #E31C24;
    background: rgba(227, 28, 36, 0.04);
}

.file-dropzone__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.25rem;
}

/* Hero full-bleed (Home / Trabalhe Conosco) */
.page-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background: #08090B;
    overflow: hidden;
}

.page-hero-video__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.page-hero-video__video,
.page-hero-video__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: page-hero-video-ken 18s ease-out forwards;
}

.page-hero-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 9, 11, 0.4) 0%, rgba(8, 9, 11, 0.85) 100%);
}

.page-hero-video__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 10;
}

.page-hero-video__glow {
    position: absolute;
    top: 25%;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(227, 28, 36, 0.1);
    border-radius: 9999px;
    filter: blur(120px);
    pointer-events: none;
    z-index: 10;
}

.page-hero-video__content {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 4rem;
}

@keyframes page-hero-video-ken {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero-video__video,
    .page-hero-video__image {
        animation: none;
        transform: scale(1.05);
    }
}

/* Contato — hero com formulário */
.page-hero-video--contact {
    min-height: 100dvh;
    height: auto;
    display: flex;
    flex-direction: column;
}

.page-hero-video--contact .page-hero-video__content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 100dvh;
    height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .page-hero-video--contact .page-hero-video__content {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(2rem, 5vw, 4.5rem);
        align-items: center;
    }
}

.contact-hero__copy {
    max-width: 34rem;
}

@media (min-width: 1024px) {
    .contact-hero__copy {
        max-width: none;
        padding-right: 0.5rem;
    }
}

.contact-hero__form-wrap {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .contact-hero__form-wrap {
        max-width: 21rem;
        margin-inline: auto;
        justify-self: center;
        align-self: center;
    }
}

@media (min-width: 1280px) {
    .contact-hero__form-wrap {
        max-width: 23rem;
    }
}

.contact-hero__form {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 24px 60px rgba(8, 9, 11, 0.35);
    width: 100%;
}

@media (min-width: 768px) {
    .contact-hero__form {
        padding: 2rem;
    }
}

.contact-hero__form-title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.contact-hero__form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-hero__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
}

.contact-hero__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 300;
    line-height: 1.55;
    cursor: pointer;
}

/* Nossa História — timeline imersiva (referência OSI Storia) */
.storia-timeline {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #f4f5f7;
    overflow: hidden;
    isolation: isolate;
}

.storia-timeline__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.storia-timeline__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: calc(100% / 8) 100%;
}

.storia-timeline__glow {
    position: absolute;
    bottom: 0;
    width: 45%;
    height: 55%;
    filter: blur(100px);
    opacity: 0.55;
    pointer-events: none;
}

.storia-timeline__glow--left {
    left: -10%;
    background: radial-gradient(circle, rgba(227, 28, 36, 0.18) 0%, transparent 70%);
}

.storia-timeline__glow--right {
    right: -10%;
    background: radial-gradient(circle, rgba(227, 28, 36, 0.12) 0%, transparent 70%);
}

.storia-timeline__header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 5.5rem 1.5rem 0;
}

.storia-timeline__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E31C24;
    margin-bottom: 0.75rem;
}

.storia-timeline__heading {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.storia-timeline__divider {
    display: none;
}

.storia-timeline__stage {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem 2rem;
    min-height: 0;
}

.storia-timeline__arc-wrap {
    position: relative;
    width: min(100%, 72rem);
    aspect-ratio: 1200 / 280;
    height: auto;
    margin: -75px auto 1.5rem;
}

.storia-timeline__arc {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.storia-timeline__arc-path {
    fill: none;
    stroke: rgba(148, 163, 184, 0.45);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.storia-timeline__dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.storia-timeline__dot {
    position: absolute;
    transform: translateX(-50%);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition:
        left 0.55s cubic-bezier(0.33, 1, 0.68, 1),
        top 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.storia-timeline__dot-marker {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 9999px;
    background: #fff;
    border: 2px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    transform: translateY(-50%);
    flex-shrink: 0;
    transition:
        width 0.45s cubic-bezier(0.33, 1, 0.68, 1),
        height 0.45s cubic-bezier(0.33, 1, 0.68, 1),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.storia-timeline__dot-year {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.02em;
    transition: color 0.35s ease, font-size 0.35s ease;
    white-space: nowrap;
}

.storia-timeline__dot.is-active .storia-timeline__dot-marker {
    width: 1rem;
    height: 1rem;
    background: #E31C24;
    border-color: #E31C24;
    box-shadow: 0 0 0 6px rgba(227, 28, 36, 0.15), 0 4px 16px rgba(227, 28, 36, 0.25);
}

.storia-timeline__dot.is-active .storia-timeline__dot-year {
    color: #E31C24;
    font-size: 0.8rem;
}

.storia-timeline__dot:not(.is-active):hover .storia-timeline__dot-marker {
    border-color: #E31C24;
}

.storia-timeline__content {
    width: min(100%, 40rem);
    text-align: center;
    margin: -100px auto 0;
}

.storia-timeline__content-inner {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.storia-timeline__content-inner.is-changing {
    opacity: 0;
    transform: translateY(0.75rem);
}

.storia-timeline__year {
    display: block;
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.storia-timeline__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.storia-timeline__category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E31C24;
    margin-bottom: 1rem;
}

.storia-timeline__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 300;
    max-width: 34rem;
    margin: 0 auto 1.5rem;
}

.storia-timeline__image-wrap {
    width: min(100%, 28rem);
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    aspect-ratio: 16 / 9;
}

.storia-timeline__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.storia-timeline__footer {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.storia-timeline__celebrate {
    text-align: center;
    line-height: 1;
}

.storia-timeline__celebrate-num {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.storia-timeline__celebrate-label {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #E31C24;
    margin-left: 0.25rem;
}

.storia-timeline__celebrate-sub {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.storia-timeline__nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: min(100%, 40rem);
}

.storia-timeline__nav-btn {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    border: 0;
    padding: 0.5rem 0.25rem;
    cursor: pointer;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.storia-timeline__nav-btn:hover:not(:disabled) {
    color: #E31C24;
}

.storia-timeline__nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.storia-timeline__track {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    height: 2.75rem;
    display: flex;
    align-items: center;
    margin: 0 0.25rem;
    padding: 0 0.25rem;
    overflow: hidden;
}

.storia-timeline__ticks {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: rgba(148, 163, 184, 0.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
}

.storia-timeline__tick {
    width: 1px;
    height: 0.5rem;
    background: rgba(148, 163, 184, 0.5);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, height 0.25s ease;
}

.storia-timeline__tick.is-active {
    height: 0.85rem;
    background: #E31C24;
}

.storia-timeline__pill {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    min-width: 4.5rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    cursor: grab;
    transition:
        left 0.55s cubic-bezier(0.33, 1, 0.68, 1),
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
    z-index: 2;
}

.storia-timeline__pill.is-active {
    background: #E31C24;
    border-color: #E31C24;
    color: #fff;
}

@media (max-width: 767px) {
    .storia-timeline {
        min-height: auto;
    }

    .storia-timeline__header {
        padding: 4.5rem 1.25rem 0;
    }

    .storia-timeline__divider {
        display: block;
        width: 2.5rem;
        height: 2px;
        margin: 0.85rem auto 0;
        border-radius: 9999px;
        background: rgba(227, 28, 36, 0.45);
    }

    .storia-timeline__arc-wrap {
        display: none;
    }

    .storia-timeline__stage {
        flex: 0 1 auto;
        justify-content: flex-start;
        padding: 1rem 1.25rem 0.5rem;
    }

    .storia-timeline__content {
        margin-top: 0;
    }

    .storia-timeline__year {
        font-size: 2.25rem;
        margin-bottom: 0.35rem;
    }

    .storia-timeline__title {
        font-size: 1.2rem;
        margin-bottom: 0.35rem;
    }

    .storia-timeline__category {
        margin-bottom: 0.65rem;
    }

    .storia-timeline__text {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 0.85rem;
    }

    .storia-timeline__image-wrap {
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    }

    .storia-timeline__footer {
        padding: 0.5rem 1.25rem 1.25rem;
        gap: 0;
    }

    .storia-timeline__nav-btn span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .storia-timeline__content-inner,
    .storia-timeline__dot,
    .storia-timeline__dot-marker,
    .storia-timeline__pill {
        transition: none !important;
    }
}

/* Pilares — Missão, Visão e Valores */
.pillars-section {
    position: relative;
    padding: 5rem 0 6rem;
    background: #fff;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pillars-section {
        padding: 6rem 0 7rem;
    }
}

.pillars-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pillars-section__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: calc(100% / 12) 100%;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.pillars-section__glow {
    position: absolute;
    top: -8rem;
    right: -6rem;
    width: 28rem;
    height: 28rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(227, 28, 36, 0.07) 0%, transparent 70%);
    filter: blur(40px);
}

.pillars-section__header {
    max-width: 40rem;
    margin-bottom: 3rem;
}

.pillars-section__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E31C24;
    margin-bottom: 0.75rem;
}

.pillars-section__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.pillars-section__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 300;
}

.pillars-mv {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .pillars-mv {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pillars-mv__card--values {
        grid-column: 1 / -1;
    }
}

.pillars-mv__card--values .pillars-mv__heading {
    margin-bottom: 0.35rem;
}

.pillars-mv__text--lead {
    margin-bottom: 1.5rem;
}

.pillars-mv__card {
    position: relative;
    padding: 2rem 1.75rem 2.25rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pillars-mv__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E31C24, rgba(227, 28, 36, 0.15));
}

.pillars-mv__card::after {
    display: none;
}

@media (hover: hover) {
    .pillars-mv__card:hover {
        transform: translateY(-4px);
        border-color: rgba(227, 28, 36, 0.2);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }
}

.pillars-mv__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pillars-mv__index {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(227, 28, 36, 0.85);
}

.pillars-mv__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.pillars-mv__card:hover .pillars-mv__icon {
    background: rgba(227, 28, 36, 0.12);
    color: #E31C24;
}

.pillars-mv__heading {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.pillars-mv__text {
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #64748b;
    font-weight: 300;
}

.pillars-values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .pillars-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pillars-values__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.pillars-value {
    background: #f8fafc;
    padding: 1.5rem 1.35rem 1.65rem;
    transition: background 0.25s ease;
}

@media (hover: hover) {
    .pillars-value:hover {
        background: #fff;
    }

    .pillars-value:hover .pillars-value__icon {
        background: rgba(227, 28, 36, 0.12);
        color: #E31C24;
    }
}

.pillars-value__icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.pillars-value__name {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.pillars-value__text {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #64748b;
    font-weight: 300;
}

/* Nossa Força — storytelling vertical em slides */
.forca-story {
    --forca-slides: 3;
    position: relative;
    padding: 0;
    background: #f8fafc;
    overflow: visible;
}

.forca-story__scroller {
    height: calc(var(--forca-slides) * 100vh);
    height: calc(var(--forca-slides) * 100dvh);
    position: relative;
}

.forca-story__pin {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    padding: 5rem 0 3rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .forca-story__pin {
        padding: 6rem 0 4rem;
    }
}

.forca-story__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.forca-story__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: calc(100% / 12) 4rem;
    mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

.forca-story__glow {
    position: absolute;
    width: 32rem;
    height: 32rem;
    border-radius: 9999px;
    filter: blur(60px);
    opacity: 0.7;
}

.forca-story__glow--left {
    top: 8%;
    left: -12%;
    background: radial-gradient(circle, rgba(227, 28, 36, 0.09) 0%, transparent 70%);
}

.forca-story__glow--right {
    bottom: 5%;
    right: -10%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.06) 0%, transparent 70%);
}

.forca-story__container {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    height: 100%;
    min-height: 0;
}

@media (min-width: 1024px) {
    .forca-story__container {
        grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
        gap: 3rem;
        align-items: center;
    }
}

@media (max-width: 1023px) {
    .forca-story__scroller {
        height: auto;
    }

    .forca-story__container {
        padding: 0 1rem;
        gap: 1.25rem;
        height: auto;
        min-height: 0;
    }

    .forca-story__pin {
        position: relative;
        top: auto;
        align-items: flex-start;
        overflow: visible;
        height: auto;
        min-height: 0;
        padding: 4rem 0 3rem;
    }

    .forca-story__stream {
        height: auto;
        min-height: 0;
    }

    .forca-story__stage {
        width: 100%;
    }

    .forca-story__chapter-inner {
        padding: 1.25rem;
    }
}

.forca-story__aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.forca-story__eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E31C24;
}

.forca-story__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #0f172a;
}

.forca-story__lead {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #64748b;
    font-weight: 300;
    max-width: 22rem;
}

.forca-story__nav {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.25rem;
    list-style: none;
    padding: 0;
}

@media (min-width: 1024px) {
    .forca-story__nav {
        display: flex;
    }
}

.forca-story__nav-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.forca-story__nav-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: #e2e8f0;
}

.forca-story__nav-btn.is-active {
    background: #fff;
    border-color: rgba(227, 28, 36, 0.18);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.forca-story__nav-index {
    flex-shrink: 0;
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #94a3b8;
    transition: color 0.25s ease;
}

.forca-story__nav-btn.is-active .forca-story__nav-index {
    color: #E31C24;
}

.forca-story__nav-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.3;
}

.forca-story__nav-btn.is-active .forca-story__nav-label {
    color: #0f172a;
}

.forca-story__rail {
    display: none;
    position: relative;
    width: 2px;
    height: 5rem;
    margin-top: 0.5rem;
    margin-left: 1.1rem;
}

@media (min-width: 1024px) {
    .forca-story__rail {
        display: block;
    }
}

.forca-story__rail-track,
.forca-story__rail-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 9999px;
}

.forca-story__rail-track {
    height: 100%;
    background: #e2e8f0;
}

.forca-story__rail-fill {
    height: 0;
    background: linear-gradient(180deg, #E31C24, rgba(227, 28, 36, 0.35));
    transition: height 0.35s ease;
}

.forca-story__stream {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
    height: 100%;
    width: 100%;
}

@media (min-width: 1024px) {
    .forca-story__stream {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 1.25rem;
        align-items: center;
    }
}

.forca-story__markers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .forca-story__markers {
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        width: auto;
    }
}

.forca-story__markers::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    right: 2.5rem;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1, #e2e8f0);
    z-index: 0;
}

@media (min-width: 1024px) {
    .forca-story__markers::before {
        left: 50%;
        right: auto;
        top: 1.25rem;
        bottom: 1.25rem;
        width: 1px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #e2e8f0, #cbd5e1, #e2e8f0);
    }
}

.forca-story__marker {
    position: relative;
    z-index: 1;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.forca-story__marker.is-active {
    border-color: rgba(227, 28, 36, 0.35);
    box-shadow: 0 0 0 4px rgba(227, 28, 36, 0.1), 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: scale(1.08);
}

.forca-story__marker span {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94a3b8;
    transition: color 0.4s ease;
}

.forca-story__marker.is-active span {
    color: #E31C24;
}

.forca-story__stage {
    position: relative;
    min-height: 12rem;
    height: auto;
    max-height: none;
    overflow: visible;
}

.forca-story__chapter {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2.5rem) scale(0.98);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.55s;
    pointer-events: none;
    will-change: opacity, transform;
}

.forca-story__chapter.is-active {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.forca-story__chapter.is-leaving {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-1.75rem) scale(0.99);
    z-index: 1;
}

.forca-story__chapter-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
    overflow: visible;
    height: auto;
    max-height: none;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.forca-story__chapter.is-active .forca-story__chapter-inner {
    border-color: rgba(227, 28, 36, 0.15);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
    .forca-story__chapter-inner {
        gap: 1.75rem;
        padding: 2rem;
    }
}

.forca-story__hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 640px) {
    .forca-story__hero {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 1.5rem;
    }
}

.forca-story__highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.25rem 0;
}

@media (min-width: 640px) {
    .forca-story__highlight {
        padding: 0.5rem 0.25rem 0.5rem 0.5rem;
    }
}

.forca-story__body {
    padding-top: 0.25rem;
    border-top: 1px solid #f1f5f9;
}

@media (min-width: 640px) {
    .forca-story__body {
        padding-top: 0.5rem;
    }
}

.forca-story__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #E31C24;
    margin-bottom: 0.85rem;
}

.forca-story__stat {
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.forca-story__stat-num {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.forca-story__stat-suffix {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: #E31C24;
    margin-top: 0.3rem;
    margin-left: 0.1rem;
}

.forca-story__stat-caption {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 14rem;
}

.forca-story__chapter-title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 0.85rem;
}

.forca-story__prose {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.forca-story__prose p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 300;
}

.forca-story__prose strong {
    color: #0f172a;
    font-weight: 600;
}

.forca-story__media {
    position: relative;
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
    min-height: 10rem;
}

.forca-story__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.forca-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback sem scroll-jacking */
@media (prefers-reduced-motion: reduce) {
    .forca-story__scroller {
        height: auto;
    }

    .forca-story__pin {
        position: relative;
        height: auto;
        min-height: 0;
        padding: 5rem 0 6rem;
    }

    .forca-story__stage {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        min-height: 0;
        max-height: none;
        height: auto;
    }

    .forca-story__chapter {
        position: relative;
        inset: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .forca-story__chapter-inner {
        max-height: none;
        height: auto;
    }

    .forca-story__rail-fill,
    .forca-story__chapter,
    .forca-story__marker {
        transition: none !important;
    }
}

/* Políticas — seção ambiental */
.politicas-ambiental {
    position: relative;
    padding: 5rem 0 6rem;
    background:
        radial-gradient(circle at bottom left, rgba(227, 28, 36, 0.15), transparent 60%),
        linear-gradient(180deg, #101216 0%, #08090B 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .politicas-ambiental {
        padding: 6rem 0 7rem;
    }
}

.politicas-ambiental__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.politicas-ambiental__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: calc(100% / 12) 4rem;
    mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
}

.politicas-ambiental__glow {
    position: absolute;
    top: -6rem;
    right: -8rem;
    width: 32rem;
    height: 32rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(227, 28, 36, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

.politicas-ambiental__bg::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    border-radius: 9999px;
    background: rgba(148, 163, 184, 0.05);
    filter: blur(100px);
}

.politicas-ambiental__container {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.politicas-ambiental__header {
    max-width: 40rem;
    margin-bottom: 3rem;
}

.politicas-ambiental__eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FF3E46;
    margin-bottom: 0.75rem;
}

.politicas-ambiental__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
}

.politicas-ambiental__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    font-weight: 300;
}

.politicas-ambiental__commitments {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(148, 163, 184, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
    .politicas-ambiental__commitments {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .politicas-ambiental__commitments {
        grid-template-columns: repeat(4, 1fr);
    }
}

.politicas-commitment {
    position: relative;
    background: rgba(8, 9, 11, 0.92);
    padding: 1.75rem 1.5rem 2rem;
    transition: background 0.3s ease;
}

@media (hover: hover) {
    .politicas-commitment:hover {
        background: rgba(16, 18, 22, 0.98);
    }
}

.politicas-commitment__index {
    display: block;
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(227, 28, 36, 0.85);
    margin-bottom: 1rem;
}

.politicas-commitment__icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: rgba(227, 28, 36, 0.12);
    color: #FF3E46;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.politicas-commitment__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.politicas-commitment__text {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #94a3b8;
    font-weight: 300;
}

.politicas-ambiental__block {
    margin-bottom: 3.5rem;
}

.politicas-ambiental__block:last-child {
    margin-bottom: 0;
}

.politicas-ambiental__block-head {
    margin-bottom: 1.5rem;
    max-width: 42rem;
}

.politicas-ambiental__block-title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.politicas-ambiental__block-lead {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    font-weight: 300;
}

.politicas-ambiental__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .politicas-ambiental__gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.politicas-figure {
    margin: 0;
}

.politicas-figure__media {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #1e293b;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.politicas-figure__media--wide {
    aspect-ratio: 3 / 2;
}

.politicas-figure__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .politicas-figure:hover .politicas-figure__media img {
        transform: scale(1.04);
    }
}

.politicas-figure__caption {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #cbd5e1;
    text-align: center;
}

.politicas-solar-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .politicas-solar-feature {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        gap: 3rem;
    }
}

.politicas-solar-feature__copy .politicas-ambiental__block-head {
    margin-bottom: 0;
}

/* Portfólio */
.portfolio-gallery {
    position: relative;
    padding: 5rem 0 6rem;
    background: #f8fafc;
    overflow: hidden;
}

@media (min-width: 768px) {
    .portfolio-gallery {
        padding: 6rem 0 7rem;
    }
}

.portfolio-gallery__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.portfolio-gallery__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: calc(100% / 12) 4rem;
    mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
}

.portfolio-gallery__glow {
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 28rem;
    height: 28rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(227, 28, 36, 0.07) 0%, transparent 70%);
    filter: blur(50px);
}

.portfolio-gallery__container {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.portfolio-gallery__header {
    max-width: 40rem;
    margin-bottom: 3rem;
}

.portfolio-gallery__eyebrow,
.portfolio-videos__eyebrow,
.portfolio-clients__eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E31C24;
    margin-bottom: 0.75rem;
}

.portfolio-gallery__title,
.portfolio-videos__title,
.portfolio-clients__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1rem;
}

.portfolio-gallery__lead,
.portfolio-videos__lead,
.portfolio-clients__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 300;
}

.portfolio-segments {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .portfolio-segments {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .portfolio-segments {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
    }

    .portfolio-segment {
        grid-column: span 2;
    }

    .portfolio-segment:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .portfolio-segment:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .portfolio-segment:nth-child(5) {
        grid-column: 1 / -1;
        width: calc(50% - 0.75rem);
        justify-self: center;
    }
}

.portfolio-segment {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) {
    .portfolio-segment:hover {
        transform: translateY(-4px);
        border-color: rgba(227, 28, 36, 0.18);
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
    }
}

.portfolio-segment__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1f5f9;
}

.portfolio-segment__media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E31C24, rgba(227, 28, 36, 0.15));
    z-index: 2;
}

.portfolio-segment__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

@media (hover: hover) {
    .portfolio-segment:hover .portfolio-segment__media img {
        transform: scale(1.05);
    }
}

.portfolio-segment__index {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    padding: 0.35rem 0.55rem;
    border-radius: 0.4rem;
}

.portfolio-segment__body {
    padding: 1.35rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-segment__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}

.portfolio-segment__text {
    font-size: 0.85rem;
    line-height: 1.65;
    color: #64748b;
    font-weight: 300;
    flex: 1;
}

/* Portfólio Premoldados — setor + filtros + grid */
.portfolio-explorer {
    margin-top: 0.5rem;
}

.portfolio-explorer__sectors {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .portfolio-explorer__sectors {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
}

.portfolio-explorer__sector {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    text-align: left;
    padding: 0.95rem 1.1rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    color: #0f172a;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

@media (hover: hover) {
    .portfolio-explorer__sector:hover {
        border-color: rgba(227, 28, 36, 0.28);
    }
}

.portfolio-explorer__sector.is-active {
    border-color: #E31C24;
    background: #fff;
    box-shadow: inset 0 0 0 1px #E31C24;
}

.portfolio-explorer__sector-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 28, 36, 0.08);
    color: #E31C24;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.portfolio-explorer__sector.is-active .portfolio-explorer__sector-icon {
    background: #E31C24;
    color: #fff;
}

.portfolio-explorer__sector-copy {
    min-width: 0;
}

.portfolio-explorer__sector-label {
    display: block;
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.portfolio-explorer__sector-hint {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 400;
}

.portfolio-explorer__panel[hidden] {
    display: none;
}

.portfolio-explorer__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.portfolio-explorer__sub {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: #fff;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

@media (hover: hover) {
    .portfolio-explorer__sub:hover {
        border-color: rgba(227, 28, 36, 0.35);
        color: #E31C24;
    }
}

.portfolio-explorer__sub.is-active {
    background: #E31C24;
    border-color: #E31C24;
    color: #fff;
}

.portfolio-explorer__sub-icon {
    font-size: 0.68rem;
    opacity: 0.9;
}

.portfolio-carousel {
    position: relative;
}

@media (min-width: 768px) {
    .portfolio-carousel {
        padding: 0 2.4rem;
    }
}

.portfolio-carousel[hidden] {
    display: none;
}

.portfolio-carousel__viewport {
    overflow: hidden;
}

.portfolio-carousel__track {
    display: flex;
    gap: 1.15rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.portfolio-work {
    flex: 0 0 100%;
    min-width: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (min-width: 768px) {
    .portfolio-carousel__track {
        gap: 1.25rem;
    }

    .portfolio-work {
        flex: 0 0 calc((100% - 2.5rem) / 3);
    }
}

.portfolio-work[hidden] {
    display: none;
}

.portfolio-carousel__arrow {
    position: absolute;
    top: calc(50% - 3.25rem);
    z-index: 2;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.portfolio-carousel__arrow--prev {
    left: 0.15rem;
}

.portfolio-carousel__arrow--next {
    right: 0.15rem;
}

@media (min-width: 768px) {
    .portfolio-carousel__arrow--prev {
        left: 0;
    }

    .portfolio-carousel__arrow--next {
        right: 0;
    }
}

@media (hover: hover) {
    .portfolio-carousel__arrow:hover {
        background: #E31C24;
        border-color: #E31C24;
        color: #fff;
    }
}

.portfolio-carousel__arrow:disabled {
    opacity: 0.35;
    pointer-events: none;
}

.portfolio-carousel__arrow[hidden] {
    display: none;
}

.portfolio-carousel__dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.35rem;
}

.portfolio-carousel__dots[hidden] {
    display: none;
}

.portfolio-carousel__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 9999px;
    background: #cbd5e1;
    transition: width 0.25s ease, background 0.25s ease;
}

.portfolio-carousel__dot.is-active {
    width: 1.7rem;
    background: #E31C24;
}

@media (hover: hover) {
    .portfolio-work:hover {
        transform: translateY(-4px);
        border-color: rgba(227, 28, 36, 0.18);
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
    }

    .portfolio-work:hover .portfolio-work__media img {
        transform: scale(1.05);
    }
}

.portfolio-work__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.portfolio-work__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-work__body {
    padding: 1.05rem 1.15rem 1.2rem;
}

.portfolio-work__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.portfolio-work__place {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 400;
}

.portfolio-empty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 14rem;
    padding: 2rem 1.75rem;
    border: 1px dashed #cbd5e1;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.7);
}

.portfolio-empty[hidden] {
    display: none;
}

.portfolio-empty__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 28, 36, 0.08);
    color: #E31C24;
    margin-bottom: 1rem;
}

.portfolio-empty__title {
    font-family: 'Geist Sans', 'Geist', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.portfolio-empty__text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
    font-weight: 300;
    max-width: 32rem;
}

/* Portfólio — vídeos */
.portfolio-videos {
    position: relative;
    padding: 5rem 0 6rem;
    background:
        radial-gradient(circle at bottom left, rgba(227, 28, 36, 0.15), transparent 60%),
        linear-gradient(180deg, #101216 0%, #08090B 100%);
    overflow: hidden;
}

.portfolio-videos__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.portfolio-videos__bg::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    border-radius: 9999px;
    background: rgba(148, 163, 184, 0.05);
    filter: blur(100px);
}

.portfolio-videos__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.portfolio-videos__container {
    position: relative;
    z-index: 1;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.portfolio-videos__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.portfolio-videos__title {
    color: #fff;
}

.portfolio-videos__lead {
    color: #94a3b8;
    max-width: 36rem;
    margin-inline: auto;
}

.portfolio-videos__frame-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 9;
    background: #08090B;
}

.portfolio-videos__frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.portfolio-videos__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.portfolio-videos__pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.portfolio-videos__pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.portfolio-videos__pill.is-active {
    background: #E31C24;
    border-color: #E31C24;
    color: #fff;
}

/* Portfólio — clientes */
.portfolio-clients {
    padding: 5rem 0 6rem;
    background: #fff;
}

.portfolio-clients__container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.portfolio-clients__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

.portfolio-clients__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .portfolio-clients__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile: último item ímpar ocupa a linha inteira para centralizar */
@media (max-width: 639px) {
    .portfolio-clients__logo:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .portfolio-clients__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* 39 clientes: última linha com 3 itens centralizada */
    .portfolio-clients__logo:nth-last-child(3):nth-child(6n+1) {
        grid-column-start: 2;
    }
}

.portfolio-clients__grid--quad {
    grid-template-columns: repeat(2, 1fr);
}

.portfolio-clients__grid--quad .portfolio-clients__logo {
    min-height: 8.25rem;
    padding: 1.5rem 1.25rem;
    background: #fff;
}

@media (min-width: 640px) {
    .portfolio-clients__grid--quad {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-clients__grid--quad {
        grid-template-columns: repeat(4, 1fr);
    }

    .portfolio-clients__grid--quad .portfolio-clients__logo:nth-last-child(3):nth-child(6n+1) {
        grid-column-start: auto;
    }

    .portfolio-clients__grid--quad .portfolio-clients__logo:nth-last-child(-n + 3) {
        border-bottom: 1px solid #e2e8f0;
    }
}

.portfolio-clients__grid--quad .portfolio-clients__logo:nth-child(2n) {
    border-right: 0;
}

@media (min-width: 640px) {
    .portfolio-clients__grid--quad .portfolio-clients__logo:nth-child(2n) {
        border-right: 1px solid #e2e8f0;
    }

    .portfolio-clients__grid--quad .portfolio-clients__logo:nth-child(3n) {
        border-right: 1px solid #e2e8f0;
    }

    .portfolio-clients__grid--quad .portfolio-clients__logo:nth-child(4n) {
        border-right: 0;
    }

    .portfolio-clients__grid--quad .portfolio-clients__logo {
        border-bottom: 0;
        min-height: 9.5rem;
        padding: 1.75rem 1.5rem;
        background: #fff;
    }
}

.portfolio-clients__grid--quad .portfolio-clients__logo img {
    height: auto;
    width: auto;
    max-height: 4.75rem;
    max-width: 11rem;
    filter: none;
    opacity: 1;
}

.portfolio-clients__logo--tall img {
    max-height: 5.75rem;
    max-width: 6.5rem;
}

@media (hover: hover) {
    .portfolio-clients__grid--quad .portfolio-clients__logo:hover img {
        transform: scale(1.04);
        filter: none;
        opacity: 1;
    }
}

.portfolio-clients__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6rem;
    padding: 1.25rem 1rem;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.25s ease;
}

.portfolio-clients__logo:nth-child(2n) {
    border-right: 0;
}

@media (hover: hover) {
    .portfolio-clients__logo:hover {
        background: #fff;
    }
}

@media (min-width: 640px) {
    .portfolio-clients__logo:nth-child(2n) {
        border-right: 1px solid #e2e8f0;
    }

    .portfolio-clients__logo:nth-child(3n) {
        border-right: 0;
    }
}

@media (min-width: 1024px) {
    .portfolio-clients__logo:nth-child(3n) {
        border-right: 1px solid #e2e8f0;
    }

    .portfolio-clients__logo:nth-child(6n) {
        border-right: 0;
    }

    .portfolio-clients__logo:nth-last-child(-n + 3) {
        border-bottom: 0;
    }
}

.portfolio-clients__logo img {
    height: 2.75rem;
    width: auto;
    max-width: 85%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0.35);
    opacity: 0.85;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
    .portfolio-clients__logo:hover img {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.04);
    }
}

/* Footer — tipografia apenas #fff e #ddd */
footer {
    color: #ddd;
}

footer h4,
footer strong {
    color: #fff;
}

footer a {
    color: #ddd;
}

footer a:hover,
footer a.hover\:text-zorteaRed:hover {
    color: #fff;
}

footer [class*="text-slate"] {
    color: #ddd;
}

footer h4,
footer strong,
footer .text-white,
footer strong[class*="text-slate"],
footer h4[class*="text-slate"] {
    color: #fff;
}
