/* =====================================================================
   NewPDV — Página de Funcionalidade (/funcionalidades/{grupo}/{feature})
   Hero premium .ftr-hero-pro + seção .ftr-related (extraídos do inline
   de resources/views/features/show.blade.php).
   Carregado pela view via @push('vendor') (?v=N)
   ===================================================================== */

.ftr-hero-pro {
    --bg-deep:   #02212d;
    --bg-mid:    #033d4f;
    --bg-glow:   #045F7A;
    --accent:    #7CC7E0;
    --accent-2:  #87C437;
    --txt:       rgba(255,255,255,0.92);
    --txt-mute:  rgba(189,225,237,0.70);
    --line:      rgba(124,199,224,0.18);

    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(70px, 9vw, 110px) 0 clamp(70px, 9vw, 110px);
    color: var(--txt);
    font-family: 'Manrope', system-ui, sans-serif;
}

/* ===== Camadas de fundo ===== */
.ftr-hero-pro__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(140% 90% at 50% -10%, var(--bg-glow) 0%, var(--bg-mid) 35%, var(--bg-deep) 80%);
}
.ftr-hero-pro__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(124,199,224,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(124,199,224,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    background-position: -1px -1px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
    opacity: 0.7;
}
/* orbs sem filter:blur — o radial-gradient já é suave; blur animado
   derruba a rasterização em máquinas sem GPU */
.ftr-hero-pro__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.ftr-hero-pro__orb--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(54,141,168,0.46) 0%, rgba(54,141,168,0.16) 40%, transparent 68%);
    top: -250px; left: -180px;
    animation: ftr-orb-drift-1 22s ease-in-out infinite;
}
.ftr-hero-pro__orb--2 {
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(135,196,55,0.15) 0%, rgba(135,196,55,0.05) 42%, transparent 68%);
    bottom: -230px; right: -160px;
    animation: ftr-orb-drift-2 26s ease-in-out infinite;
}
.ftr-hero-pro__orb--3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,199,224,0.25) 0%, rgba(124,199,224,0.08) 44%, transparent 70%);
    top: 40%; left: 50%; transform: translate(-50%, -50%);
    animation: ftr-orb-drift-3 30s ease-in-out infinite;
}
@keyframes ftr-orb-drift-1 {
    0%,100% { transform: translate(0,0)   rotate(0); }
    50%     { transform: translate(40px,30px) rotate(8deg); }
}
@keyframes ftr-orb-drift-2 {
    0%,100% { transform: translate(0,0); }
    50%     { transform: translate(-30px,-40px); }
}
@keyframes ftr-orb-drift-3 {
    0%,100% { transform: translate(-50%, -50%) scale(1); }
    50%     { transform: translate(-52%, -48%) scale(1.08); }
}
/* grain estático (SVG rasterizado uma única vez como textura, em vez de
   feTurbulence vivo + blend por frame) */
.ftr-hero-pro__noise {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
}

/* ===== Número editorial decorativo ===== */
.ftr-hero-pro__num {
    position: absolute;
    top: 50%;
    right: -2vw;
    transform: translateY(-50%);
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 800;
    font-size: clamp(280px, 42vw, 620px);
    line-height: 0.8;
    color: rgba(124,199,224,0.045);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    z-index: -1;
    opacity: 0;
    transform-origin: center;
    transition: opacity 1.4s cubic-bezier(.2,.8,.2,1) .2s;
}
.ftr-hero-pro.is-ready .ftr-hero-pro__num { opacity: 1; }

/* ===== Container ===== */
.ftr-hero-pro__container { position: relative; z-index: 1; }
.ftr-hero-pro__row { gap: 40px 0; }

/* ===== Topbar (breadcrumb + eyebrow lado a lado) ===== */
.ftr-hero-pro__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

/* ===== Breadcrumb ===== */
.ftr-hero-pro__crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    max-width: 100%;
    overflow: hidden;
}
.ftr-hero-pro__crumb a {
    color: var(--txt-mute);
    text-decoration: none;
    transition: color .2s;
}
.ftr-hero-pro__crumb a:hover { color: var(--txt) !important; }
.ftr-hero-pro__crumb i { font-size: 9px; opacity: 0.5; }
.ftr-hero-pro__crumb span[aria-current] { color: var(--txt); font-weight: 600; }

/* ===== Eyebrow com pulse ===== */
.ftr-hero-pro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 12px;
    background: linear-gradient(135deg, rgba(124,199,224,0.12), rgba(124,199,224,0.04));
    border: 1px solid rgba(124,199,224,0.25);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}
.ftr-hero-pro__eyebrow-sep { opacity: 0.4; }
.ftr-hero-pro__eyebrow-meta { color: var(--txt-mute); font-weight: 500; letter-spacing: 0.5px; text-transform: none; }
.ftr-hero-pro__pulse {
    position: relative;
    width: 10px; height: 10px;
    display: inline-flex;
    align-items: center; justify-content: center;
}
.ftr-hero-pro__pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(124,199,224,0.7);
}
.ftr-hero-pro__pulse-dot--green {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74,222,128,0.7);
}
.ftr-hero-pro__pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    animation: ftr-pulse 2s ease-out infinite;
}
@keyframes ftr-pulse {
    0%   { transform: scale(1);  opacity: 0.7; }
    100% { transform: scale(3);  opacity: 0; }
}

/* ===== Overline editorial (kicker antes do título) ===== */
.ftr-hero-pro__overline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.15vw, 18px);
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--accent);
    margin: 0 0 8px;
    line-height: 1.3;
    opacity: 0.92;
}

/* ===== Título display ===== */
.ftr-hero-pro__title {
    font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 26px;
    text-wrap: balance;
}
.ftr-hero-pro__title::after {
    content: '.';
    color: var(--accent-2);
    margin-left: 4px;
}

/* ===== Lede / parágrafo ===== */
.ftr-hero-pro__lede {
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.65;
    color: var(--txt-mute);
    max-width: 540px;
    margin: 0 0 36px;
}

/* ===== Stats inline ===== */
.ftr-hero-pro__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.ftr-hero-pro__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ftr-hero-pro__stat strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(22px, 1.9vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.ftr-hero-pro__stat span {
    font-size: 12.5px;
    color: var(--txt-mute);
    font-weight: 500;
}

/* ===== CTA buttons ===== */
.ftr-hero-pro__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.ftr-hero-pro__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s;
    will-change: transform;
}
.ftr-hero-pro__btn--primary {
    background: linear-gradient(135deg, var(--accent-2), #4d8f24);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(99,177,47,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.ftr-hero-pro__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(99,177,47,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
    color: #fff !important;
}
.ftr-hero-pro__btn--primary svg {
    transition: transform .25s ease;
}
.ftr-hero-pro__btn--primary:hover svg {
    transform: translateX(4px);
}
.ftr-hero-pro__btn--ghost {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff !important;
    backdrop-filter: blur(10px);
}
.ftr-hero-pro__btn--ghost:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
    color: #fff !important;
}
.ftr-hero-pro__btn-play {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

/* ===== Trust line ===== */
.ftr-hero-pro__trust {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    font-size: 12.5px;
    color: var(--txt-mute);
    margin: 0;
}
.ftr-hero-pro__trust i {
    color: var(--accent-2);
    margin-right: 4px;
}
.ftr-hero-pro__trust-dot {
    opacity: 0.4;
    margin: 0 4px;
}

/* ===== Stage / coluna direita ===== */
.ftr-hero-pro__visual { position: relative; }
.ftr-hero-pro__stage {
    position: relative;
    perspective: 1200px;
}
.ftr-hero-pro__stage-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(54,141,168,0.45), transparent 60%);
    filter: blur(50px);
    z-index: 0;
    animation: ftr-glow-pulse 5s ease-in-out infinite;
}
@keyframes ftr-glow-pulse {
    0%,100% { opacity: 0.7; transform: scale(1); }
    50%     { opacity: 1;   transform: scale(1.05); }
}

/* ===== Card principal ===== */
.ftr-hero-pro__card {
    position: relative;
    z-index: 1;
    margin: 0;
    background: #033d4f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.55),
        0 0 0 1px rgba(124,199,224,0.18),
        0 0 60px rgba(54,141,168,0.20);
    transform: rotate(-1.2deg);
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.ftr-hero-pro.is-ready .ftr-hero-pro__card { transform: rotate(0); }
/* Barra accent fina no topo do card */
.ftr-hero-pro__card-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--accent-2) 0%,
        #4d8f24 35%,
        var(--accent) 65%,
        var(--bg-glow) 100%);
    z-index: 3;
    box-shadow: 0 1px 12px rgba(135, 196, 55, 0.45);
}
.ftr-hero-pro__card img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

/* ===== Floating UI badges ===== */
.ftr-hero-pro__float {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(2,30,40,0.35), 0 0 0 1px rgba(255,255,255,0.2);
    color: #1f2d35;
    will-change: transform;
}
.ftr-hero-pro__float-body {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.ftr-hero-pro__float-label {
    font-size: 10.5px;
    color: #64798a;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.ftr-hero-pro__float-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 19px;
    color: #045F7A;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.ftr-hero-pro__float-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ftr-hero-pro__float-icon--live {
    background: rgba(74,222,128,0.15);
}
.ftr-hero-pro__float-icon--growth {
    background: linear-gradient(135deg, #87C437, #4d8f24);
    color: #fff;
    font-size: 14px;
}
.ftr-hero-pro__float-stars {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 12px;
}
.ftr-hero-pro__float--live {
    top: 6%; left: -7%;
    animation: ftr-float-1 8s ease-in-out infinite;
}
.ftr-hero-pro__float--rating {
    bottom: 16%; left: -8%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 18px;
    animation: ftr-float-2 9s ease-in-out infinite;
}
.ftr-hero-pro__float--growth {
    bottom: 8%; right: -6%;
    animation: ftr-float-3 7s ease-in-out infinite;
}
@keyframes ftr-float-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes ftr-float-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}  }
@keyframes ftr-float-3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)}  }

/* ===== Scroll hint ===== */
.ftr-hero-pro__scroll {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--txt-mute);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color .2s, transform .3s;
    opacity: 0;
    animation: ftr-fade-up .8s cubic-bezier(.2,.8,.2,1) 1.6s forwards;
}
@keyframes ftr-fade-up {
    from { opacity: 0; transform: translateX(-50%) translateY(12px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.ftr-hero-pro__scroll:hover { color: var(--accent) !important; transform: translateX(-50%) translateY(4px); }
.ftr-hero-pro__scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: ftr-scroll-line 2s ease-in-out infinite;
}
@keyframes ftr-scroll-line {
    0%   { transform: scaleY(0.3); transform-origin: top; }
    50%  { transform: scaleY(1);   transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* ===== Entrance animations =====
   Estado inicial: opacity 0 + offset. JS adiciona .is-ready para revelar.
   FALLBACK: animação CSS pura roda após 1.8s caso o JS falhe ou demore,
   garantindo que o conteúdo (incluindo a descrição) NUNCA fica invisível
   para o usuário final, mesmo com erros de JS em outros scripts da página.
*/
@keyframes ftr-hero-fallback-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.ftr-hero-pro [data-anim] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .9s cubic-bezier(.2,.8,.2,1),
        transform .9s cubic-bezier(.2,.8,.2,1);
    /* Forçará visibilidade aos 1.8s mesmo sem JS */
    animation: ftr-hero-fallback-reveal .6s cubic-bezier(.2,.8,.2,1) 1.8s forwards;
}
.ftr-hero-pro.is-ready [data-anim] {
    opacity: 1;
    transform: translateY(0);
    animation: none; /* JS chegou primeiro — desliga fallback */
}
.ftr-hero-pro.is-ready [data-anim="0"] { transition-delay: 0.05s; }
.ftr-hero-pro.is-ready [data-anim="1"] { transition-delay: 0.15s; }
.ftr-hero-pro.is-ready [data-anim="2"] { transition-delay: 0.25s; }
.ftr-hero-pro.is-ready [data-anim="3"] { transition-delay: 0.35s; }
.ftr-hero-pro.is-ready [data-anim="4"] { transition-delay: 0.50s; }
.ftr-hero-pro.is-ready [data-anim="5"] { transition-delay: 0.60s; }
.ftr-hero-pro.is-ready [data-anim="6"] { transition-delay: 0.70s; }
.ftr-hero-pro.is-ready [data-anim="7"] { transition-delay: 0.80s; }
.ftr-hero-pro [data-anim="visual"] { transform: translateY(40px) scale(0.96); }
.ftr-hero-pro.is-ready [data-anim="visual"] {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 1.1s cubic-bezier(.2,.8,.2,1) .35s,
                transform 1.1s cubic-bezier(.2,.8,.2,1) .35s;
}
.ftr-hero-pro [data-anim^="float-"] { transform: scale(0.7); }
.ftr-hero-pro.is-ready [data-anim="float-1"] {
    opacity: 1;
    transform: scale(1);
    transition: opacity .7s ease 1.0s, transform .7s cubic-bezier(.34,1.56,.64,1) 1.0s;
}
.ftr-hero-pro.is-ready [data-anim="float-2"] {
    opacity: 1;
    transform: scale(1);
    transition: opacity .7s ease 1.15s, transform .7s cubic-bezier(.34,1.56,.64,1) 1.15s;
}
.ftr-hero-pro.is-ready [data-anim="float-3"] {
    opacity: 1;
    transform: scale(1);
    transition: opacity .7s ease 1.30s, transform .7s cubic-bezier(.34,1.56,.64,1) 1.30s;
}

/* Após entrada terminar, badges retomam o "float idle" */
.ftr-hero-pro.is-ready .ftr-hero-pro__float--live  { animation: ftr-float-1 8s ease-in-out infinite 1.8s; }
.ftr-hero-pro.is-ready .ftr-hero-pro__float--rating{ animation: ftr-float-2 9s ease-in-out infinite 1.95s; }
.ftr-hero-pro.is-ready .ftr-hero-pro__float--growth{ animation: ftr-float-3 7s ease-in-out infinite 2.1s; }

/* ===== Hero responsive ===== */
@media (max-width: 991px) {
    .ftr-hero-pro { padding: 100px 0 70px; }
    .ftr-hero-pro__num { font-size: 280px; opacity: 0.6 !important; right: -8vw; }
    .ftr-hero-pro__visual { margin-top: 30px; }
    .ftr-hero-pro__float--live   { left: -2%; top: -2%; }
    .ftr-hero-pro__float--rating { left: -4%; bottom: 8%; }
    .ftr-hero-pro__float--growth { right: -2%; bottom: 4%; }
    .ftr-hero-pro__scroll { display: none; }
}
@media (max-width: 575px) {
    .ftr-hero-pro { padding: 80px 0 60px; }
    .ftr-hero-pro__num { display: none; }
    .ftr-hero-pro__title { font-size: clamp(32px, 9vw, 44px); }
    .ftr-hero-pro__title::after { font-size: 0.8em; }
    .ftr-hero-pro__stats { gap: 18px; padding: 18px 0; }
    .ftr-hero-pro__stat strong { font-size: 22px; }
    .ftr-hero-pro__btn { padding: 14px 22px; font-size: 13.5px; }
    .ftr-hero-pro__topbar { gap: 10px; margin-bottom: 28px; }
    .ftr-hero-pro__crumb { font-size: 11px; padding: 6px 12px; }
    .ftr-hero-pro__eyebrow { font-size: 11px; padding: 6px 12px 6px 10px; }
    .ftr-hero-pro__float { padding: 10px 12px; gap: 8px; }
    .ftr-hero-pro__float-value { font-size: 15px; }
    .ftr-hero-pro__float-label { font-size: 9.5px; }
    .ftr-hero-pro__float-icon { width: 30px; height: 30px; }
    .ftr-hero-pro__float--live   { top: -4%; left: 2%; }
    .ftr-hero-pro__float--rating { bottom: 4%; left: -4%; padding: 10px 12px; }
    .ftr-hero-pro__float--growth { bottom: -4%; right: 0%; }
}

@media (prefers-reduced-motion: reduce) {
    .ftr-hero-pro * {
        animation: none !important;
        transition: opacity .4s ease !important;
    }
    .ftr-hero-pro [data-anim] { transform: none !important; opacity: 1 !important; }
}

/* =====================================================================
   OUTRAS FUNCIONALIDADES DO MESMO GRUPO — .ftr-related
   ===================================================================== */
.ftr-related {
    background: linear-gradient(180deg, #f3f8fa 0%, #fbfdfe 100%);
    padding: clamp(60px, 8vw, 100px) 0;
}
.ftr-related[data-group="estoque"]    { --ftrl-accent: #87C437; --ftrl-accent-2: #4d8f24; }
.ftr-related[data-group="vendas"]     { --ftrl-accent: #368DA8; --ftrl-accent-2: #045F7A; }
.ftr-related[data-group="financeira"] { --ftrl-accent: #6ec3df; --ftrl-accent-2: #368DA8; }
.ftr-related[data-group="fiscal"]     { --ftrl-accent: #b885e6; --ftrl-accent-2: #7d4ec2; }
.ftr-related { --ftrl-accent: #87C437; --ftrl-accent-2: #4d8f24; }

.ftr-related__heading { margin-bottom: 40px; max-width: 760px; }
.ftr-related__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 12px;
    background: color-mix(in srgb, var(--ftrl-accent) 12%, white);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--ftrl-accent-2);
    margin-bottom: 18px;
}
.ftr-related__eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ftrl-accent);
    box-shadow: 0 0 8px var(--ftrl-accent);
}
.ftr-related__title {
    font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 700;
    color: #045F7A;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    text-wrap: balance;
}
.ftr-related__highlight {
    color: var(--ftrl-accent-2);
    background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--ftrl-accent) 25%, transparent) 60%);
    padding: 0 6px;
    border-radius: 4px;
}
.ftr-related__grid {
    display: grid;
    /* auto-fit em vez de auto-fill: com max 3 items do controller, evita
       coluna vazia à direita quando container é largo. */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}
@media (max-width: 575px) {
    .ftr-related__grid { grid-template-columns: 1fr; }
}
