@font-face {
  font-family: "InterLocal";
  src: url("./fonts/Inter_24pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterLocal";
  src: url("./fonts/Inter_24pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterLocal";
  src: url("./fonts/Inter_24pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterLocal";
  src: url("./fonts/Inter_24pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterLocal";
  src: url("./fonts/Inter_24pt-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

html { scroll-behavior: smooth; }
    .section-pad { padding: 5rem 0; }
    @media (max-width: 768px){ .section-pad { padding: 3.25rem 0; } }

    /* Quebra de linha só no desktop (mobile deixa o texto fluir natural) */
    .br-desktop { display: none; }
    @media (min-width: 769px){ .br-desktop { display: inline; } }

    /* Fallback de classes Tailwind não compiladas em tailwind.css — usadas em legal.html */
    @media (min-width: 768px){
      .md\:py-14{ padding-top: 3.5rem; padding-bottom: 3.5rem; }
      .md\:pb-16{ padding-bottom: 4rem; }
    }
    @media (min-width: 1024px){
      .lg\:grid-cols-\[320px_1fr\]{ grid-template-columns: 320px 1fr; }
    }

    .bg-grid {
      background-image:
        radial-gradient(rgba(167,139,250,.14) 1px, transparent 1px),
        radial-gradient(rgba(79,70,229,.12) 1px, transparent 1px);
      background-position: 0 0, 12px 12px;
      background-size: 24px 24px;
    }

    .glass {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      font-weight: 800;
      transition: .18s ease;
      user-select: none;
      white-space: nowrap;
    }
    .btn-cta{
      color: #fff;
      padding: 16px 22px;
      background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 55%, #a78bfa 120%);
      box-shadow: 0 18px 55px rgba(79,70,229,.18), 0 18px 55px rgba(124,58,237,.18);
    }
    .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.03); }
    .btn-ghost{
      color: rgba(255,255,255,.90);
      padding: 12px 14px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.14);
    }
    .btn-ghost:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }

    /* Acessibilidade: foco visível por teclado (não afeta clique do mouse) */
    .btn:focus-visible,
    a:focus-visible,
    summary:focus-visible{
      outline: 2px solid #a78bfa;
      outline-offset: 3px;
      border-radius: 8px;
    }
    .btn-cta:focus-visible{
      outline-color: #fff;
      outline-offset: 4px;
    }
    /* Link de menu ativo (scroll-spy via aria-current) */
    nav a[aria-current="page"]{
      color: #fff;
      text-shadow: 0 0 12px rgba(167,139,250,.45);
    }

    /* HERO (fundo otimizado: AVIF/WebP por breakpoint) */
    .hero-bg{
      position: relative;
      background-image: url("../img/ge-carvalho-hero-mobile-768.webp");
      background-repeat: no-repeat;
      background-position: center top;
      background-size: cover;
      overflow: hidden;

      min-height: 78vh;
      padding: 14rem 0 3rem;

      display: flex;
      align-items: flex-start;
    }

    /* Gradient overlay no mobile/tablet: deixa o rosto visível em cima
       e escurece a parte de baixo onde fica o texto. */
    .hero-bg::before{
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
        rgba(9, 0, 18, .15) 0%,
        rgba(9, 0, 18, .15) 30%,
        rgba(9, 0, 18, .55) 55%,
        rgba(9, 0, 18, .80) 100%
      );
      pointer-events: none;
      z-index: 0;
    }
    .hero-bg > * { position: relative; z-index: 1; }

    @supports (background-image: image-set(url("../img/ge-carvalho-hero-mobile-768.webp") 1x)){
      .hero-bg{
        background-image: image-set(
          url("../img/ge-carvalho-hero-mobile-768.avif") type("image/avif") 1x,
          url("../img/ge-carvalho-hero-mobile-768.webp") type("image/webp") 1x
        );
      }
    }

    @media (min-width: 769px){
      .hero-bg{
        background-image: url("../img/ge-carvalho-hero-desktop-768.webp");
        background-position: center;
        min-height: 92vh;
        padding: 5rem 0 6rem;
        align-items: center;
      }
      .hero-bg::before {
        background: linear-gradient(90deg,
          rgba(9, 0, 18, .65) 0%,
          rgba(9, 0, 18, .25) 55%,
          rgba(9, 0, 18, 0) 85%
        );
      }

      @supports (background-image: image-set(url("../img/ge-carvalho-hero-desktop-768.webp") 1x)){
        .hero-bg{
          background-image: image-set(
            url("../img/ge-carvalho-hero-desktop-768.avif") type("image/avif") 1x,
            url("../img/ge-carvalho-hero-desktop-768.webp") type("image/webp") 1x
          );
        }
      }
    }

    @media (min-width: 1280px){
      .hero-bg{
        background-image: url("../img/ge-carvalho-hero-desktop-1280.webp");
      }

      @supports (background-image: image-set(url("../img/ge-carvalho-hero-desktop-1280.webp") 1x)){
        .hero-bg{
          background-image: image-set(
            url("../img/ge-carvalho-hero-desktop-1280.avif") type("image/avif") 1x,
            url("../img/ge-carvalho-hero-desktop-1280.webp") type("image/webp") 1x
          );
        }
      }
    }

    @media (min-width: 1536px){
      .hero-bg{
        background-image: url("../img/ge-carvalho-hero-desktop-1920.webp");
      }

      @supports (background-image: image-set(url("../img/ge-carvalho-hero-desktop-1920.webp") 1x)){
        .hero-bg{
          background-image: image-set(
            url("../img/ge-carvalho-hero-desktop-1920.avif") type("image/avif") 1x,
            url("../img/ge-carvalho-hero-desktop-1920.webp") type("image/webp") 1x
          );
        }
      }
    }

    @media (max-width: 768px){
      /* ===== MOBILE: centraliza conteúdo ===== */

      /* Centralização global no mobile */
      body, main, footer { text-align: center; }

      /* Força neutralizar alinhamentos “left” que você colocou no desktop */
      main .text-left { text-align: center !important; }
      main .text-right { text-align: center !important; }

      /* Centraliza flex que estava “justify-start” no desktop */
      main .justify-start { justify-content: center !important; }

      /* Centraliza itens de flex que estavam “items-start” */
      main .items-start { align-items: center !important; }
      main .items-end { align-items: center !important; }

      /* Hero: você travou o container à esquerda (mr-auto/ml-0). No mobile volta a centralizar */
      .hero-bg .max-w-6xl{
        margin-left: auto !important;
        margin-right: auto !important;
      }

      /* Listas: quando centraliza texto, bullet some ou fica torto. Aqui fica aceitável */
      main ul.list-disc{
        list-style-position: inside;
        padding-left: 0 !important;
      }
      main ul.list-disc li{
        text-align: center;
      }
    }

    /* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
    .float-wa{
      position: fixed;
      right: calc(20px + env(safe-area-inset-right, 0px));
      bottom: calc(20px + env(safe-area-inset-bottom, 0px));
      width: 60px;
      height: 60px;
      border: 0;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      box-shadow:
        0 8px 24px rgba(37, 211, 102, .35),
        0 4px 10px rgba(0, 0, 0, .25);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
      z-index: 80; /* abaixo do modal (95) e cookie banner */
      animation: float-wa-pulse 2.4s ease-in-out infinite;
    }
    .float-wa:hover{
      transform: translateY(-2px) scale(1.04);
      filter: brightness(1.05);
      box-shadow:
        0 12px 30px rgba(37, 211, 102, .45),
        0 6px 14px rgba(0, 0, 0, .3);
    }
    .float-wa:focus-visible{
      outline: 3px solid #fff;
      outline-offset: 3px;
    }
    .float-wa-icon{
      width: 32px;
      height: 32px;
      fill: #fff;
      display: block;
    }
    /* Esconde o flutuante quando o modal de lead está aberto */
    body.lead-open .float-wa{
      opacity: 0;
      pointer-events: none;
      transform: scale(.7);
    }
    /* Pulse sutil para chamar atenção */
    @keyframes float-wa-pulse{
      0%, 100%{ box-shadow: 0 8px 24px rgba(37, 211, 102, .35), 0 0 0 0 rgba(37, 211, 102, .5); }
      50%     { box-shadow: 0 8px 24px rgba(37, 211, 102, .35), 0 0 0 14px rgba(37, 211, 102, 0); }
    }
    @media (max-width: 768px){
      .float-wa{
        width: 56px;
        height: 56px;
        right: calc(16px + env(safe-area-inset-right, 0px));
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
      }
      .float-wa-icon{ width: 28px; height: 28px; }
    }
    /* Respeita preferência por menos animação */
    @media (prefers-reduced-motion: reduce){
      .float-wa{ animation: none; }
      .float-wa:hover{ transform: none; }
    }

    /* Timeline tabs */
    .how-tab{
      flex: 0 0 auto;
      padding: 12px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.82);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .2px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
      transition: .18s ease;
    }
    .how-tab:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.09);
      border-color: rgba(255,255,255,.18);
    }
    .how-tab:focus-visible{
      outline: none;
      box-shadow: 0 0 0 3px rgba(167,139,250,.28), inset 0 1px 0 rgba(255,255,255,.08);
    }
    .how-tab-active{
      color:#fff;
      border-color: rgba(255,255,255,.22);
      background: linear-gradient(90deg,#4f46e5 0%,#7c3aed 55%,#a78bfa 120%);
      box-shadow: 0 18px 55px rgba(124,58,237,.22);
    }

    /* Mobile/tablet: chips quebram linha em vez de scroll horizontal */
    @media (max-width: 1023px) {
      [role="tablist"][aria-label="Etapas do processo"] {
        flex-wrap: wrap;
        overflow-x: visible;
      }
      .how-tab {
        padding: 9px 13px;
        font-size: 12px;
        border-radius: 14px;
      }
    }

    /* ===== Header hide/show no scroll ===== */
    #header{
      will-change: transform;
      transition: transform .28s ease;
      transform: translateY(0);
    }
    #header.header-hidden{
      transform: translateY(-110%);
    }

    /* ===== Revel / animações por seção ===== */
    .reveal-anim{
      opacity: 0;
      transform: var(--from, translateY(18px));
      filter: blur(2px);
      transition:
        opacity .72s cubic-bezier(.2,1,.2,1),
        transform .72s cubic-bezier(.2,1,.2,1),
        filter .72s cubic-bezier(.2,1,.2,1);
      transition-delay: var(--d, 0ms);
      will-change: transform, opacity, filter;
    }
    .reveal-anim.is-inview{
      opacity: 1;
      transform: translate3d(0,0,0) rotate(0) scale(1);
      filter: blur(0);
    }

    .reveal-anim[data-anim="slide-left"]  { --from: translate3d(-64px,0,0); }
    .reveal-anim[data-anim="slide-right"] { --from: translate3d(64px,0,0); }
    .reveal-anim[data-anim="fade-up"]     { --from: translate3d(0,22px,0); }
    .reveal-anim[data-anim="zoom"]        { --from: scale(.92); }
    .reveal-anim[data-anim="rotate"]      { --from: translate3d(0,20px,0) rotate(-2.2deg); transform-origin: 50% 80%; }
    .reveal-anim[data-anim="pop"]         { --from: translate3d(0,26px,0) scale(.96); }

    /* Hover diferente nos cards (sem exagero) */
    .card-hover{
      transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
    }
    .card-hover:hover{
      transform: translateY(-4px);
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.075);
      box-shadow: 0 18px 60px rgba(0,0,0,.45);
    }
    .card-hover-tilt:hover{ transform: translateY(-4px) rotate(-.45deg); }
    .card-hover-pop:hover{ transform: translateY(-2px) scale(1.02); }

    /* ===== PROVAS (ABAS) ===== */
    .provas-tab{
      position: relative;
      padding: 10px 14px;
      border-radius: 14px;
      font-weight: 800;
      font-size: 13px;
      color: rgba(255,255,255,.86);
      transition: background .18s ease, transform .18s ease, color .18s ease;
      outline: none;
    }
    .provas-tab:hover{
      background: rgba(255,255,255,.06);
      transform: translateY(-1px);
    }
    .provas-tab:focus-visible{
      box-shadow: 0 0 0 3px rgba(167,139,250,.28);
    }
    .provas-tab.provas-tab-active{
      color: #fff;
    }
    .provas-tab.provas-tab-active::before{
      content:"";
      position:absolute;
      inset:0;
      border-radius: 14px;
      background: rgba(17,17,17,.75);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 0 20px rgba(0,0,0,.25);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .provas-tab > span{ position: relative; z-index: 1; }

    .provas-panel-in{
      animation: provasPanelIn .55s cubic-bezier(.2,1,.2,1);
    }
    @keyframes provasPanelIn{
      from{
        opacity: 0;
        transform: translateX(-10px) scale(.95);
        filter: blur(10px);
      }
      to{
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
      }
    }

    /* ===== Banner Cookies ===== */
    .cookie-banner{
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 90;
    }
    @media (min-width: 768px){
      .cookie-banner{
        left: 18px;
        right: auto;
        bottom: 18px;
        width: min(640px, calc(100vw - 36px));
      }
    }
    .cookie-inner{
      background: rgba(15,0,31,.92);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 22px;
      box-shadow: 0 18px 60px rgba(0,0,0,.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 14px;
    }
    /* ===== legal.html — âncoras com offset do header sticky + links sublinhados ===== */
    .anchor { scroll-margin-top: 96px; }
    a.legal-link {
      text-decoration: underline;
      text-decoration-color: rgba(255,255,255,.25);
    }
    a.legal-link:hover { text-decoration-color: rgba(255,255,255,.60); }

    /* ===== Fix: hambúrguer só no mobile (sobrescreve display:inline-flex de .btn) ===== */
    @media (min-width: 768px) {
      #openMenu { display: none !important; }
    }

    /* ===== Ícone WhatsApp dentro de qualquer .btn-cta ===== */
    .btn-cta .wa-icon {
      width: 20px;
      height: 20px;
      margin-right: 10px;
      flex-shrink: 0;
      fill: currentColor;
    }

    /* ===== MODAL LEAD ===== */
    .lead-modal {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: rgba(7, 0, 16, .82);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      overflow-y: auto;
      animation: leadFadeIn .18s ease-out;
    }
    .lead-modal.is-open { display: flex; }

    @keyframes leadFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .lead-modal-card {
      width: 100%;
      max-width: 440px;
      background: linear-gradient(180deg, #160028 0%, #0b0018 100%);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 24px;
      box-shadow:
        0 30px 80px rgba(0,0,0,.6),
        0 0 0 1px rgba(124,58,237,.18),
        inset 0 1px 0 rgba(255,255,255,.06);
      overflow: hidden;
      animation: leadCardIn .25s cubic-bezier(.16,1,.3,1);
      max-height: calc(100vh - 2rem);
      display: flex;
      flex-direction: column;
    }

    @keyframes leadCardIn {
      from { opacity: 0; transform: translateY(16px) scale(.94); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .lead-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 22px 24px 18px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      flex-shrink: 0;
    }
    .lead-modal-title {
      font-weight: 800;
      font-size: 1.375rem;
      color: #fff;
      line-height: 1.2;
    }
    .lead-modal-subtitle {
      font-size: .8125rem;
      color: rgba(255,255,255,.65);
      font-weight: 600;
      margin-top: 4px;
      line-height: 1.4;
    }
    .lead-modal-close {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.14);
      color: #fff;
      font-weight: 800;
      font-size: 1.125rem;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      cursor: pointer;
      transition: all .15s ease;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      line-height: 1;
      padding: 0;
    }
    .lead-modal-close:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.22);
    }
    .lead-modal-close:focus-visible {
      outline: 2px solid #a78bfa;
      outline-offset: 2px;
    }

    .lead-modal-body {
      padding: 22px 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      overflow-y: auto;
    }

    .lead-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .lead-field > label {
      font-size: .8125rem;
      font-weight: 800;
      color: rgba(255,255,255,.88);
    }
    .lead-field input {
      width: 100%;
      padding: 13px 16px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 12px;
      color: #fff;
      font-weight: 500;
      font-family: inherit;
      font-size: 1rem;
      transition: border-color .15s ease, background .15s ease;
    }
    .lead-field input::placeholder { color: rgba(255,255,255,.38); }
    .lead-field input:focus {
      outline: none;
      border-color: #a78bfa;
      background: rgba(255,255,255,.08);
    }

    .lead-error {
      display: none;
      font-size: .85rem;
      font-weight: 600;
      color: #fca5a5;
      background: rgba(252, 165, 165, .08);
      border: 1px solid rgba(252, 165, 165, .25);
      padding: 10px 14px;
      border-radius: 10px;
    }
    .lead-error.show { display: block; }

    .lead-modal-foot {
      font-size: .75rem;
      color: rgba(255,255,255,.6);
      text-align: center;
      font-weight: 600;
      margin-top: 6px;
    }

    .lead-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    body.lead-open { overflow: hidden; }

/* ============ UPGRADE VISUAL — LPs de oferta (2026-07-30) ============ */
/* Ícone padrão (maior) */
.lp-ico{
  display:grid; place-items:center; flex:0 0 auto;
  width:66px; height:66px; border-radius:18px;
  background:linear-gradient(135deg, rgba(79,70,229,.30), rgba(124,58,237,.30));
  border:1px solid rgba(167,139,250,.40);
  color:#c4b5fd;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 26px rgba(124,58,237,.16);
  transition:.2s ease;
}
.lp-ico svg{ width:34px; height:34px; }
.lp-feat:hover .lp-ico{ color:#ddd6fe; border-color:rgba(167,139,250,.65); transform:translateY(-3px) scale(1.06); }
.lp-ico-head{ width:74px; height:74px; border-radius:20px; }
.lp-ico-head svg{ width:38px; height:38px; }

/* Cabeçalho de seção padronizado (margens consistentes em toda a página) */
.lp-head{ text-align:center; margin-bottom:3rem; }
@media(max-width:768px){ .lp-head{ margin-bottom:2.25rem; } }
.lp-head .lp-ico-head{ margin:0 auto 18px; }
.lp-eyebrow{ font-size:.78rem; font-weight:800; letter-spacing:.09em; text-transform:uppercase; color:#a78bfa; margin:0 0 12px; }
.lp-h2{ font-size:clamp(1.9rem,4.2vw,3rem); font-weight:800; line-height:1.12; margin:0; }
.lp-sub{ margin:16px auto 0; max-width:44rem; font-size:1.02rem; font-weight:600; line-height:1.5; color:rgba(255,255,255,.80); }

/* Título das colunas (para quem) — respiro em relação ao conteúdo */
.lp-col-title{ font-size:1.3rem; font-weight:800; color:#fff; margin:0 0 20px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,.10); }

/* Lista com check / x */
.lp-list{ display:grid; gap:14px; margin:0; padding:0; }
.lp-list li{ display:flex; align-items:flex-start; gap:12px; list-style:none; color:rgba(255,255,255,.85); font-weight:600; line-height:1.45; }
.lp-badge{ flex:0 0 auto; width:28px; height:28px; border-radius:50%; display:grid; place-items:center; margin-top:1px; }
.lp-badge svg{ width:16px; height:16px; }
.lp-yes .lp-badge{ background:rgba(34,197,94,.16); color:#4ade80; border:1px solid rgba(74,222,128,.42); }
.lp-no  .lp-badge{ background:rgba(244,63,94,.14); color:#fb7185; border:1px solid rgba(251,113,133,.38); }

/* Faixa das pontas (tese) */
.lp-pillars{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:22px; }
@media(min-width:640px){ .lp-pillars{ grid-template-columns:repeat(3,1fr); } }
@media(min-width:920px){ .lp-pillars{ grid-template-columns:repeat(5,1fr); } }
.lp-pillar{ text-align:center; padding:22px 12px; border-radius:18px; transition:.22s ease; }
.lp-pillar:hover{ transform:translateY(-5px); border-color:rgba(167,139,250,.35); }
.lp-pillar .lp-ico{ margin:0 auto 12px; }
.lp-pillar b{ display:block; font-size:1rem; color:#fff; }

/* Passo: número grande de fundo + ícone */
.lp-step{ position:relative; overflow:hidden; }
.lp-step-num{ position:absolute; top:8px; right:16px; font-size:3.6rem; font-weight:800; line-height:1; color:rgba(167,139,250,.16); pointer-events:none; }

/* Pontos da prova (Partner / conta / estrutura) */
.lp-prova-points{ margin-top:34px; display:grid; grid-template-columns:1fr; gap:20px; }
@media(min-width:700px){ .lp-prova-points{ grid-template-columns:repeat(3,1fr); } }
.lp-prova-points > div{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:4px; }
.lp-prova-points .lp-ico{ margin-bottom:6px; }
.lp-prova-points b{ color:#fff; font-size:1.05rem; }
.lp-prova-points span:last-child{ color:rgba(255,255,255,.65); font-size:.9rem; }

/* Bullets do preço */
.lp-price-bullets{ margin:22px auto 0; display:inline-grid; gap:12px; text-align:left; }
.lp-price-bullets .lp-pb{ display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.85); font-weight:600; }
.lp-price-bullets .lp-badge{ background:rgba(34,197,94,.16); color:#4ade80; border:1px solid rgba(74,222,128,.42); }

/* Flutuar sutil dos ícones de cabeçalho */
@keyframes lp-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }
.lp-float{ animation:lp-float 3.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){ .lp-float{ animation:none; } }
