/* ============================================================
   FASSOLI — estilos de seções, footer e utilitários
   ============================================================ */

/* placeholder de imagem (striped) */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #EDF1F7 0 14px, #E4EAF3 14px 28px);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  aspect-ratio: 4 / 3.4;
}
.ph__txt { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .82rem; color: #8A98AC; letter-spacing: .02em; background: rgba(255,255,255,.75); padding: 6px 12px; border-radius: 6px; }

/* ---------- Credibilidade ---------- */
.credbar { border-block: 1px solid var(--border); background: #fff; }
.credbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.credbar__item { display: flex; align-items: flex-start; gap: .9rem; padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1rem,2vw,1.6rem); }
.credbar__item + .credbar__item { border-left: 1px solid var(--border); }
.credbar__ic { width: 30px; height: 30px; color: var(--accent); flex: none; margin-top: 2px; }
.credbar__n { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--primary); line-height: 1; letter-spacing: -.02em; }
.credbar__t { font-size: .86rem; color: var(--text-muted); margin-top: 4px; }
.credbar__ph { font-size: 1.5rem; }
.credbar__ph em { font-size: .7rem; font-style: normal; color: var(--star); background: #FFF6E6; padding: 2px 7px; border-radius: 6px; vertical-align: middle; }

/* ---------- Proposta de valor ---------- */
.value__grid { grid-template-columns: repeat(3, 1fr); margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.value__card { padding: clamp(1.6rem, 3vw, 2.2rem); }
.value__card h3 { font-size: var(--text-h3); margin: 1.2rem 0 .6rem; }

/* ---------- Serviços ---------- */
.svc__grid { grid-template-columns: repeat(3, 1fr); margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.svc__card { padding: clamp(1.5rem, 2.6vw, 2rem); display: flex; flex-direction: column; position: relative; }
.svc__card h3 { font-size: 1.32rem; margin: 1.1rem 0 .5rem; }
.svc__more { margin-top: auto; padding-top: 1.2rem; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--accent); font-size: .94rem; }
.svc__more .ico { width: 18px; height: 18px; flex: none; transition: transform .25s ease; }
.svc__card:hover .svc__more .ico { transform: translateX(4px); }
.svc__card--feat { background: var(--primary); border-color: var(--primary); color: #fff; }
.svc__card--feat h3 { color: #fff; }
.svc__card--feat .muted { color: var(--on-dark-muted); }
.svc__card--feat .svc__more { color: #fff; }
.svc__flag { position: absolute; top: 1.2rem; right: 1.2rem; white-space: nowrap; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 999px; }
.svc__flag--page { background: var(--accent-soft); color: var(--accent); border: 1px solid #DCE7FB; }

/* ---------- Como funciona ---------- */
.steps { list-style: none; margin: clamp(2.6rem,5vw,3.8rem) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); position: relative; }
.steps::before { content: ""; position: absolute; top: 26px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px); }
.steps__item { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.steps__num { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; box-shadow: 0 0 0 8px var(--bg); position: relative; z-index: 1; }
.steps__ic { margin: 1.3rem 0 .9rem; width: 56px; height: 56px; border-radius: 16px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.steps__ic svg { width: 28px; height: 28px; }
.steps__item h3 { font-size: var(--text-h3); margin-bottom: .5rem; }
.steps__item p { max-width: 32ch; }
.steps__cta { margin-top: clamp(2.4rem, 4vw, 3rem); text-align: center; }

/* ---------- Segmentos ---------- */
.seg__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: clamp(.8rem,1.4vw,1.1rem); margin-top: clamp(2.4rem, 5vw, 3.4rem); align-items: stretch; }
.seg__card { display: flex; align-items: center; gap: 1.1rem; padding: 1.4rem 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.seg__card .seg__txt { flex: 1; }
.seg__card h3 { font-size: 1.16rem; margin-bottom: .25rem; }
.seg__card p { font-size: .9rem; }
.seg__arrow { width: 22px; height: 22px; color: var(--accent); flex: none; transition: transform .25s ease; }
.seg__card:hover .seg__arrow { transform: translateX(4px); }
.seg__card--cta { background: var(--primary); border-color: var(--primary); color: #fff; flex-direction: column; align-items: flex-start; gap: .7rem; justify-content: center; }
.seg__card--cta h3 { color: #fff; }
.seg__card--cta p { color: var(--on-dark-muted); }

/* ---------- Prova social ---------- */
.social__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.social__lead h2 { font-size: var(--text-h2); margin: 1rem 0; }
.social__rating { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.8rem; flex-wrap: wrap; }
.social__score { display: flex; align-items: center; gap: .7rem; }
.social__score strong { font-family: var(--font-display); font-size: 2.6rem; color: var(--primary); line-height: 1; }
.social__stars { display: inline-flex; gap: 2px; color: var(--star); }
.social__stars svg { width: 22px; height: 22px; }
.social__stars--sm svg { width: 16px; height: 16px; }
.social__score em { font-size: .78rem; font-style: normal; color: var(--text-muted); align-self: center; }
.social__cards { display: grid; gap: 1rem; }
.social__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.social__card--ph { border-style: dashed; background: var(--bg-soft); }
.social__ph-note { font-size: .92rem; color: var(--text-muted); margin: .7rem 0 1rem; font-weight: 600; }
.social__ph-note span { font-weight: 400; font-size: .82rem; color: var(--text-faint); }
.social__author { display: flex; align-items: center; gap: .6rem; }
.social__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-softer); border: 1px dashed var(--border-strong); }
.social__name { font-size: .88rem; color: var(--text-faint); font-weight: 600; }

/* ---------- Fator R (seção escura) ---------- */
.fatorr { background: var(--bg-dark); color: var(--on-dark); padding-block: var(--section-y); position: relative; overflow: hidden; }
.fatorr::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 10%, rgba(37,99,235,.4), transparent 60%); pointer-events: none; }
.eyebrow--dark { color: #fff; }
.eyebrow--dark::before { background: var(--sky); }
.fatorr__in { position: relative; display: grid; grid-template-columns: 1fr .92fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.fatorr__h2 { color: #fff; font-size: var(--text-h2); margin: 1rem 0 1.2rem; }
.fatorr__p { color: var(--on-dark-muted); font-size: var(--text-lead); max-width: 50ch; margin-bottom: 1.8rem; }
.fatorr__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.fatorr__list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--on-dark); font-size: .98rem; line-height: 1.4; }
.fatorr__list svg { width: 20px; height: 20px; color: #fff; background: var(--accent); border-radius: 50%; padding: 4px; flex: none; margin-top: 1px; }
.fatorr__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* ---------- Planos ---------- */
.plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); align-items: stretch; margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.plan { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 2.6vw, 2.1rem); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--feat { background: var(--primary); border-color: var(--primary); color: var(--on-dark); box-shadow: var(--shadow-lg); }
.plan--feat:hover { box-shadow: var(--shadow-lg); }
.plan__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; box-shadow: var(--shadow-accent); white-space: nowrap; }
.plan__head h3 { font-size: 1.4rem; color: var(--primary); }
.plan--feat .plan__head h3 { color: #fff; }
.plan__for { font-size: .9rem; color: var(--text-muted); margin-top: .35rem; }
.plan--feat .plan__for { color: var(--on-dark-muted); }
.plan__price { padding: 1.3rem 0; margin: 1.3rem 0; border-block: 1px solid var(--border); display: flex; flex-direction: column; gap: .35rem; }
.plan--feat .plan__price { border-color: rgba(255,255,255,.16); }
.plan__prefix { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.plan--feat .plan__prefix { color: var(--on-dark-muted); }
.plan__amount { font-family: var(--font-display); font-size: 2.9rem; font-weight: 800; color: var(--primary); line-height: 1; letter-spacing: -.03em; display: inline-flex; align-items: baseline; }
.plan--feat .plan__amount { color: #fff; }
.plan__amount small { font-size: 1.1rem; font-weight: 600; margin-right: 4px; color: var(--text-muted); }
.plan--feat .plan__amount small { color: var(--on-dark-muted); }
.plan__amount em { font-style: normal; font-size: 1rem; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.plan--feat .plan__amount em { color: var(--on-dark-muted); }
.plan__amount--text { font-size: 2rem; }
.plan__pnote { font-size: .82rem; color: var(--text-faint); }
.plan--feat .plan__pnote { color: var(--on-dark-muted); }
.plan__feats { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .7rem; flex: 1; }
.plan__feats li { display: flex; align-items: flex-start; gap: .55rem; font-size: .94rem; color: var(--text); line-height: 1.4; }
.plan--feat .plan__feats li { color: var(--on-dark); }
.plan__feats svg { width: 18px; height: 18px; color: #fff; background: var(--accent); border-radius: 50%; padding: 3.5px; flex: none; margin-top: 1px; }
.plan--feat .plan__feats svg { background: var(--sky); color: var(--primary); }
.plan__feat-h { font-weight: 700; color: #fff !important; font-family: var(--font-body); padding-bottom: .1rem; }
.plan__cta { width: 100%; }
.plan:not(.plan--feat) .plan__cta:hover { border-color: var(--accent); color: var(--accent); }
.plans__fine { display: flex; align-items: flex-start; justify-content: center; gap: .5rem; max-width: 60ch; margin: clamp(2rem, 4vw, 2.6rem) auto 0; text-align: center; font-size: .86rem; color: var(--text-muted); line-height: 1.5; }
.plans__fine svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 1px; }
.fatorr__fine { margin-top: 1rem; font-size: .85rem; color: var(--on-dark-muted); }
.fatorr__panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); backdrop-filter: blur(6px); }
.fatorr__compare { display: flex; align-items: center; gap: 1rem; }
.fatorr__col { flex: 1; text-align: center; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.3rem .8rem; }
.fatorr__col-l { display: block; font-size: .78rem; color: var(--on-dark-muted); text-transform: uppercase; letter-spacing: .08em; }
.fatorr__col-v { display: block; font-family: var(--font-display); font-size: clamp(1.9rem,4vw,2.6rem); color: #fff; line-height: 1.1; margin: .4rem 0 .1rem; }
.fatorr__col--good { background: rgba(37,99,235,.18); border-color: rgba(37,99,235,.5); }
.fatorr__col--good .fatorr__col-v { color: #fff; }
.fatorr__col-t { font-size: .82rem; color: var(--on-dark-muted); }
.fatorr__arrow { width: 26px; height: 26px; color: var(--sky); flex: none; }
.fatorr__note { display: flex; align-items: flex-start; gap: .5rem; margin-top: 1.4rem; font-size: .82rem; color: var(--on-dark-muted); }
.fatorr__note svg { width: 16px; height: 16px; color: var(--sky); flex: none; margin-top: 2px; }

/* ---------- Calculadora do Fator R ---------- */
.fatorr__panel--calc { padding: clamp(1.3rem, 2.4vw, 1.9rem); }
.calc { display: grid; gap: 1.15rem; }
.calc__head { display: flex; flex-direction: column; gap: 2px; }
.calc__kicker { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: #fff; }
.calc__kicker svg { width: 20px; height: 20px; color: var(--sky); }
.calc__sub { font-size: .82rem; color: var(--on-dark-muted); }

.calc__inputs { display: grid; gap: 1rem; }
.cfield { display: grid; gap: .6rem; }
.cfield__top { display: flex; align-items: flex-end; justify-content: space-between; gap: .8rem; }
.cfield__lbl { display: flex; flex-direction: column; font-size: .86rem; font-weight: 600; color: var(--on-dark); line-height: 1.3; }
.cfield__lbl em { font-style: normal; font-weight: 400; font-size: .72rem; color: var(--on-dark-muted); margin-top: 2px; }
.cfield__box { display: inline-flex; align-items: center; gap: .25rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 9px; padding: 7px 11px; font-size: .82rem; color: var(--on-dark-muted); flex: none; }
.cfield__box input { width: 84px; background: none; border: none; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; text-align: right; padding: 0; outline: none; }
.cfield__box:focus-within { border-color: var(--sky); }
.cfield__range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: rgba(255,255,255,.14); outline: none; cursor: pointer; }
.cfield__range::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 4px solid var(--accent); box-shadow: 0 2px 8px rgba(0,0,0,.4); cursor: pointer; }
.cfield__range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 4px solid var(--accent); cursor: pointer; }

.calc__gauge { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1rem 1.1rem; display: grid; gap: .7rem; }
.calc__gauge-l { display: flex; align-items: baseline; justify-content: space-between; }
.calc__gauge-lbl { font-size: .82rem; color: var(--on-dark-muted); font-weight: 600; }
.calc__gauge-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1; }
.calc__gauge.is-good .calc__gauge-val { color: #fff; }
.calc__meter { position: relative; height: 9px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: visible; }
.calc__meter-fill { height: 100%; border-radius: 999px; transition: width .35s cubic-bezier(.4,0,.2,1); background: var(--text-faint); }
.is-good .calc__meter-fill { background: linear-gradient(90deg, var(--accent), var(--sky)); }
.calc__meter-mark { position: absolute; top: -4px; bottom: -4px; width: 2px; background: rgba(255,255,255,.55); }
.calc__meter-mark span { position: absolute; top: -19px; left: 50%; transform: translateX(-50%); font-size: .64rem; color: var(--on-dark-muted); white-space: nowrap; }
.calc__status { display: flex; align-items: center; gap: .45rem; font-size: .86rem; color: var(--on-dark); flex-wrap: wrap; }
.calc__status b { color: #fff; white-space: nowrap; }
.calc__status svg { width: 17px; height: 17px; flex: none; }
.is-good .calc__status svg { color: var(--sky); }
.is-warn .calc__status svg { color: #F5A524; }

.calc__compare { display: flex; align-items: stretch; gap: .7rem; }
.calc__col { flex: 1; text-align: center; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: .85rem .5rem; position: relative; }
.calc__col-l { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--on-dark-muted); }
.calc__col-v { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.1; margin: .25rem 0 .1rem; }
.calc__col-t { font-size: .8rem; color: var(--on-dark-muted); }
.calc__col-t small { font-size: .72rem; }
.calc__col--good { background: rgba(37,99,235,.16); border-color: rgba(37,99,235,.4); }
.calc__col--now { outline: 2px solid var(--sky); outline-offset: 0; }
.calc__col--now::after { content: "atual"; position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--sky); color: #06263a; font-size: .62rem; font-weight: 700; padding: 1px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.calc__arrow { width: 22px; height: 22px; color: var(--sky); flex: none; align-self: center; }

.calc__result { background: linear-gradient(120deg, rgba(37,99,235,.22), rgba(14,165,233,.12)); border: 1px solid rgba(37,99,235,.4); border-radius: var(--radius); padding: 1rem 1.2rem; display: grid; gap: 2px; }
.calc__result-l { font-size: .82rem; color: var(--on-dark); }
.calc__result-v { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.05; }
.calc__result-v small { font-size: .9rem; font-weight: 500; color: var(--on-dark-muted); margin-left: 3px; }
.calc__result-y { font-size: .82rem; color: var(--sky); font-weight: 600; }
.calc__cta { width: 100%; }
.calc__fine { display: flex; align-items: flex-start; gap: .45rem; font-size: .74rem; color: var(--on-dark-muted); line-height: 1.45; }
.calc__fine svg { width: 14px; height: 14px; color: var(--sky); flex: none; margin-top: 2px; }

/* ---------- Sobre ---------- */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about__art { position: relative; }
.about__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-lg); background: var(--bg-softer); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,28,50,0) 55%, rgba(14,28,50,.28)); pointer-events: none; }
.about__photo-fallback { display: none; }
.about__photo--ph { display: grid; place-items: center; background:
  repeating-linear-gradient(135deg, #EDF1F7 0 14px, #E4EAF3 14px 28px); border: 1px solid var(--border); }
.about__photo--ph::after { display: none; }
.about__photo--ph .about__photo-fallback { display: block; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .82rem; color: #8A98AC; background: rgba(255,255,255,.75); padding: 6px 12px; border-radius: 6px; }
.about__badge { position: absolute; right: -10px; bottom: -22px; background: var(--primary); color: #fff; border-radius: var(--radius); padding: 1.1rem 1.3rem; max-width: 230px; display: flex; align-items: center; gap: .9rem; box-shadow: var(--shadow-lg); }
.about__badge strong { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.about__badge span { font-size: .82rem; color: var(--on-dark-muted); }
.about__copy h2 { font-size: var(--text-h2); margin: 1rem 0; }
.about__p { margin-top: 1rem; }
.about__list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .8rem; }
.about__list li { display: flex; align-items: center; gap: .7rem; font-weight: 500; color: var(--text); }
.about__list svg { width: 20px; height: 20px; color: #fff; background: var(--accent); border-radius: 50%; padding: 4px; flex: none; }
.about__more { margin-top: 1.8rem; }
.about__more .ico { width: 18px; height: 18px; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.faq__lead { align-self: start; }
.faq__lead h2 { font-size: var(--text-h2); margin: 1rem 0; }
.faq__lead .btn { margin-top: 1.6rem; }
.faq__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq__item--open { border-color: #C7D6EE; box-shadow: var(--shadow); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.4rem; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--primary); }
.faq__pm { width: 22px; height: 22px; color: var(--accent); flex: none; }
.faq__a { overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.faq__a p { padding: 0 1.4rem 1.3rem; color: var(--text-muted); max-width: 62ch; }

/* ---------- CTA final ---------- */
.finalcta { background: var(--primary); color: var(--on-dark); padding-block: var(--section-y); text-align: center; position: relative; overflow: hidden; }
.finalcta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(45% 70% at 50% 0%, rgba(37,99,235,.4), transparent 65%); }
.finalcta__in { position: relative; display: flex; flex-direction: column; align-items: center; }
.finalcta .eyebrow--dark { justify-content: center; }
.finalcta__h2 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 1rem 0; max-width: 18ch; }
.finalcta__sub { color: var(--on-dark-muted); font-size: var(--text-lead); max-width: 48ch; margin-bottom: 2.2rem; }
.finalcta__contact { list-style: none; margin: 2.6rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1.8rem; }
.finalcta__contact li, .finalcta__contact a { display: inline-flex; align-items: center; gap: .5rem; color: var(--on-dark-muted); font-size: .94rem; }
.finalcta__contact a:hover { color: #fff; }
.finalcta__contact svg { width: 18px; height: 18px; color: var(--sky); flex: none; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: var(--on-dark-muted); padding-top: clamp(3.5rem,6vw,5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__tag { margin: 1.2rem 0 1.6rem; max-width: 34ch; font-size: .96rem; line-height: 1.6; }
.footer__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem; }
.footer__portal { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .94rem; color: var(--on-dark); transition: color .2s; }
.footer__portal svg { width: 18px; height: 18px; color: var(--sky); }
.footer__portal:hover { color: #fff; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .01em; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer__col a { font-size: .94rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: .55rem; font-size: .94rem; line-height: 1.5; }
.footer__contact svg { width: 18px; height: 18px; color: var(--sky); flex: none; margin-top: 2px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }
.footer__legal a { color: var(--on-dark); text-decoration: underline; text-underline-offset: 2px; }
.footer__legal a:hover { color: #fff; }
.footer__sep { opacity: .5; }

/* ---------- Floating WhatsApp ---------- */
.floatwa { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-accent); transition: transform .2s, background .2s; }
.floatwa:hover { transform: scale(1.06); background: var(--accent-hover); }
.floatwa svg { width: 30px; height: 30px; }
.floatwa__pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,99,235,.5); animation: wapulse 2.4s infinite; }
@keyframes wapulse { 0% { box-shadow: 0 0 0 0 rgba(37,99,235,.5); } 70% { box-shadow: 0 0 0 18px rgba(37,99,235,0); } 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); } }

/* ---------- Barra mobile ---------- */
.mbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
.mbar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 600; border-radius: 10px; padding: 13px; font-size: .98rem; }
.mbar__call { background: var(--bg-soft); color: var(--primary); border: 1px solid var(--border); flex: 0 0 34%; }
.mbar__wa { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.mbar a svg { width: 19px; height: 19px; }

/* ---------- Tweak hint ---------- */
.tw-hint { font-size: .78rem; color: var(--text-faint, #8A98AC); margin: -.3rem 0 .4rem; line-height: 1.45; }

/* ---------- Aceite de cookies ---------- */
.cookie {
  position: fixed; z-index: 75;
  left: 22px; bottom: 22px;
  width: min(440px, calc(100vw - 44px));
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.3rem;
  display: grid; grid-template-columns: auto 1fr; gap: .6rem 1rem;
  align-items: start;
  animation: cookieUp .45s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes cookieUp { from { transform: translateY(18px); } to { transform: none; } }
.cookie__ic { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; border: 1px solid #DCE7FB; }
.cookie__ic svg { width: 22px; height: 22px; }
.cookie__txt strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--primary); display: block; margin-bottom: .3rem; }
.cookie__txt p { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.cookie__txt a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie__btns { grid-column: 1 / -1; display: flex; gap: .6rem; margin-top: .3rem; }
.cookie__b { flex: 1; padding: 11px 18px; font-size: .94rem; }
@media (max-width: 620px) {
  .cookie { left: 12px; right: 12px; bottom: calc(74px + env(safe-area-inset-bottom)); width: auto; padding: 1rem 1.1rem; }
  .floatwa { bottom: calc(150px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .hdr__nav, .hdr__phone, .hdr__portal, .hdr__cta { display: none; }
  .hdr__burger { display: inline-flex; margin-left: auto; }
  .hero__grid, .hero__grid--bold { grid-template-columns: 1fr; }
  .hero__art { order: 2; max-width: 560px; }
  .hero__credit { flex-wrap: wrap; }
  .svc__grid, .value__grid { grid-template-columns: repeat(2, 1fr); }
  .credbar__grid { grid-template-columns: repeat(2, 1fr); }
  .credbar__item:nth-child(3) { border-left: none; }
  .credbar__item:nth-child(odd) { border-left: none; }
  .credbar__item:nth-child(even) { border-left: 1px solid var(--border); }
  .credbar__item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .seg__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--feat { order: -1; }
  .social__wrap, .fatorr__in, .about__grid, .faq__grid { grid-template-columns: 1fr; }
  .faq__lead { position: static; }
  .steps { grid-template-columns: 1fr; gap: 2.4rem; }
  .steps::before { display: none; }
  .about__art { max-width: 520px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .svc__grid, .value__grid, .seg__grid, .credbar__grid { grid-template-columns: 1fr; }
  .credbar__item:nth-child(even) { border-left: none; }
  .credbar__item:nth-child(n+2) { border-top: 1px solid var(--border); }
  .hero__credit { gap: 1.2rem 2rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas .btn, .steps__cta .btn { width: 100%; }
  body { padding-bottom: 70px; }
  .mbar { display: flex; }
  .floatwa { bottom: 80px; }
  .finalcta__contact { flex-direction: column; align-items: center; gap: .7rem; }
}
