/* ============================================================
   HOME v2 — seções abaixo do hero no mesmo sistema visual
   (fundo ink, vidro, laranja→roxo, títulos com serif itálica).
   Escopo: body.has-hero-video (só o index.html).
   Especificidade .has-hero-video X vence futuristic.css/styles.css
   independentemente da ordem de carregamento.
   ============================================================ */

:root {
    --hv-ink: #070a14;
    --hv-ink-2: #0b0f1c;
    --hv-ink-3: #10152a;
    --hv-line: rgba(255, 255, 255, 0.08);
    --hv-line-strong: rgba(255, 255, 255, 0.14);
    --hv-glass: rgba(255, 255, 255, 0.04);
    --hv-glass-hover: rgba(255, 255, 255, 0.07);
    --hv-text: rgba(255, 255, 255, 0.92);
    --hv-text-2: rgba(255, 255, 255, 0.64);
    --hv-text-3: rgba(255, 255, 255, 0.44);
    --hv-orange-soft: rgba(249, 115, 22, 0.14);
    --hv-purple-soft: rgba(147, 51, 234, 0.16);
    --hv-gradient: linear-gradient(90deg, #f97316 0%, #9333ea 50%, #f97316 100%);
}

.has-hero-video {
    background: var(--hv-ink);
    color: var(--hv-text);
}

.has-hero-video .grain-overlay,
.has-hero-video .cursor-glow {
    mix-blend-mode: screen;
}

/* ---------- Base de seção ---------- */
.has-hero-video .offerings-section,
.has-hero-video .ready-solution-section,
.has-hero-video .mentoring-section,
.has-hero-video .implementation-section,
.has-hero-video .faq-section {
    position: relative;
    padding: 112px 0;
    background: var(--hv-ink);
    color: var(--hv-text);
    isolation: isolate;
    overflow: hidden;
}

.has-hero-video .ready-solution-section,
.has-hero-video .faq-section {
    background: var(--hv-ink-2);
}

.has-hero-video .offerings-section::before,
.has-hero-video .ready-solution-section::before,
.has-hero-video .mentoring-section::before,
.has-hero-video .implementation-section::before,
.has-hero-video .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hv-line-strong), transparent);
    z-index: 1;
}

/* Glows discretos por seção (laranja/roxo) */
.has-hero-video .offerings-section::after,
.has-hero-video .ready-solution-section::after,
.has-hero-video .mentoring-section::after,
.has-hero-video .implementation-section::after,
.has-hero-video .faq-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(60% 40% at 15% 0%, var(--hv-purple-soft), transparent 70%),
        radial-gradient(50% 40% at 90% 100%, var(--hv-orange-soft), transparent 70%);
    opacity: 0.7;
}

.has-hero-video .ready-solution-section::after,
.has-hero-video .implementation-section::after {
    background:
        radial-gradient(55% 45% at 85% 10%, var(--hv-orange-soft), transparent 70%),
        radial-gradient(50% 40% at 10% 90%, var(--hv-purple-soft), transparent 70%);
}

/* ---------- Cabeçalhos de seção ---------- */
.has-hero-video .section-header {
    margin-bottom: 28px;
}

.has-hero-video .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 18px;
}

.has-hero-video .section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2), 0 0 12px rgba(249, 115, 22, 0.6);
    opacity: 1;
}

.has-hero-video .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin-bottom: 16px;
    text-wrap: balance;
}

.has-hero-video .section-title em,
.has-hero-video .cta-final-title em {
    font-family: var(--hv-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.08em;
    letter-spacing: -0.01em;
    padding-right: 0.04em;
}

.has-hero-video .section-subtitle {
    color: var(--hv-text-2);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---------- Botões globais nas seções ---------- */
.has-hero-video .btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 999px;
}

.has-hero-video .btn-primary {
    position: relative;
    color: #ffffff;
    background: var(--hv-gradient);
    background-size: 200% 200%;
    animation: hv-gradient-shift 4s ease-in-out infinite;
    box-shadow: 0 10px 36px rgba(147, 51, 234, 0.35), 0 2px 8px rgba(249, 115, 22, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border: 0;
}

.has-hero-video .btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 16px 46px rgba(147, 51, 234, 0.45), 0 4px 12px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.has-hero-video .btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.has-hero-video .btn-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

/* ---------- Faixa de prova (números) ---------- */
.hv-stats-strip {
    position: relative;
    background: var(--hv-ink);
    padding: 0 clamp(20px, 4vw, 60px);
    margin-top: -64px;
    z-index: 20;
}

.hv-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 24px;
    background: rgba(12, 15, 26, 0.72);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hv-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 30px 24px;
    text-align: center;
    border-left: 1px solid var(--hv-line);
}

.hv-stat:first-child {
    border-left: 0;
}

.hv-stat-value {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffffff;
}

.hv-stat-value .hv-stat-suffix {
    font-family: var(--hv-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 0.85em;
    background: linear-gradient(90deg, #fb923c, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.06em;
}

.hv-stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hv-text-3);
}

/* ---------- Ofertas (3 pilares) ---------- */
.has-hero-video .offerings-grid {
    margin-top: 56px;
    gap: 20px;
}

.has-hero-video .offering-card {
    display: flex;
    flex-direction: column;
    padding: 36px 32px 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid var(--hv-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.5s var(--ease-out-expo), border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

.has-hero-video .offering-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.035) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(249, 115, 22, 0.15);
}

.has-hero-video .offering-card::before {
    background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(249, 115, 22, 0.14), rgba(147, 51, 234, 0.08) 40%, transparent 70%);
}

.has-hero-video .offering-card::after {
    background: linear-gradient(90deg, transparent, #f97316 35%, #9333ea 65%, transparent);
    height: 2px;
}

.has-hero-video .offering-card-highlight {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 60px rgba(147, 51, 234, 0.18);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
}

.has-hero-video .offering-card-highlight::after {
    opacity: 1;
}

.has-hero-video .offering-index {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.has-hero-video .offering-card:hover .offering-index {
    color: #fb923c;
}

.has-hero-video .offering-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(140deg, rgba(249, 115, 22, 0.22), rgba(147, 51, 234, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
}

.has-hero-video .offering-card:hover .offering-icon {
    background: linear-gradient(140deg, #f97316, #9333ea);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(147, 51, 234, 0.4);
    color: #ffffff;
}

.has-hero-video .offering-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
}

.has-hero-video .offering-card p {
    color: var(--hv-text-2);
    font-size: 0.97rem;
}

.has-hero-video .offering-features {
    flex: 1;
}

.has-hero-video .offering-features li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.has-hero-video .offering-features li::before {
    background: #fb923c;
    opacity: 0.85;
    width: 6px;
    height: 6px;
}

.has-hero-video .offering-card:hover .offering-features li::before {
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
}

/* CTA no rodapé de cada card */
.has-hero-video .offering-link {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--hv-line);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    transition: gap 0.3s var(--ease-out-expo), color 0.3s;
}

.has-hero-video .offering-link:hover {
    color: #fb923c;
    gap: 10px;
}

/* ---------- Seções de solução (layout alternado) ---------- */
.has-hero-video .ready-solution-content .section-tag {
    margin-bottom: 18px;
}

.has-hero-video .ready-solution-content .section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

.has-hero-video .ready-solution-desc {
    color: var(--hv-text-2);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 16px 0 28px;
}

.has-hero-video .ready-solution-desc strong {
    color: #ffffff;
    font-weight: 600;
}

.has-hero-video .ready-solution-list {
    margin-bottom: 34px;
}

.has-hero-video .ready-solution-list li {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 500;
    padding: 9px 0 9px 34px;
}

.has-hero-video .ready-solution-list li::before {
    border-color: rgba(249, 115, 22, 0.45);
    background-color: rgba(249, 115, 22, 0.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fb923c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.has-hero-video .ready-solution-list li:hover {
    color: #ffffff;
}

.has-hero-video .ready-solution-list li:hover::before {
    border-color: #fb923c;
    background-color: rgba(249, 115, 22, 0.25);
}

.has-hero-video .ready-solution-content .btn-primary {
    padding: 16px 30px;
    font-size: 15px;
}

/* Visuais: vídeo e cards */
.has-hero-video .ready-solution-visual::before,
.has-hero-video .ready-solution-visual::after {
    border-color: rgba(255, 255, 255, 0.25);
}

.has-hero-video .ready-solution-visual:hover::before,
.has-hero-video .ready-solution-visual:hover::after {
    border-color: #fb923c;
}

.has-hero-video .ready-solution-image {
    border-radius: 24px;
    border: 1px solid var(--hv-line-strong);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.has-hero-video .visual-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid var(--hv-line-strong);
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.has-hero-video .visual-card::before {
    background: radial-gradient(circle at top right, rgba(147, 51, 234, 0.2), transparent 55%);
}

.has-hero-video .visual-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

.has-hero-video .visual-card-badge {
    background: rgba(249, 115, 22, 0.14);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.25);
    font-family: var(--font-body);
    letter-spacing: 0.08em;
}

.has-hero-video .visual-card.visual-dashboard .visual-card-badge {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.25);
}

.has-hero-video .visual-card-status {
    color: var(--hv-text-3);
}

.has-hero-video .visual-card-footer {
    border-top-color: var(--hv-line);
}

.has-hero-video .visual-card-footer .footer-label {
    color: var(--hv-text-3);
}

.has-hero-video .visual-card-footer strong,
.has-hero-video .step-content strong,
.has-hero-video .metric-head strong,
.has-hero-video .agent-pill strong {
    color: #ffffff;
}

.has-hero-video .step-content span {
    color: var(--hv-text-3);
}

.has-hero-video .roadmap-step:not(:last-child)::after {
    background: var(--hv-line-strong);
}

.has-hero-video .roadmap-step.is-done:not(:last-child)::after {
    background: linear-gradient(180deg, #f97316, #9333ea);
}

.has-hero-video .step-marker {
    background: var(--hv-ink-3);
    border-color: var(--hv-line-strong);
    color: var(--hv-text-3);
}

.has-hero-video .roadmap-step.is-done .step-marker {
    background: linear-gradient(140deg, #f97316, #9333ea);
    border-color: transparent;
    color: #fff;
}

.has-hero-video .roadmap-step.is-current .step-marker {
    border-color: #fb923c;
    background: rgba(249, 115, 22, 0.15);
}

.has-hero-video .step-pulse,
.has-hero-video .step-pulse::before {
    background: #fb923c;
}

.has-hero-video .roadmap-step.is-current .step-content strong {
    color: #fdba74;
}

.has-hero-video .metric-delta.positive {
    color: #fdba74;
    background: rgba(249, 115, 22, 0.14);
}

.has-hero-video .metric-bar {
    background: rgba(255, 255, 255, 0.08);
}

.has-hero-video .metric-bar > span {
    background: linear-gradient(90deg, #f97316, #9333ea);
}

.has-hero-video .agent-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--hv-line);
}

.has-hero-video .agent-icon {
    background: linear-gradient(140deg, rgba(249, 115, 22, 0.25), rgba(147, 51, 234, 0.25));
    color: #ffffff;
}

.has-hero-video .agent-pill span {
    color: #86efac;
}

.has-hero-video .agent-pill span::before {
    background: #22c55e;
}

/* ---------- FAQ ---------- */
.has-hero-video .faq-list {
    max-width: 820px;
    gap: 10px;
    margin-top: 40px;
}

.has-hero-video .faq-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--hv-line);
    border-radius: 18px;
    box-shadow: none;
    transition: background 0.3s, border-color 0.3s;
}

.has-hero-video .faq-item:hover,
.has-hero-video .faq-item:has(.faq-question[aria-expanded="true"]) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.has-hero-video .faq-item::before {
    background: linear-gradient(180deg, #f97316, #9333ea);
}

.has-hero-video .faq-question {
    color: #ffffff;
    font-weight: 600;
    padding: 22px 26px;
}

.has-hero-video .faq-question:hover {
    background: transparent;
}

.has-hero-video .faq-question:hover span {
    color: #fdba74;
}

.has-hero-video .faq-icon-wrap {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--hv-line);
}

.has-hero-video .faq-item:hover .faq-icon-wrap {
    background: rgba(255, 255, 255, 0.12);
}

.has-hero-video .faq-icon {
    color: #ffffff;
}

.has-hero-video .faq-question[aria-expanded="true"] .faq-icon-wrap {
    background: linear-gradient(140deg, #f97316, #9333ea);
    border-color: transparent;
}

.has-hero-video .faq-answer p {
    color: var(--hv-text-2);
}

.has-hero-video .faq-answer.active {
    padding: 0 26px 24px;
}

/* ---------- CTA final ---------- */
.has-hero-video .cta-final-section {
    padding: 140px 0;
    background: var(--hv-ink);
    background-image: linear-gradient(180deg, #070a14 0%, #0d0a1f 55%, #070a14 100%);
    isolation: isolate;
}

.has-hero-video .cta-final-section::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent);
    mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent);
}

.has-hero-video .cta-mesh {
    background:
        radial-gradient(ellipse 55% 55% at 35% 45%, rgba(249, 115, 22, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 55% 60% at 70% 55%, rgba(147, 51, 234, 0.26) 0%, transparent 60%);
    filter: blur(10px);
}

.has-hero-video .cta-final-content {
    max-width: 760px;
}

.has-hero-video .cta-final-title {
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.has-hero-video .cta-final-subtitle {
    color: var(--hv-text-2);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hv-cta-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.has-hero-video .btn-cta-final {
    padding: 0 34px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #ffffff;
    background: var(--hv-gradient);
    background-size: 200% 200%;
    animation: hv-gradient-shift 4s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4), 0 2px 8px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    overflow: hidden;
    position: relative;
}

.has-hero-video .btn-cta-final::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
    transform: translateX(-160%) skewX(-12deg);
    animation: hv-light-sweep 3s ease-in-out infinite;
    pointer-events: none;
}

.has-hero-video .btn-cta-final:hover {
    background: var(--hv-gradient);
    background-size: 200% 200%;
    box-shadow: 0 16px 50px rgba(147, 51, 234, 0.5), 0 4px 12px rgba(249, 115, 22, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.has-hero-video .btn-cta-final svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.hv-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease-out-expo);
}

.hv-btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.16);
    border-color: rgba(37, 211, 102, 0.55);
    transform: translateY(-2px);
}

.hv-btn-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: #25d366;
}

.hv-cta-note {
    margin-top: 22px;
    font-size: 13px;
    color: var(--hv-text-3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hv-cta-note::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

/* ---------- Footer ---------- */
.has-hero-video footer {
    background: #05070f;
    border-top: 1px solid var(--hv-line);
}

.has-hero-video .footer-social-icon {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--hv-line);
}

.has-hero-video .footer-social-icon:hover {
    background: rgba(249, 115, 22, 0.14);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 8px 22px rgba(147, 51, 234, 0.25);
}

.has-hero-video .footer-office i {
    color: #fb923c;
}

.has-hero-video .footer-office a:hover,
.has-hero-video .footer-nav ul li a:hover {
    color: #fdba74;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
    .has-hero-video .offerings-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .has-hero-video .offerings-section,
    .has-hero-video .ready-solution-section,
    .has-hero-video .mentoring-section,
    .has-hero-video .implementation-section,
    .has-hero-video .faq-section {
        padding: 80px 0;
    }

    .hv-stats-strip {
        margin-top: -40px;
        padding: 0 16px;
    }

    .hv-stats-inner {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .hv-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 18px 22px;
        border-left: 0;
        border-top: 1px solid var(--hv-line);
    }

    .hv-stat:first-child {
        border-top: 0;
    }

    .hv-stat-value {
        font-size: 1.8rem;
    }

    .has-hero-video .cta-final-section {
        padding: 96px 0;
    }

    .hv-cta-final-actions {
        flex-direction: column;
    }

    .has-hero-video .btn-cta-final,
    .hv-btn-whatsapp {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .has-hero-video .btn-primary,
    .has-hero-video .btn-cta-final,
    .has-hero-video .btn-cta-final::after {
        animation: none;
    }
}
