/* ════════════════════════════════════════════════
   NTA DIGITAL — HOME PAGE
   Tema claro com preto e amarelo nos pontos de contraste.
   ════════════════════════════════════════════════ */


/* ════════════════════════════════════════
   HERO — FULL BLEED (referência HelioSpark)
   ════════════════════════════════════════ */
.h-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.h-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.h-hero__video,
.h-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Padrão pontilhado sutil sobre o background */
.h-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* ── Overlay escuro à esquerda para legibilidade do texto ── */
.h-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.62) 45%,
            rgba(0, 0, 0, 0.52) 80%,
            rgba(0, 0, 0, 0.38) 100%);
    z-index: 1;
}

/* ── Container do conteúdo ── */
.h-hero__container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--nav-height) + 56px);
    padding-bottom: 80px;
}

/* ── Conteúdo — left column ── */
.h-hero__content {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

/* ── Headline ── */
.h-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 4.8vw, 62px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #fff;
    margin: 0;
    text-wrap: balance;
}

.h-hero__title em {
    font-style: normal;
    color: var(--amber);
}

/* ── Subtítulo ── */
.h-hero__desc {
    max-width: 80ch;
    font-size: clamp(16px, 1.05vw, 17px);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.74);
    margin: 0 auto;
}

/* ── Row de ações: CTA + social proof ── */
.h-hero__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-top: 10px;
}

/* CTA principal — amarelo com ícone escuro circular */
.h-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 22px;
    background: var(--amber);
    color: #000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 32px rgba(255, 180, 0, 0.22);
}

.h-hero__cta:hover {
    background: #000;
    color: var(--amber);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    outline: 1px solid var(--amber);
}

.h-hero__cta-icon {
    width: 32px;
    height: 32px;
    background: #000;
    color: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.h-hero__cta:hover .h-hero__cta-icon {
    background: var(--amber);
    color: #000;
    transform: translateX(3px);
}

.h-hero__cta--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
    padding: 18px 24px;
}

.h-hero__cta--secondary:hover {
    background: #fff;
    color: #0A0A0A;
    border-color: #fff;
    outline: none;
}

/* ── Social proof ── */
.h-hero__proof {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.h-hero__avatars {
    display: flex;
    align-items: center;
}

.h-hero__av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--av-bg, #555);
    border: 2px solid rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -7px;
    flex-shrink: 0;
}

.h-hero__av:first-child {
    margin-left: 0;
}

.h-hero__proof-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.h-hero__stars {
    color: var(--amber);
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1;
}

.h-hero__proof-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    white-space: nowrap;
}



/* ── Helpers para demais seções ── */
.h-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #0A0A0A;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.h-btn-primary:hover {
    background: var(--amber);
    color: #000;
    box-shadow: 0 6px 28px rgba(255, 180, 0, 0.35);
    transform: translateY(-1px);
}

.h-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: transparent;
    color: #0A0A0A;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.h-btn-ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
}


/* ════════════════════════════════════════
   PROOF BAR
   ════════════════════════════════════════ */
.h-proof {
    background: #0A0A0A;
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.h-proof__label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 48px;
}

.h-proof__wrap {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.h-proof__marquee {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    flex: 1;
}

.h-proof__track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 22s linear infinite;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.h-proof__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.h-proof__item:first-child {
    padding-left: 0;
}

.h-proof__item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.h-proof__item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}


/* ════════════════════════════════════════
   SEO INTRO
   ════════════════════════════════════════ */
.h-seo-intro {
    background: #fff;
    padding: 48px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.h-seo-intro__text {
    max-width: 920px;
    margin: 0 auto;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.75;
    color: #242424;
    text-align: center;
}

.h-seo-intro__text strong,
.h-about__desc strong,
.h-cta__subtitle strong {
    color: #0A0A0A;
    font-weight: 800;
}


/* ════════════════════════════════════════
   STATS
   ════════════════════════════════════════ */
.h-stats {
    background: #fff;
    padding: 96px 0;
}

.h-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.h-stat {
    padding: 40px 40px 40px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    padding-left: 40px;
}

.h-stat:first-child {
    padding-left: 0;
}

.h-stat:last-child {
    border-right: none;
}

.h-stat__line {
    width: 40px;
    height: 3px;
    background: var(--amber);
    border-radius: 99px;
    margin-bottom: 20px;
}

.h-stat__num {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #0A0A0A;
    line-height: 1;
    margin-bottom: 8px;
}

.h-stat__label {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    max-width: 160px;
}


/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.h-services {
    background: #F7F7F7;
    padding: 96px 0;
}

.h-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 24px;
}

.h-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--amber-subtle);
    border: 1px solid rgba(255, 180, 0, 0.15);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
    width: fit-content;
    max-width: 100%;
}

.h-section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0A0A0A;
    line-height: 1.1;
    margin: 0;
}

.h-section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0A0A0A;
    text-decoration: none;
    border-bottom: 1.5px solid #0A0A0A;
    padding-bottom: 2px;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.h-section-link:hover {
    color: var(--amber);
    border-color: var(--amber);
    gap: 12px;
}

.h-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.h-service-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 40px 36px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.h-service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--amber);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.h-service-card:hover {
    border-color: rgba(255, 180, 0, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

.h-service-card:hover::before {
    transform: scaleX(1);
}

.h-service-card__num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.h-service-card__icon {
    width: 52px;
    height: 52px;
    background: #0A0A0A;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.h-service-card__icon svg {
    width: 24px;
    height: 24px;
}

.h-service-card__title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0A0A0A;
    margin-bottom: 12px;
}

.h-service-card__desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #222;
    margin-bottom: 32px;
}

.h-service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
}

.h-service-card__tag {
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: #444;
    transition: all 0.2s ease;
}

.h-service-card__tag:hover {
    background: var(--amber);
    color: #000;
    border-color: var(--amber);
}

.h-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
}

.h-service-card__link:hover {
    color: #0A0A0A;
    gap: 12px;
}

.h-service-card__link svg {
    transition: transform 0.3s ease;
}

.h-service-card__link:hover svg {
    color: var(--amber);
}

.h-search-visibility {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: center;
    margin-top: 48px;
    padding: 36px;
    background: #0A0A0A;
    color: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.h-search-visibility__eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.h-search-visibility__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    margin: 0 0 16px;
    color: #fff;
}

.h-search-visibility__text {
    margin: 0;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.h-search-visibility__panel {
    background: #fff;
    color: #0A0A0A;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.h-search-visibility__bar {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    color: #555;
    font-size: 13px;
    margin-bottom: 16px;
}

.h-search-visibility__result {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.h-search-visibility__result strong {
    color: #0A0A0A;
    font-size: 15px;
}

.h-search-visibility__result span {
    color: #666;
    font-size: 13px;
}

.h-search-visibility__result--muted {
    opacity: 0.7;
}


/* ════════════════════════════════════════
   PROCESS (How it works)
   ════════════════════════════════════════ */
.h-process {
    background: #0A0A0A;
    padding: 96px 0;
}

/* ── STICKY SCROLL LAYOUT ── */
.h-process__layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}

.h-process__sticky-col {
    position: sticky;
    top: 120px;
}

.h-process__main-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.h-process__main-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* Step nav indicators */
.h-process__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.h-process__nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.h-process__nav-item.active {
    background: rgba(255, 180, 0, 0.07);
    border-left-color: var(--amber);
}

.h-process__nav-num {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.08em;
    min-width: 20px;
}

.h-process__nav-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.h-process__nav-item.active .h-process__nav-label {
    color: #fff;
}

/* Steps column */
.h-process__steps-col {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.h-process-step__header {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 14px;
}

.h-process-step__num {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(255, 180, 0, 0.2);
    line-height: 1;
    flex-shrink: 0;
}

.h-process-step__title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
}

.h-process-step__desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.h-process-step__img-wrap {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
}

.h-process-step__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.h-process-step__img-wrap:hover .h-process-step__img {
    transform: scale(1.03);
}


/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.h-about {
    background: #fff;
    padding: 96px 0;
}

.h-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.h-about__image {
    position: relative;
}

.h-about__photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.h-about__image-badge {
    position: absolute;
    bottom: -36px;
    right: -40px;
    /* Glassmorphism Print 2 */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 28px 36px;
    box-shadow:
        0 12px 42px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-align: center;
}

.h-about__image-badge-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #2a2a2a;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.h-about__image-badge-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.h-about__content {
    padding-right: 20px;
}

.h-about__list {
    list-style: none;
    padding: 0;
    margin: 32px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-about__list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.h-about__list-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 180, 0, 0.1);
    border: 1px solid rgba(255, 180, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--amber);
}

.h-about__list-icon svg {
    width: 18px;
    height: 18px;
}

.h-about__list-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.h-about__list-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.h-about__list-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
}

.h-about__desc {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 0;
}


/* ════════════════════════════════════════
   PROBLEM SECTION
   ════════════════════════════════════════ */
.h-problem {
    background: #fff;
    padding: 96px 0;
}

.h-problem__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 56px;
    align-items: center;
}

.h-problem__text {
    margin: 24px 0 0;
    max-width: 64ch;
    color: #444;
    font-size: 16px;
    line-height: 1.75;
}

.h-problem__panel {
    background: #F7F7F7;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 32px;
}

.h-problem__list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
    padding: 0;
}

.h-problem__list li {
    position: relative;
    padding-left: 28px;
    color: #222;
    font-size: 15px;
    line-height: 1.55;
}

.h-problem__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
}

.h-problem__conclusion {
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #0A0A0A;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}


/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
.h-testimonials {
    background: #F7F7F7;
    padding: 96px 0;
    overflow: hidden;
}

/* Side-by-side: header left, columns right */
.h-testimonials__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
}

.h-testimonials__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-testimonials__subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Two columns container — clipped height */
.h-testimonials__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 540px;
    overflow: hidden;
    /* Fade masks top & bottom */
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* Each scrolling column */
.h-testi-col {
    overflow: hidden;
}

.h-testi-col__track {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Column UP: scrolls content upward */
.h-testi-col--up .h-testi-col__track {
    animation: testiScrollUp 22s linear infinite;
}

/* Column DOWN: scrolls content downward */
.h-testi-col--down .h-testi-col__track {
    animation: testiScrollDown 26s linear infinite;
}

@keyframes testiScrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes testiScrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Pause on hover */
.h-testi-col:hover .h-testi-col__track {
    animation-play-state: paused;
}

/* Card styles */
.h-testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.h-testi-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 180, 0, 0.3);
}

.h-testi-card__stars {
    color: var(--amber);
    font-size: 14px;
    letter-spacing: 2px;
}

.h-testi-card__quote-icon {
    font-family: Georgia, serif;
    font-size: 48px;
    color: var(--amber);
    line-height: 0.7;
    display: block;
}

.h-testi-card__quote {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin: 0;
    flex: 1;
}

.h-testi-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.h-testi-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.h-testi-card__name {
    font-weight: 700;
    font-size: 13px;
    color: #0A0A0A;
    margin-bottom: 2px;
}

.h-testi-card__role {
    font-size: 11px;
    color: #999;
}

.h-testi-card__result {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    background: rgba(255, 180, 0, 0.12);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: #b07a00;
    margin-left: auto;
    white-space: nowrap;
}

/* ════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════ */
.h-features {
    background: #0A0A0A;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.h-features__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(77, 163, 255, 0.4) 0%, rgba(77, 163, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.h-features .container {
    position: relative;
    z-index: 1;
}

.h-features__header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h-features__header .h-section-title {
    color: #fff;
}

.h-features__layout {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
}

.h-features__mockup {
    position: relative;
    z-index: 2;
    width: 340px;
    max-width: 100%;
}

.h-features__phone {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.h-features__card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    width: 280px;
    z-index: 3;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.h-features__card:hover {
    transform: translateY(-5px);
    border-color: rgba(77, 163, 255, 0.3);
}

.h-features__card-icon {
    width: 48px;
    height: 48px;
    background: rgba(77, 163, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4da3ff;
    margin-bottom: 16px;
}

.h-features__card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.h-features__card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.h-features__card--top-left {
    top: 15%;
    left: 50%;
    margin-left: -400px;
}

.h-features__card--top-right {
    top: 25%;
    right: 50%;
    margin-right: -400px;
}

.h-features__card--bottom-left {
    bottom: 25%;
    left: 50%;
    margin-left: -380px;
}

.h-features__card--bottom-right {
    bottom: 15%;
    right: 50%;
    margin-right: -380px;
}



/* ════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════ */
.h-cta {
    background: var(--amber);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.h-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.h-cta__video,
.h-cta__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.h-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 180, 0, 0.82);
    z-index: 1;
    pointer-events: none;
}

.h-cta::before {
    display: none;
}

.h-cta::after {
    display: none;
}

.h-cta__inner {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.h-cta__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 20px;
}

.h-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0A0A0A;
    line-height: 1.05;
    margin-bottom: 20px;
}

.h-cta__subtitle {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 44px;
    line-height: 1.6;
}

.h-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.h-cta__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #0A0A0A;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.h-cta__btn-primary:hover {
    background: #fff;
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.h-cta__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    background: transparent;
    color: #0A0A0A;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.h-cta__btn-secondary:hover {
    border-color: #0A0A0A;
    background: #FFFFFF;
    color: #0A0A0A;
}

.h-cta__note {
    margin-top: 24px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .h-features__layout {
        flex-direction: column;
        min-height: auto;
        gap: 32px;
    }
    .h-features__mockup {
        margin: 0 auto 40px;
    }
    .h-features__card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 auto !important;
        width: 100%;
        max-width: 400px;
    }

    .h-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 0 60px;
    }

    .h-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .h-stat {
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .h-stat:nth-child(even) {
        border-right: none;
    }

    .h-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .h-about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .h-about__content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .h-hero__grid {
        padding: 60px 0 40px;
    }

    .h-hero__title {
        font-size: clamp(36px, 9vw, 52px);
    }

    .h-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .h-services__grid,
    .h-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .h-search-visibility,
    .h-problem__grid {
        grid-template-columns: 1fr;
    }

    .h-process__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .h-process__sticky-col {
        position: static;
    }

    .h-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .h-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .h-stat:first-child {
        padding-left: 0;
    }

    .h-mini-badge {
        display: none;
    }

    .h-proof__label {
        display: none;
    }

    .h-proof__wrap {
        padding: 0 16px;
    }

    .h-cta__title {
        font-size: clamp(28px, 8vw, 40px);
    }
}

/* ════════════════════════════════════════
   MOBILE — AJUSTES ESPECÍFICOS (≤768px)
   ════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── NAVIGATION MOBILE ── */
    .nav--hero .nav__pill {
        display: none;
    }

    .nav__toggle {
        width: 40px;
        height: 40px;
        padding: 9px;
    }

    .nav__toggle span {
        width: 24px;
        height: 2.5px;
    }

    .nav__mobile {
        padding-top: 80px;
    }

    .nav__mobile .nav__link {
        font-size: 20px;
        padding: 16px 0;
    }

    .nav__mobile .btn--lg {
        width: 100%;
        justify-content: center;
    }

    /* ── HERO MOBILE ── */
    .h-hero {
        height: 100vh !important;
        min-height: 100vh !important;
        overflow: hidden;
        /* Permite que conteúdo relativo flua naturalmente */
        justify-content: flex-start;
        flex-direction: column;
    }

    /* Overlay cobre a tela inteira no mobile */
    .h-hero__overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.68) 0%,
                rgba(0, 0, 0, 0.58) 55%,
                rgba(0, 0, 0, 0.46) 100%);
    }

    /* Background centralizado no topo para fotos verticais */
    .h-hero__bg {
        background-position: center top;
        /* Limita o bg à altura do conteúdo hero, não ao viewport inteiro */
        height: 100%;
        min-height: 100%;
    }

    .h-hero__container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        z-index: 2;
        padding-top: calc(var(--nav-height) + 120px);
        padding-bottom: 40px;
    }

    .h-hero__title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .h-hero__desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .h-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .h-hero__cta {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 14px;
    }

    .h-hero__cta--secondary {
        padding: 16px 24px;
    }

    .h-hero__cta-icon {
        width: 30px;
        height: 30px;
    }

    .h-hero__proof {
        justify-content: center;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
        padding: 9px 12px;
    }

    .h-hero__avatars {
        order: 2;
    }

    .h-hero__proof-info {
        order: 1;
        text-align: center;
    }

    .h-hero__av {
        width: 32px;
        height: 32px;
        font-size: 11px;
        margin-left: -6px;
        border-width: 1.5px;
    }

    .h-hero__stars {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .h-hero__proof-label {
        font-size: 11px;
    }

    /* Stats bar mobile — sai do fluxo absoluto e vira relativo */
    .h-hero__stats-bar {
        position: relative;
        bottom: auto;
        z-index: 3;
        margin-top: 16px;
        padding-bottom: 32px;
    }

    .h-hero__stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 100%;
    }

    .h-hero__stat {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        padding: 16px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .h-hero__stat-val {
        font-size: 22px;
        white-space: nowrap;
    }

    .h-hero__stat-lbl {
        font-size: 10px;
        line-height: 1.4;
    }

    /* ── PROOF BAR MOBILE ── */
    .h-proof {
        padding: 20px 0;
    }

    .h-proof__wrap {
        padding: 0 16px;
    }

    .h-proof__label {
        font-size: 10px;
        padding-right: 24px;
        margin-right: 24px;
    }

    .h-proof__item {
        padding: 0 24px;
        gap: 8px;
    }

    .h-proof__item-icon {
        width: 24px;
        height: 24px;
    }

    .h-proof__item-icon svg {
        width: 16px;
        height: 16px;
    }

    .h-proof__item-name {
        font-size: 12px;
    }

    /* ── STATS SECTION MOBILE ── */
    .h-stats {
        padding: 56px 0;
    }

    .h-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .h-stat {
        padding: 28px 20px;
        border-right: 1px solid rgba(0, 0, 0, 0.07);
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .h-stat:nth-child(2n) {
        border-right: none;
    }

    .h-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .h-stat:first-child {
        padding-left: 0;
    }

    .h-stat:nth-child(2) {
        padding-left: 20px;
    }

    .h-stat__line {
        width: 32px;
        height: 2px;
        margin-bottom: 14px;
    }

    .h-stat__num {
        font-size: 36px;
        margin-bottom: 6px;
    }

    .h-stat__label {
        font-size: 12px;
        max-width: 100%;
        line-height: 1.5;
    }

    /* ── SERVICES SECTION MOBILE ── */
    .h-services {
        padding: 60px 0;
    }

    .h-seo-intro {
        padding: 36px 0;
    }

    .h-seo-intro__text {
        text-align: left;
        font-size: 16px;
        line-height: 1.7;
    }

    .h-section-header {
        margin-bottom: 40px;
        gap: 16px;
    }

    .h-section-tag {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .h-section-tag svg {
        width: 10px;
        height: 10px;
    }

    .h-section-title {
        font-size: 28px;
        line-height: 1.15;
    }

    .h-section-link {
        font-size: 13px;
        margin-top: 8px;
    }

    .h-services__grid {
        gap: 16px;
    }

    .h-service-card {
        padding: 28px 24px;
    }

    .h-service-card__num {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .h-service-card__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 20px;
    }

    .h-service-card__icon svg {
        width: 20px;
        height: 20px;
    }

    .h-service-card__title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .h-service-card__desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .h-service-card__tags {
        gap: 4px;
        margin-bottom: 20px;
    }

    .h-service-card__tag {
        font-size: 10px;
        padding: 3px 8px;
    }

    .h-service-card__link {
        font-size: 13px;
    }

    .h-search-visibility {
        margin-top: 32px;
        padding: 28px 22px;
        border-radius: 14px;
        gap: 24px;
    }

    .h-search-visibility__title {
        font-size: 26px;
    }

    .h-search-visibility__panel {
        border-radius: 12px;
        padding: 14px;
    }

    /* ── PROCESS SECTION MOBILE ── */
    .h-process {
        padding: 64px 0;
    }

    .h-process__steps-col {
        gap: 56px;
    }

    .h-process__nav {
        display: none;
    }

    .h-process__main-desc {
        margin-bottom: 32px;
    }

    .h-process-step__num {
        font-size: 56px;
    }

    .h-process-step__desc {
        font-size: 14px;
    }

    /* ── ABOUT SECTION MOBILE ── */
    .h-about {
        padding: 60px 0;
    }

    .h-about__grid {
        gap: 0;
    }

    .h-about__photo {
        border-radius: 16px;
        aspect-ratio: 3/2;
    }

    .h-about__image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -32px;
        margin-left: auto;
        margin-right: 0;
        padding: 18px 24px;
        float: right;
    }

    .h-about__image::after {
        content: '';
        display: table;
        clear: both;
    }

    .h-about__image-badge-num {
        font-size: 32px;
        margin-bottom: 4px;
    }

    .h-about__image-badge-label {
        font-size: 12px;
    }

    .h-about__content {
        padding-right: 0;
        padding-top: 36px;
    }

    /* Evita overflow de white-space: nowrap no título */
    .h-about__content .h-section-title span {
        white-space: normal;
    }

    .h-about__list {
        margin: 24px 0 32px;
        gap: 16px;
    }

    .h-about__list-item {
        gap: 14px;
    }

    .h-about__list-icon {
        width: 38px;
        height: 38px;
    }

    .h-about__list-icon svg {
        width: 16px;
        height: 16px;
    }

    .h-about__list-title {
        font-size: 15px;
    }

    .h-about__list-desc {
        font-size: 13px;
    }

    .h-about__desc {
        font-size: 15px;
    }

    .h-problem {
        padding: 60px 0;
    }

    .h-problem__grid {
        gap: 28px;
    }

    .h-problem__panel {
        padding: 24px;
        border-radius: 14px;
    }

    .h-problem__conclusion {
        font-size: 18px;
    }

    /* ── TESTIMONIALS MOBILE ── */
    .h-testimonials {
        padding: 60px 0;
    }

    .h-testimonials__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .h-testimonials__header {
        gap: 12px;
    }

    .h-testimonials__subtitle {
        font-size: 14px;
    }

    .h-testimonials__columns {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .h-testi-col {
        display: none;
    }

    .h-testi-col:first-child {
        display: block;
    }

    /* Para animação: desabilita e mostra só os primeiros 3 cards (não duplicatas) */
    .h-testi-col--up .h-testi-col__track {
        animation: none;
    }

    /* Oculta os cards duplicados (4º, 5º, 6º) */
    .h-testi-col:first-child .h-testi-col__track>.h-testi-card:nth-child(n+4) {
        display: none;
    }

    .h-testi-card {
        padding: 24px;
    }

    .h-testi-card__stars {
        font-size: 13px;
    }

    .h-testi-card__quote-icon {
        font-size: 36px;
    }

    .h-testi-card__quote {
        font-size: 13px;
    }

    .h-testi-card__avatar {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .h-testi-card__name {
        font-size: 13px;
    }

    .h-testi-card__role {
        font-size: 10px;
    }

    .h-testi-card__result {
        font-size: 10px;
        padding: 2px 8px;
    }

    /* ── FINAL CTA MOBILE ── */
    .h-cta {
        padding: 60px 0;
    }

    .h-cta::before,
    .h-cta::after {
        display: none;
    }

    .h-cta__inner {
        max-width: 100%;
    }

    .h-cta__label {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .h-cta__title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .h-cta__subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .h-cta__actions {
        flex-direction: column;
        gap: 12px;
    }

    .h-cta__btn-primary,
    .h-cta__btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 14px;
    }

    .h-cta__note {
        font-size: 11px;
        margin-top: 16px;
        flex-direction: column;
        gap: 4px;
    }
}

/* ════════════════════════════════════════
   MOBILE PEQUENO (≤480px)
   ════════════════════════════════════════ */
@media (max-width: 480px) {

    /* Container padding menor */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Hero adjustments */
    .h-hero__title {
        font-size: 32px;
    }

    .h-hero__desc {
        font-size: 14px;
    }

    .h-hero__av {
        width: 28px;
        height: 28px;
        font-size: 10px;
        margin-left: -4px;
    }

    /* Stats bar compacta */
    .h-hero__stats-row {
        gap: 8px;
    }

    .h-hero__stat {
        padding: 14px 14px;
        flex: 1 1 calc(50% - 4px);
    }

    .h-hero__stat-val {
        font-size: 18px;
    }

    .h-hero__stat-lbl {
        font-size: 9px;
    }

    /* Section titles menores */
    .h-section-title {
        font-size: 24px;
    }

    /* Service cards mais compactos */
    .h-service-card {
        padding: 24px 20px;
    }

    .h-service-card__title {
        font-size: 17px;
    }

    .h-service-card__desc {
        font-size: 13px;
    }

    /* Process step menor */
    .h-process-step__num {
        font-size: 48px;
    }

    .h-process-step__title {
        font-size: 18px;
    }

    /* About badge menor */
    .h-about__image-badge {
        padding: 14px 18px;
        margin-top: -28px;
    }

    .h-about__image-badge-num {
        font-size: 26px;
    }

    .h-about__image-badge-label {
        font-size: 11px;
    }

    /* Testimonials compactos */
    .h-testi-card {
        padding: 20px;
    }

    .h-testi-card__quote {
        font-size: 13px;
    }

    /* CTA final compacto */
    .h-cta__title {
        font-size: 24px;
    }

    .h-cta__subtitle {
        font-size: 14px;
    }

    /* Padding extra no final para o botão flutuante não sobrepor */
    main {
        padding-bottom: 80px;
    }

    .footer {
        padding-bottom: 80px;
    }
}
