/**
 * Homepage Redesign — seções
 */

:root {
    --home-content-width: 1200px;
    --home-gutter: 64px;
    --home-hero-bg: #000000;
    --home-section-py: clamp(4.5rem, 6.5vw, 5.5rem);
    --home-section-py-compact: clamp(2.75rem, 4vw, 3.25rem);
    --home-section-py-tight: clamp(2rem, 3vw, 2.75rem);
    --home-section-header-mb: clamp(2rem, 3vw, 2.75rem);
}

/* Ritmo vertical — alternância claro/escuro na home */
.page-home .home-why,
.page-home .home-ambientes,
.page-home .home-canais,
.page-home .home-media-service,
.page-home .home-cadu,
.page-home .home-vert,
.page-home .home-stats,
.page-home .home-hub,
.page-home .home-cta-final,
.page-home .cc-page-section {
    padding-top: var(--home-section-py);
    padding-bottom: var(--home-section-py);
}

.page-home .home-clients:not(.home-hero__clients) {
    padding-top: var(--home-section-py-compact);
    padding-bottom: var(--home-section-py-compact);
}

.page-home .home-hero .home-hero__clients {
    padding-top: clamp(1rem, 2vw, 1.25rem);
    padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.page-home .cc-section-header {
    margin-bottom: var(--home-section-header-mb);
}

.page-home .home-hero + .home-why {
    padding-top: clamp(2.5rem, 4vw, 3.25rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.25rem);
}

/* Mesma tonalidade seguida — reduz “colagem” ou invasão */
.page-home .home-canais + .home-media-service,
.page-home .home-media-service + .home-cadu,
.page-home .home-cadu + .home-vert {
    padding-top: var(--home-section-py-tight);
}

.page-home .home-vert + .home-stats,
.page-home .home-stats + .home-hub,
.page-home .home-hub + .home-cta-final {
    padding-top: var(--home-section-py-tight);
}

@keyframes homeFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes homeFadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Scroll reveals (transição — mais controle que keyframes) ── */
.page-home {
    --home-reveal-duration: 0.45s;
    --home-reveal-duration-soft: 0.35s;
    --home-reveal-duration-scale: 0.5s;
    --home-reveal-stagger: 80ms;
}

.page-home .home-reveal,
.page-cadu .home-reveal,
.page-home [data-reveal-child],
.page-cadu [data-reveal-child] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity var(--home-reveal-duration) var(--ease-out-expo),
        transform var(--home-reveal-duration) var(--ease-out-expo),
        filter var(--home-reveal-duration) var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

.page-home .home-reveal-group [data-reveal-child] {
    transform: translate3d(0, 22px, 0) scale(0.97);
}

.page-home .home-reveal.is-visible,
.page-cadu .home-reveal.is-visible,
.page-home .home-reveal-group.is-visible [data-reveal-child] {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.page-home .home-reveal-group.is-visible [data-reveal-child] {
    transition-delay: calc(var(--i, 0) * var(--home-reveal-stagger));
}

.page-home .home-reveal--soft,
.page-cadu .home-reveal--soft {
    transform: translate3d(0, 14px, 0);
    transition-duration: var(--home-reveal-duration-soft);
}

.page-home .home-reveal--left {
    transform: translate3d(-36px, 0, 0);
}

.page-home .home-reveal--right,
.page-cadu .home-reveal--right {
    transform: translate3d(36px, 0, 0);
}

.page-home .home-reveal--scale,
.page-cadu .home-reveal--scale {
    transform: translate3d(0, 22px, 0) scale(0.96);
    transition-duration: var(--home-reveal-duration-scale);
}

.page-home .home-reveal--scale.is-visible,
.page-cadu .home-reveal--scale.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.page-home .home-reveal--right.home-reveal--scale,
.page-cadu .home-reveal--right.home-reveal--scale {
    transform: translate3d(40px, 16px, 0) scale(0.97);
}

.page-home .home-reveal--right.home-reveal--scale.is-visible,
.page-cadu .home-reveal--right.home-reveal--scale.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.page-home .home-reveal--left.home-reveal--scale {
    transform: translate3d(-40px, 16px, 0) scale(0.97);
}

.page-home .home-reveal--left.home-reveal--scale.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.page-home .home-reveal--fade {
    transform: none;
    transition: opacity var(--home-reveal-duration-soft) var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.page-home .home-reveal--hero.is-visible,
.page-cadu .home-reveal--hero.is-visible {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home .home-hero__visual.home-reveal--right.is-visible .home-hero__figure img,
.page-cadu .home-hero__visual.home-reveal--right.is-visible .home-hero__figure img {
    transition: transform 1.1s var(--ease-out-expo);
    transform: scale(1);
    animation: homeHeroFloat 5.5s ease-in-out 1.15s infinite;
}

.page-home .home-hero__visual .home-hero__figure img {
    transform: scale(1.03);
}

.page-home .home-hub__arrow[data-reveal-child] {
    transform: scale(0.85);
    opacity: 0;
}

.page-home .home-hub__phases.is-visible .home-hub__arrow[data-reveal-child] {
    transform: scale(1);
    opacity: 1;
}

/* ── HERO ── */
.home-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: var(--home-hero-bg);
    overflow-x: clip;
    overflow-y: visible;
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    align-content: center;
    width: 100%;
    min-height: 0;
    margin: 0 auto;
    padding: calc(var(--nav-height, 64px) + clamp(1rem, 2vw, 2rem)) 0 clamp(0.75rem, 1.5vw, 1.25rem);
    box-sizing: border-box;
}

.home-hero__clients {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.home-hero__main {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 40px 32px;
}

.home-hero__content {
    position: relative;
    z-index: 1;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 65% at 88% 50%, rgba(74, 255, 107, 0.07) 0%, transparent 58%),
        linear-gradient(rgba(74, 255, 107, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 255, 107, 0.02) 1px, transparent 1px),
        var(--home-hero-bg);
    background-size: auto, 52px 52px, 52px 52px, auto;
}

.home-hero__figure {
    position: relative;
    margin: 0 auto 0 -20px;
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: none;
    overflow: visible;
    isolation: isolate;
    z-index: 1;
}

.home-hero__figure::before {
    content: '';
    position: absolute;
    inset: -10% -8% -4%;
    background: radial-gradient(
        ellipse 58% 72% at 50% 54%,
        rgba(74, 255, 107, 0.14) 0%,
        rgba(74, 255, 107, 0.055) 44%,
        transparent 76%
    );
    z-index: -1;
    pointer-events: none;
    transform-origin: 50% 52%;
    animation: homeHeroGlowPulse 5s ease-in-out infinite;
}

.home-hero__figure::after {
    content: '';
    position: absolute;
    top: -25%;
    left: 0;
    width: 50%;
    height: 150%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 38%,
        rgba(74, 255, 107, 0.16) 50%,
        rgba(255, 255, 255, 0.05) 62%,
        transparent 100%
    );
    transform: rotate(22deg) translateX(-130%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    opacity: 0;
    animation: homeHeroShine 8s ease-in-out infinite;
}

.home-hero__figure img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(75.6svh, 756px);
    object-fit: contain;
    object-position: bottom center;
}

.home-hero__visual {
    position: relative;
    z-index: 1;
    display: block !important;
    align-self: end;
    overflow: visible;
    background: none;
}

.home-hero__visual::after {
    content: '';
    position: absolute;
    inset: 2% -2% 4% -6%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 22%, rgba(34, 116, 255, 0.22) 0 4%, transparent 12%),
        radial-gradient(circle at 18% 38%, rgba(255, 255, 255, 0.16) 0 3%, transparent 10%),
        radial-gradient(circle at 22% 50%, rgba(34, 116, 255, 0.2) 0 4%, transparent 12%),
        radial-gradient(circle at 24% 63%, rgba(27, 215, 91, 0.18) 0 4%, transparent 12%),
        radial-gradient(circle at 33% 76%, rgba(40, 112, 255, 0.18) 0 4%, transparent 12%),
        radial-gradient(circle at 80% 16%, rgba(255, 79, 180, 0.18) 0 4%, transparent 12%),
        radial-gradient(circle at 86% 30%, rgba(255, 31, 31, 0.16) 0 4%, transparent 12%),
        radial-gradient(circle at 84% 48%, rgba(147, 88, 255, 0.18) 0 4%, transparent 12%),
        radial-gradient(circle at 78% 62%, rgba(79, 160, 255, 0.16) 0 4%, transparent 12%),
        radial-gradient(circle at 76% 78%, rgba(255, 44, 44, 0.18) 0 4%, transparent 12%);
    filter: blur(16px);
    opacity: 0.8;
    mix-blend-mode: screen;
    animation: homeHeroIconGlows 7.5s ease-in-out infinite alternate;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(74, 255, 107, 0.1);
    border: 1px solid rgba(74, 255, 107, 0.2);
    border-radius: var(--rfull);
    font-family: var(--body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 12px;
}

.home-hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--verde);
    animation: home-hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes home-hero-dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

@keyframes homeHeroShine {
    0%, 62%, 100% {
        transform: rotate(22deg) translateX(-130%);
        opacity: 0;
    }

    8%, 48% {
        opacity: 0.9;
    }

    45% {
        transform: rotate(22deg) translateX(240%);
    }

    58% {
        opacity: 0;
    }
}

@keyframes homeHeroGlowPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.62;
        transform: scale(1.06);
    }
}

@keyframes homeHeroIconGlows {
    0% {
        opacity: 0.58;
        transform: translate3d(-4px, 4px, 0) scale(0.98);
    }

    42% {
        opacity: 0.88;
        transform: translate3d(3px, -5px, 0) scale(1.02);
    }

    68% {
        opacity: 0.68;
        transform: translate3d(5px, 2px, 0) scale(1);
    }

    100% {
        opacity: 0.96;
        transform: translate3d(-2px, -3px, 0) scale(1.03);
    }
}

@keyframes homeHeroFloat {
    0%, 100% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1) translate3d(0, -6px, 0);
    }
}

@keyframes homeHeroBgShine {
    0%, 68%, 100% {
        background-position: 220% 0;
        opacity: 0.35;
    }

    42% {
        background-position: -40% 0;
        opacity: 0.75;
    }
}

.home-hero__title {
    font-family: var(--display);
    font-size: clamp(38px, 4.2vw, 56px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--branco);
    margin: 0;
}

.home-hero__lead--mobile {
    display: none;
}

.home-hero__title-accent {
    color: var(--verde);
    font-size: 0.9em;
    font-weight: 900;
}

.home-hero__lead {
    margin: 16px 0 0;
    max-width: 560px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--c300);
}

.home-hero__lead--desktop {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    max-width: 34rem;
}

.home-hero__lead-kicker {
    display: block;
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.92);
}

.home-hero__lead-detail {
    display: block;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.home-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--verde);
    color: var(--preto);
    font-family: var(--body);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--rfull);
    text-decoration: none;
    transition: var(--t-base);
}

.home-hero__btn-primary:hover {
    filter: brightness(1.08);
    box-shadow: var(--shadow-verde);
}

.home-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--branco);
    font-family: var(--body);
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--borda);
    border-radius: var(--rfull);
    text-decoration: none;
    transition: var(--t-base);
}

.home-hero__btn-secondary:hover {
    border-color: var(--branco);
}

/* ── POR QUE CENTRALCOMM ── */
.home-why__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .home-why__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2.5rem, 5vw, 4rem);
    }
}

.home-why__content .cc-eyebrow {
    margin-bottom: 0.75rem;
}

.home-why__title {
    margin: 0 0 1.25rem;
    font-family: var(--display);
    font-size: clamp(1.75rem, 3.2vw, 2.375rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-on-light);
    letter-spacing: -0.02em;
}

.page-home .home-why__title .text-primary {
    color: var(--verde-on-light);
}

.home-why__lead {
    margin: 0 0 1rem;
    font-family: var(--body);
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    line-height: 1.65;
    color: var(--text-on-light-secondary);
}

.home-why__lead:last-of-type {
    margin-bottom: 1.5rem;
}

.home-why__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-why__stats {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--light-2);
    border: 1px solid var(--border-on-light);
    border-radius: var(--r24);
}

.home-why__stats-kicker {
    margin: 0 0 1.25rem;
    font-family: var(--body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-light-muted);
}

.home-why__stats-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.home-why__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .home-why__stat {
        flex-direction: row;
        align-items: baseline;
        gap: 1rem;
    }

    .home-why__stat-val {
        min-width: 6.5rem;
    }
}

.home-why__stat-val {
    flex-shrink: 0;
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1;
    color: var(--text-on-light);
    letter-spacing: -0.02em;
}

.home-why__stat-val--accent {
    color: var(--verde-on-light);
    font-weight: 400;
}

.home-why__stat-desc {
    flex: 1;
    min-width: 0;
    font-family: var(--body);
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    line-height: 1.45;
    color: var(--text-on-light-secondary);
}

/* ── AMBIENTES DIGITAIS ── */
.home-ambientes {
    border-top: 1px solid var(--border-on-light);
}

.home-ambientes__label {
    margin: 0;
    text-align: center;
}

.home-ambientes__item .home-env__icon {
    color: var(--text-on-light-muted);
}

.home-ambientes__item span {
    color: var(--text-on-light-muted);
}

.home-ambientes__caption {
    color: var(--text-on-light-muted);
}

/* ── CANAIS HOME ── */
.home-canais__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .home-canais__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(2.5rem, 5vw, 4rem);
    }
}

.home-canais__content .cc-eyebrow {
    margin-bottom: 0.75rem;
}

.home-canais__title {
    margin: 0 0 1.25rem;
    font-family: var(--display);
    font-size: clamp(1.75rem, 3.2vw, 2.375rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-on-light);
    letter-spacing: -0.02em;
}

.page-home .home-canais__title .text-primary {
    color: var(--verde-on-light);
}

.home-canais__lead {
    margin: 0 0 1rem;
    font-family: var(--body);
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    line-height: 1.65;
    color: var(--text-on-light-secondary);
}

.home-canais__lead strong {
    color: var(--text-on-light);
    font-weight: 600;
}

.home-canais__lead:last-of-type {
    margin-bottom: 1.5rem;
}

.home-canais__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-canais__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 639px) {
    .home-canais__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.home-canais__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 108px;
    padding: 1rem 0.75rem;
    text-align: center;
    text-decoration: none;
    background: var(--light-0);
    border: 1px solid var(--border-on-light);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-canais__card:hover {
    border-color: rgba(22, 122, 58, 0.28);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.home-canais__logo {
    display: block;
    height: 32px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.home-canais__card:hover .home-canais__logo {
    filter: none;
    opacity: 1;
}

.home-canais__name {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-on-light);
    line-height: 1.2;
}

.home-canais__reach {
    font-family: var(--body);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--verde-on-light);
    line-height: 1.2;
}

.home-ambientes__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.home-ambientes__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-ambientes__item .home-env__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: color 0.2s ease;
}

.home-ambientes__item .home-env__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.75;
}

.home-ambientes__item span {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.home-ambientes__item:hover .home-env__icon,
.home-ambientes__item:hover span {
    color: var(--verde-on-light);
}

.home-ambientes__caption {
    margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
    max-width: 560px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
}

/* ── CADU SECTION ── */
.home-cadu__header {
    margin-bottom: 0;
}

.home-cadu__eyebrow {
    display: block;
    margin-bottom: 12px;
}

.home-cadu__flow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.home-cadu__flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    cursor: default;
}

.home-cadu__flow-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: 2.5px solid rgba(22, 163, 74, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-on-light, #167a3a);
}

.home-cadu__flow-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-cadu__flow-icon-svg svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.25;
}

.home-cadu__flow-label {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-on-light-muted);
    text-align: center;
    transition: color 0.2s ease;
}

.home-cadu__flow-step:hover .home-cadu__flow-label {
    color: var(--text-on-light);
}

.home-cadu__flow-line {
    flex: 1;
    height: 0;
    border-top: 2px dashed rgba(22, 163, 74, 0.72);
    align-self: center;
    margin: 0 8px 22px 8px;
}

.home-cadu__mobile-points {
    display: none;
    list-style: none;
    margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
    padding: 0;
    flex-direction: column;
    gap: 0.75rem;
}

.home-cadu__mobile-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-family: var(--body);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-on-light-secondary);
}

.home-cadu__mobile-points i {
    color: var(--verde-on-light);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.home-cadu__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.home-cadu__card {
    padding: 28px;
    transition: all 0.2s ease;
}

.home-cadu__card:hover {
    border-color: rgba(74, 255, 107, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.home-cadu__card i {
    color: var(--verde);
    font-size: 24px;
    margin-bottom: 14px;
}

.home-cadu__card h3 {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
}

.home-cadu__card p {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.65;
}

.home-cadu__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

/* ── VERTICAIS ── */
.home-vert__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .home-vert__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

.home-vert__card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    padding: 24px 20px;
    background: var(--dark-3);
    border: 1px solid var(--borda);
    border-radius: var(--r24);
    text-decoration: none;
    transition: var(--t-base);
}

@media (min-width: 1024px) {
    .home-vert__card {
        min-height: 260px;
        padding: 22px 18px;
    }
}

.home-vert__card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.25) 0%,
        rgba(8, 8, 8, 0.55) 42%,
        rgba(8, 8, 8, 0.92) 100%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.home-vert__card:hover {
    border-color: rgba(74, 255, 107, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.home-vert__card:hover::before {
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.2) 0%,
        rgba(8, 8, 8, 0.5) 40%,
        rgba(8, 8, 8, 0.88) 100%
    );
}

.home-vert__card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.home-vert__card:hover img {
    opacity: 0.52;
    transform: scale(1.03);
}

.home-vert__card-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 3.5rem;
}

.page-home .home-vert .home-vert__card h3 {
    font-family: var(--display);
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.page-home .home-vert .home-vert__card p {
    font-family: var(--body);
    font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    max-width: none;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.home-vert__stat {
    position: absolute;
    bottom: 20px;
    right: 18px;
    font-family: var(--display);
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    font-weight: 900;
    color: var(--verde);
    z-index: 2;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@media (min-width: 1024px) {
    .home-vert__stat {
        bottom: 18px;
        right: 16px;
    }

    .page-home .home-vert .home-vert__card p {
        padding-right: 0.5rem;
        -webkit-line-clamp: 5;
    }
}

/* ── NÚMEROS ── */
.home-stats {
    text-align: center;
}

.page-home .home-stats.cc-section-light--white .home-stats__intro {
    color: var(--text-on-light-secondary);
}

.page-home .home-stats.cc-section-light--white .home-stats__item:not(:last-child)::after {
    background: var(--border-on-light);
}

.page-home .home-stats.cc-section-light--white .home-stats__label {
    color: var(--text-on-light-muted);
}

.page-home .home-stats.cc-section-light--white .home-stats__num {
    color: var(--verde-on-light);
}

.page-home .home-stats.cc-section-light--white .home-stats__item i {
    color: var(--verde-on-light);
}

.home-stats__intro {
    max-width: 840px;
    margin: clamp(1.75rem, 3vw, 2rem) auto 0;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 400;
    color: #d6d6d2;
    line-height: 1.65;
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
}

.home-stats__item {
    position: relative;
    padding: 0 12px;
    min-width: 0;
    overflow: visible;
}

.home-stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--borda);
}

.home-stats__item i {
    font-size: 28px;
    color: var(--verde);
    margin-bottom: 10px;
}

.home-stats__label {
    display: block;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    color: var(--c500);
    margin-bottom: 8px;
}

.home-stats__num {
    display: block;
    font-family: var(--display);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 900;
    color: var(--verde);
    line-height: 1.1;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

/* ── LOGOS CLIENTES ── */
.home-clients {
    overflow: hidden;
}

.home-clients__label {
    margin: 0 auto 16px;
    max-width: 1200px;
    padding: 0 var(--container-gutter, 64px);
    text-align: center;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.home-hero__clients .home-clients__label {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.62);
    max-width: none;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.home-hero__clients .home-clients__marquee {
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

@media (min-width: 769px) {
    .home-hero .home-hero__clients {
        width: 120%;
        max-width: none;
        margin-left: -10%;
        margin-right: -10%;
    }

    .home-hero__clients .home-clients__marquee {
        mask-image: linear-gradient(90deg, transparent, #000 1.5%, #000 98.5%, transparent);
    }

    .home-hero__clients .home-clients__logo {
        min-width: 112px;
    }

    .home-hero__clients .home-clients__logo img {
        height: 32px;
        max-width: 140px;
    }
}

.home-clients__marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.home-clients__track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: homeClientsMarquee 36s linear infinite;
}

.home-clients__marquee:hover .home-clients__track {
    animation-play-state: paused;
}

.home-clients__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.home-clients__logo img {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.72;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.home-clients__logo:hover img {
    filter: none;
    opacity: 1;
}

@keyframes homeClientsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .home-clients__track {
        animation: none;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .home-hero__clients .home-clients__track {
        animation: none;
    }

    .home-hero__figure::after,
    .home-hero__figure::before,
    .home-hero__visual::after,
    .home-hero__bg::after {
        animation: none;
        opacity: 0;
    }

    .page-home .home-hero__visual.home-reveal--right.is-visible .home-hero__figure img {
        animation: none;
    }
}

/* ── MEDIA HUB ── */
.home-hub__header {
    margin-bottom: 0;
}

.home-hub__title-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.home-hub__title-row .cc-eyebrow {
    margin: 0;
}

.home-hub__title-row .cc-section-title {
    margin: 0;
}

.home-hub__phases {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0 12px;
    align-items: stretch;
}

.home-hub__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    color: rgba(74, 255, 107, 0.55);
}

.home-hub__arrow svg {
    width: 28px;
    height: 28px;
}

.home-hub__phase {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px 22px 20px;
    background: var(--dark-3);
    border: 1px solid var(--borda);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.home-hub__phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--verde), rgba(74, 255, 107, 0.2));
    opacity: 0.85;
}

.home-hub__phase--ops::before {
    background: linear-gradient(90deg, var(--verde), rgba(74, 255, 107, 0.45));
    opacity: 1;
}

.home-hub__phase-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    min-width: 0;
}

.home-hub__phase-num {
    flex-shrink: 0;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(74, 255, 107, 0.35);
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
}

.home-hub__phase-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(74, 255, 107, 0.1);
    border: 1px solid rgba(74, 255, 107, 0.18);
    color: var(--verde);
    font-size: 15px;
}

.home-hub__phase-title {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-family: var(--display);
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--branco);
}

.home-hub__phase-desc {
    margin: 0 0 18px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #d6d6d2;
}

.home-hub__phase-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.home-hub__phase-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.5;
    color: #cacac6;
}

.home-hub__phase-list li i {
    flex-shrink: 0;
    width: 16px;
    margin-top: 2px;
    text-align: center;
    color: var(--verde);
    font-size: 13px;
}

.home-hub__phase-out {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--borda);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-hub__phase-out-label {
    font-family: var(--body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c300);
}

.home-hub__phase-out-value {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    color: var(--verde);
    line-height: 1.4;
}

.home-hub__footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0 0;
    padding: 14px 20px;
    border-radius: var(--rfull);
    background: rgba(74, 255, 107, 0.06);
    border: 1px solid rgba(74, 255, 107, 0.14);
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    color: #d0d0cc;
    text-align: center;
}

.home-hub__footnote img {
    display: block;
    opacity: 0.9;
    filter: brightness(1.05);
}

/* ── CTA FINAL ── */
.home-cta-final {
    position: relative;
    overflow: hidden;
}

.home-cta-final__box {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
    background: var(--dark-3);
    border: 1px solid rgba(74, 255, 107, 0.15);
    border-radius: var(--r24);
}

.home-cta-final__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(74, 255, 107, 0.08), transparent 60%);
    pointer-events: none;
}

.home-cta-final__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.home-cta-final h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: var(--branco);
    line-height: 1.12;
    margin: 0 0 16px;
    max-width: none;
    width: 100%;
    text-align: center;
}

.home-cta-final p {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 400;
    color: #d6d6d2;
    line-height: 1.65;
    margin: 0;
    max-width: 52ch;
    text-align: center;
}

.home-cta-final__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    width: 100%;
}

@media (max-width: 768px) {
    .home-canais__card--hide-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .home-hero__figure::after {
        display: none;
    }
}

@media (max-height: 780px) and (min-width: 769px) {
    .home-hero__figure img {
        max-height: min(60.9svh, 630px);
    }

    .home-hero__actions {
        margin-top: 24px;
    }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    :root {
        --home-gutter: 20px;
        --home-section-py: clamp(3.25rem, 8vw, 4rem);
        --home-section-py-compact: clamp(2.25rem, 5vw, 2.75rem);
        --home-section-py-tight: clamp(1.75rem, 4vw, 2.25rem);
        --home-section-header-mb: clamp(1.75rem, 5vw, 2.25rem);
    }

    .home-hero {
        min-height: 100svh;
        text-align: center;
        overflow: hidden;
    }

    .home-hero__bg {
        background:
            radial-gradient(
                ellipse 95% 58% at 50% 42%,
                rgba(74, 255, 107, 0.2) 0%,
                rgba(74, 255, 107, 0.09) 42%,
                transparent 72%
            ),
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.96) 0%,
                rgba(0, 0, 0, 0.9) 42%,
                rgba(0, 0, 0, 0.98) 100%
            ),
            var(--home-hero-bg);
        background-size: auto, auto, auto;
        background-position: center, center, center;
        background-repeat: no-repeat;
    }

    .home-hero__bg::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background: linear-gradient(
            105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.04) 46%,
            rgba(74, 255, 107, 0.1) 50%,
            rgba(255, 255, 255, 0.04) 54%,
            transparent 60%
        );
        background-size: 260% 100%;
        mix-blend-mode: screen;
        animation: homeHeroBgShine 9s ease-in-out infinite;
    }

    .home-hero__inner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        min-height: 0;
        padding: calc(var(--nav-height, 64px) + 1rem) 20px clamp(2rem, 8svh, 4rem);
    }

    .home-hero__clients {
        padding-top: 0.625rem;
        padding-bottom: 0.875rem;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .home-hero__clients .home-clients__label {
        font-size: 10px;
        margin-bottom: 10px;
        padding: 0 clamp(0.75rem, 4vw, 1.25rem);
    }

    .home-hero__clients .home-clients__marquee {
        overflow: hidden;
        width: 100%;
        mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    }

    .home-hero__clients .home-clients__track {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 36px;
        width: max-content;
        animation: homeClientsMarquee 30s linear infinite;
        will-change: transform;
    }

    .home-hero__clients .home-clients__logo {
        flex-shrink: 0;
        min-width: 88px;
    }

    .home-hero__clients .home-clients__logo img {
        height: 28px;
        max-width: 120px;
    }

    .home-hero__main {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }

    .home-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 28rem;
        margin: 0 auto;
        padding: 0.75rem 0 1.25rem;
    }

    .home-hero__eyebrow {
        display: none;
    }

    .home-hero__eyebrow-dot {
        display: none;
    }

    .home-hero__lead--desktop,
    .home-hero__visual--desktop {
        display: none;
    }

    .page-home .home-hero__visual,
    .page-home .home-hero__figure,
    .page-home .home-hero__figure img {
        display: none !important;
    }

    .home-hero__lead--mobile {
        display: block;
    }

    .home-hero__title {
        font-size: clamp(32px, 8.8vw, 42px);
        line-height: 1.06;
        letter-spacing: -0.04em;
        text-align: center;
        max-width: 13ch;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__lead--mobile {
        max-width: 29ch;
        margin-top: 18px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(17px, 4.6vw, 20px);
        line-height: 1.42;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
    }

    .home-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 340px;
        margin-top: 1.75rem;
        margin-left: auto;
        margin-right: auto;
        gap: 14px;
    }

    .home-hero__btn-primary {
        width: 100%;
        justify-content: center;
        padding: 18px 22px;
        font-size: 1.12rem;
    }

    .home-hero__btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 12px 22px;
        border: 0;
        background: transparent;
        color: rgba(255, 255, 255, 0.9);
    }

    .home-cadu__flow--desktop {
        display: none !important;
    }

    .home-cadu__mobile-points {
        display: flex;
    }

    .home-ambientes__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        gap: 20px 12px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-ambientes__item {
        min-width: 0;
    }

    .home-cta-final__box {
        margin: 0 20px;
    }

    .home-cadu__cards { grid-template-columns: repeat(2, 1fr); }

    .home-vert__card {
        min-height: 200px;
    }

    .home-stats__grid { grid-template-columns: 1fr 1fr; }
    .home-stats__item:not(:last-child)::after { display: none; }
    .home-stats__num {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .home-hub__phases {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-hub__arrow {
        display: none;
    }

    .home-hub__phase:not(:last-child)::after {
        content: '';
        display: block;
        width: 2px;
        height: 20px;
        margin: 4px auto 0;
        background: linear-gradient(180deg, rgba(74, 255, 107, 0.5), transparent);
        border-radius: 2px;
    }

    .home-hub__footnote {
        flex-direction: column;
        border-radius: 16px;
    }

    .home-cta-final__actions { flex-direction: column; }
    .home-cta-final__actions a { width: 100%; justify-content: center; }
}

@media (max-height: 680px) and (max-width: 768px) {
    .home-hero__inner {
        padding-top: calc(var(--nav-height, 64px) + 0.35rem);
        padding-bottom: clamp(1.5rem, 5svh, 3rem);
    }

    .home-hero__bg {
        background-size: auto, auto, auto;
    }

    .home-hero__title {
        font-size: clamp(28px, 7.6vw, 36px);
    }

    .home-hero__actions {
        margin-top: 1.25rem;
    }

    .home-hero__clients {
        padding-top: 0.5rem;
        padding-bottom: 0.625rem;
    }

    .home-hero__clients .home-clients__label {
        margin-bottom: 8px;
    }
}
