/* =====================================================
   ARTIOS THEME — Design System v5.0
   Fiel ao layout Lovable (Fraunces + Inter, navy/gold)
   ===================================================== */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --bg:        hsl(222,47%,8%);
  --surface-1: hsl(222,44%,11%);
  --surface-2: hsl(221,40%,14%);
  --surface-3: hsl(220,36%,18%);
  --fg:        hsl(40,30%,96%);
  --muted:     hsl(220,14%,68%);
  --gold:      hsl(42,78%,58%);
  --gold-light:hsl(45,90%,68%);
  --gold-deep: hsl(38,70%,45%);
  --green:     hsl(152,55%,48%);
  --border:    hsl(220,25%,22%);
  --border-s:  hsl(220,22%,30%);
  --radius:    0.625rem;
  --grad-gold: linear-gradient(135deg,hsl(45,90%,68%),hsl(42,78%,58%) 50%,hsl(38,70%,45%));
  --grad-hero: radial-gradient(ellipse at top right,hsl(42,78%,58%,.12),transparent 55%),
               radial-gradient(ellipse at bottom left,hsl(220,60%,30%,.35),transparent 60%),
               linear-gradient(180deg,hsl(222,47%,8%),hsl(222,44%,11%));
  --grad-surface:linear-gradient(180deg,hsl(222,44%,11%),hsl(221,40%,14%));
  --shadow-elegant:0 24px 60px -20px hsl(222,60%,4%,.6);
  --shadow-gold:0 12px 40px -12px hsl(42,78%,58%,.35);
  --shadow-card:0 1px 0 hsl(40,30%,96%,.04) inset,0 20px 40px -24px hsl(222,60%,4%,.5);
  --font-serif:'Fraunces',Georgia,serif;
  --font-sans:'Inter',system-ui,sans-serif;
}

/* ── RESET + BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1,h2,h3,h4,h5 { font-family: var(--font-serif); letter-spacing: -.02em; line-height: 1.1; color: var(--fg); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, input, select, textarea { font-family: var(--font-sans); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 860px; }
.section { padding: 6rem 0; }
.section-alt { padding: 5rem 0; background: hsl(222,44%,11%,.4); border-top: 1px solid hsl(220,25%,22%,.6); border-bottom: 1px solid hsl(220,25%,22%,.6); }
.section-surface { padding: 5rem 0; background: var(--grad-surface); border-top: 1px solid hsl(220,25%,22%,.6); }

/* ── TYPOGRAPHY ── */
.eyebrow { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-title { font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 500; margin: .5rem 0 1rem; }
.section-sub { color: var(--muted); max-width: 560px; margin: 0 auto; text-align: center; }
.text-gold-gradient { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.text-italic { font-style: italic; }
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ── GRAIN EFFECT ── */
.grain { position: relative; }
.grain::after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .025; z-index: 1; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ── CARD BASE ── */
.card { background: var(--surface-2); border: 1px solid hsl(220,25%,22%,.6); border-radius: calc(var(--radius)*1.6); transition: border-color .3s, transform .3s, box-shadow .3s; }
.card:hover { border-color: hsl(42,78%,58%,.4); box-shadow: var(--shadow-card); }
.card--hover:hover { transform: translateY(-4px); }

/* ── BORDER GRADIENT ── */
.border-gradient { position: relative; background-clip: padding-box; }
.border-gradient::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg,hsl(42,78%,58%,.4),hsl(42,78%,58%,.05)); -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.25rem; border-radius: var(--radius); font-size: .875rem; font-weight: 600; cursor: pointer; border: none; transition: opacity .2s, transform .2s; white-space: nowrap; }
.btn-gold { background: var(--grad-gold); color: var(--bg); box-shadow: var(--shadow-gold); }
.btn-gold:hover { opacity: .95; transform: scale(1.01); }
.btn-outline { background: transparent; color: var(--fg); border: 1px solid var(--border-s); }
.btn-outline:hover { background: var(--surface-2); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { opacity: .9; }
.btn-lg { padding: .8rem 1.6rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-h12 { height: 3rem; }

/* ── NAV ── */
.site-header { position: sticky; top: 0; z-index: 100; height: 4rem; border-bottom: 1px solid hsl(220,25%,22%,.6); background: hsl(222,47%,8%,.8); backdrop-filter: blur(20px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: .625rem; }
.nav-logo svg { fill: var(--gold); color: var(--gold); }
.nav-logo__name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; color: var(--fg); }
.nav-logo__sub { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-left: .25rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.btn-wa-nav { background: hsl(152,55%,48%,.1); color: var(--green); border: 1px solid hsl(152,55%,48%,.4); }
.btn-wa-nav:hover { background: hsl(152,55%,48%,.2); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); padding: .4rem; border-radius: var(--radius); color: var(--fg); cursor: pointer; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; border-radius: 2px; }

/* ── BREADCRUMB ── */
.breadcrumb-wrap { border-bottom: 1px solid hsl(220,25%,22%,.4); background: hsl(222,44%,11%,.3); padding: .75rem 0; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb__sep { opacity: .5; }
.breadcrumb__current { color: var(--fg); }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; }
.hero__bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__overlay { position: absolute; inset: 0; background: hsl(222,47%,8%,.85); }
.hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse at top right,hsl(42,78%,58%,.16),transparent 55%),radial-gradient(ellipse at bottom left,hsl(220,60%,30%,.45),transparent 60%); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 5rem 0 7rem; }
.hero__inner--split { grid-template-columns: 7fr 5fr; align-items: start; padding: 5rem 0; }
.hero__inner--split-home { grid-template-columns: 7fr 5fr; align-items: start; padding: 7rem 0 5rem; gap: 4rem; }

/* Left col */
.hero__left { display: flex; flex-direction: column; gap: 2.5rem; }
.hero__pill { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid hsl(42,78%,58%,.3); background: hsl(42,78%,58%,.05); border-radius: 99px; padding: .375rem .875rem; margin-bottom: 1.5rem; width: fit-content; }
.hero__pill-icon { color: var(--gold); }
.hero__pill span { font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }
.hero__h1 { font-size: clamp(2.4rem,5vw,4rem); font-weight: 500; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.hero__h1--seg { font-size: clamp(2rem,4vw,3.5rem); }
.hero__sub { font-size: clamp(1rem,1.5vw,1.125rem); color: var(--muted); line-height: 1.7; max-width: 38rem; margin-bottom: 2.5rem; }
.hero__metrics { display: flex; flex-wrap: wrap; align-items: center; gap: 1.75rem .5rem; font-size: .875rem; color: var(--muted); margin-bottom: 1.5rem; }
.hero__metrics strong { color: var(--fg); }
.hero__dot { width: .25rem; height: .25rem; border-radius: 50%; background: var(--border-s); }
.hero__metric-check { display: flex; align-items: center; gap: .5rem; }
.hero__metric-check svg { color: var(--gold); flex-shrink: 0; }

/* Prazo card */
.hero__prazo { border: 1px solid hsl(42,78%,58%,.2); background: hsl(221,40%,14%,.6); border-radius: var(--radius); padding: 1.25rem; position: relative; overflow: hidden; display: flex; align-items: flex-start; gap: 1rem; }
.hero__prazo::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-gold); }
.hero__prazo-icon { width: 2.25rem; height: 2.25rem; flex-shrink: 0; border-radius: 50%; background: hsl(42,78%,58%,.15); border: 1px solid hsl(42,78%,58%,.3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.hero__prazo-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.hero__prazo-text { font-size: .875rem; color: var(--muted); }

/* Checklist in hero (segmento) */
.hero__checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem; }
.hero__checklist li { display: flex; align-items: flex-start; gap: .5rem; }
.hero__checklist svg { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.hero__media-badge { display: inline-flex; align-items: center; gap: .75rem; border: 1px solid hsl(42,78%,58%,.3); background: hsl(42,78%,58%,.1); border-radius: 99px; padding: .5rem 1rem; }
.hero__media-badge-label { font-size: .625rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }
.hero__media-badge-value { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; }

/* Right col — Form */
.hero__form-wrap { border: 1px solid var(--border); border-radius: calc(var(--radius)*2); background: hsl(222,44%,11%,.95); padding: 2rem; box-shadow: var(--shadow-elegant); position: relative; }
.hero__form-wrap.border-gradient::before { border-radius: calc(var(--radius)*2); }
.form-card-header { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.5rem; }
.form-card-icon { width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: .75rem; background: var(--grad-gold); box-shadow: var(--shadow-gold); display: flex; align-items: center; justify-content: center; color: var(--bg); }
.form-card-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; line-height: 1.2; }
.form-card-sub { font-size: .875rem; color: var(--muted); margin-top: .25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.form-field { width: 100%; height: 2.75rem; padding: 0 .875rem; background: hsl(221,40%,14%,.6); border: 1px solid var(--border-s); border-radius: var(--radius); color: var(--fg); font-size: .875rem; font-family: var(--font-sans); transition: border-color .2s; }
.form-field:focus { outline: none; border-color: var(--gold); }
.form-field::placeholder { color: hsl(220,14%,50%); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239da8b7' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .875rem center; padding-right: 2.5rem; }
.form-submit { width: 100%; height: 3rem; background: var(--grad-gold); color: var(--bg); font-size: 1rem; font-weight: 600; border-radius: var(--radius); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .5rem; box-shadow: var(--shadow-gold); transition: opacity .2s, transform .2s; margin-top: .25rem; }
.form-submit:hover { opacity: .95; transform: scale(1.01); }
.form-privacy { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .75rem; color: var(--muted); margin-top: .875rem; }

/* ── SERVICES / TRIBUTOS CARDS ── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.service-card { position: relative; overflow: hidden; padding: 1.75rem; }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right,transparent,var(--gold),transparent); opacity: 0; transition: opacity .3s; }
.service-card:hover::after { opacity: 1; }
.service-card__tag-row { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; }
.service-card__tag { font-size: .625rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }
.service-card__line { height: 1px; width: 2rem; background: hsl(42,78%,58%,.4); }
.service-card__name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; margin-bottom: .25rem; }
.service-card__subtitle { font-size: .875rem; font-weight: 500; color: hsl(42,78%,58%,.9); margin-bottom: 1rem; }
.service-card__desc { font-size: .875rem; line-height: 1.65; color: var(--muted); margin-bottom: 1.5rem; }
.service-card__link { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 500; color: var(--gold); transition: gap .2s; }
.service-card__link:hover { gap: .625rem; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.process-grid::before { content: ''; position: absolute; left: 8%; right: 8%; top: 2rem; height: 1px; background: linear-gradient(to right,transparent,var(--border-s),transparent); pointer-events: none; }
.process-step { text-align: center; position: relative; }
.process-step__num { width: 4rem; height: 4rem; border-radius: 50%; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; border: 1px solid var(--border-s); background: var(--surface-2); color: var(--fg); position: relative; z-index: 1; }
.process-step--active .process-step__num { background: var(--grad-gold); box-shadow: var(--shadow-gold); color: var(--bg); border: none; }
.process-step__name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.process-step--active .process-step__name { color: var(--gold); }
.process-step__desc { font-size: .875rem; color: var(--muted); max-width: 14rem; margin: 0 auto; line-height: 1.5; }

/* Segmento — processo with icon squares */
.process-icon-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.process-icon-grid::before { content: ''; position: absolute; left: 0; right: 0; top: 2rem; height: 1px; background: linear-gradient(to right,transparent,hsl(42,78%,58%,.4),transparent); }
.process-icon-step { position: relative; }
.process-icon-step__box { width: 4rem; height: 4rem; border-radius: .875rem; background: var(--grad-gold); box-shadow: var(--shadow-gold); display: flex; align-items: center; justify-content: center; color: var(--bg); position: relative; margin-bottom: 1.25rem; }
.process-icon-step__num { position: absolute; top: -.5rem; right: -.5rem; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--surface-1); border: 1px solid hsl(42,78%,58%,.4); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: .875rem; font-weight: 600; color: var(--gold); }
.process-icon-step__name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: .25rem; }
.process-icon-step__days { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .5rem; }
.process-icon-step__desc { font-size: .875rem; color: var(--muted); line-height: 1.55; }

/* ── METRICS ── */
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.metric-card { padding: 1.75rem; text-align: center; }
.metric-card__value { font-family: var(--font-serif); font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 600; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric-card__label { font-size: .875rem; color: var(--muted); margin-top: .5rem; }

/* ── SEGMENTOS ── */
.segments-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; }
.segment-card { padding: 1.5rem; text-align: center; cursor: pointer; }
.segment-card__icon { width: 2.75rem; height: 2.75rem; margin: 0 auto .75rem; border-radius: .5rem; background: hsl(42,78%,58%,.1); border: 1px solid hsl(42,78%,58%,.2); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: background .3s, border-color .3s; }
.segment-card:hover .segment-card__icon { background: var(--grad-gold); border-color: transparent; color: var(--bg); }
.segment-card__name { font-size: .875rem; font-weight: 500; }

/* ── ESTADOS ── */
.states-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; }
.state-card { padding: 1.25rem 1rem; text-align: center; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: .625rem; }
.state-card__uf { width: 2.75rem; height: 2.75rem; border-radius: .5rem; background: var(--grad-gold); color: var(--bg); font-family: var(--font-serif); font-weight: 600; font-size: .9rem; display: flex; align-items: center; justify-content: center; }
.state-card__name { font-size: .8rem; font-weight: 500; color: var(--muted); line-height: 1.3; }
.state-card:hover .state-card__name { color: var(--fg); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { padding: 1.75rem; }
.testimonial-card__stars { display: flex; gap: .125rem; margin-bottom: 1rem; color: var(--gold); }
.testimonial-card__quote { font-family: var(--font-serif); font-size: 1rem; font-style: italic; line-height: 1.65; color: hsl(40,30%,96%,.9); margin-bottom: 1.5rem; }
.testimonial-card__footer { display: flex; align-items: center; gap: .75rem; padding-top: 1.25rem; border-top: 1px solid hsl(220,25%,22%,.6); }
.testimonial-card__avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--grad-gold); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--bg); font-size: 1rem; flex-shrink: 0; }
.testimonial-card__name { font-size: .875rem; font-weight: 600; }
.testimonial-card__role { font-size: .75rem; color: var(--muted); }

/* ── CASES ── */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.case-card { padding: 1.75rem; position: relative; }
.case-card__seg { font-size: .625rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: hsl(42,78%,58%,.8); margin-bottom: .75rem; }
.case-card__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.case-card__label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.case-card__value { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.case-card__icon { position: absolute; top: 1.5rem; right: 1.5rem; color: hsl(42,78%,58%,.4); transition: color .3s; }
.case-card:hover .case-card__icon { color: var(--gold); }

/* ── BLOG ── */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; margin-bottom: 1.25rem; }
.blog-featured__thumb { min-height: 16rem; background: linear-gradient(135deg,hsl(42,78%,58%,.2),hsl(222,44%,11%)); display: flex; align-items: center; justify-content: center; }
.blog-featured__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__thumb-placeholder { font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }
.blog-featured__body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.blog-tag { font-size: .625rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); margin-bottom: .75rem; display: block; }
.blog-featured__title { font-family: var(--font-serif); font-size: clamp(1.25rem,2vw,1.875rem); font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
.blog-featured__desc { font-size: .9375rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
.blog-featured__link { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 500; color: var(--gold); transition: gap .2s; }
.blog-featured__link:hover { gap: .625rem; }
.blog-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.blog-card { overflow: hidden; cursor: pointer; }
.blog-card__thumb { height: 8rem; background: linear-gradient(135deg,hsl(42,78%,58%,.1),var(--surface-3)); display: flex; align-items: center; justify-content: center; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__thumb-placeholder { font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: hsl(42,78%,58%,.6); }
.blog-card__body { padding: 1.5rem; }
.blog-card__title { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; line-height: 1.3; margin: .5rem 0 1rem; }
.blog-card__link { display: inline-flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 500; color: var(--gold); transition: gap .2s; }
.blog-card:hover .blog-card__link { gap: .5rem; }

/* ── SEO SECTION ── */
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.seo-text__title { font-family: var(--font-serif); font-size: clamp(1.5rem,2.5vw,2.5rem); font-weight: 500; margin-bottom: 1.25rem; }
.seo-text__body { color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.seo-links { display: flex; flex-direction: column; gap: .75rem; }
.seo-link { padding: 1.25rem; border: 1px solid hsl(220,25%,22%,.6); border-radius: var(--radius); background: hsl(221,40%,14%,.5); transition: border-color .2s; }
.seo-link:hover { border-color: hsl(42,78%,58%,.4); }
.seo-link__q { font-weight: 600; margin-bottom: .375rem; }
.seo-link__a { font-size: .875rem; color: var(--muted); }

/* ── CONTENT + SIDEBAR (segmento) ── */
.content-sidebar-layout { display: grid; grid-template-columns: 8fr 4fr; gap: 2.5rem; align-items: start; }
.content-article .eyebrow { margin-bottom: .75rem; }
.content-article h2 { font-size: clamp(1.5rem,3vw,2.5rem); font-weight: 500; margin-bottom: 1.5rem; }
.content-article p { color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; font-size: 1rem; }
.content-article strong { color: var(--fg); }
.content-article a { color: var(--gold); text-underline-offset: .25rem; }
.content-article a:hover { text-decoration: underline; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { padding: 1.5rem; }
.sidebar-card__header { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.sidebar-card__header svg { color: var(--gold); }
.sidebar-card__label { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }
.sidebar-dl { display: flex; flex-direction: column; gap: .75rem; }
.sidebar-dl__row { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; padding-bottom: .5rem; border-bottom: 1px solid hsl(220,25%,22%,.4); font-size: .875rem; }
.sidebar-dl__row:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-dl__key { color: var(--muted); }
.sidebar-dl__val { font-weight: 500; }
.sidebar-prazo { position: relative; overflow: hidden; }
.sidebar-prazo::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-gold); }
.sidebar-prazo .inner { padding-left: .75rem; }
.sidebar-prazo__text { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-top: .5rem; }
.sidebar-prazo__link { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 500; color: var(--gold); margin-top: .75rem; transition: gap .2s; }
.sidebar-prazo__link:hover { gap: .625rem; }
.sidebar-cases ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.sidebar-cases li a { font-size: .875rem; color: var(--fg); transition: color .2s; }
.sidebar-cases li a:hover { color: var(--gold); }

/* ── PAYMENT (segmento) ── */
.payment-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 900px; margin: 0 auto; }
.payment-card { padding: 1.75rem; }
.payment-card__icon { width: 3rem; height: 3rem; border-radius: .75rem; background: hsl(42,78%,58%,.1); border: 1px solid hsl(42,78%,58%,.3); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1.25rem; }
.payment-card__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.payment-card__desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid hsl(220,25%,22%,.6); border-radius: .75rem; background: hsl(221,40%,14%,.6); overflow: hidden; }
.faq-item.open { border-color: hsl(42,78%,58%,.4); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; background: none; border: none; color: var(--fg); cursor: pointer; text-align: left; font-family: var(--font-serif); font-size: 1rem; font-weight: 600; }
.faq-btn__icon { flex-shrink: 0; width: 1.25rem; height: 1.25rem; transition: transform .3s; color: var(--gold); }
.faq-item.open .faq-btn__icon { transform: rotate(180deg); }
.faq-body { display: none; padding: 0 1.25rem 1.25rem; font-size: .9375rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-body { display: block; }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid hsl(220,25%,22%,.6); background: hsl(222,44%,11%,.6); padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
.footer-logo svg { fill: var(--gold); color: var(--gold); }
.footer-logo__name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; }
.footer-tagline { font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: .375rem; font-size: .875rem; color: var(--muted); }
.footer-col__heading { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1.25rem; }
.footer-col__links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-col__links a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.footer-col__links a:hover { color: var(--fg); }
.footer-cta-text { font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem; }
.footer-cta-btns { display: flex; flex-direction: column; gap: .625rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2rem; border-top: 1px solid hsl(220,25%,22%,.6); font-size: .75rem; color: var(--muted); flex-wrap: wrap; }
.footer-bottom__legal { display: flex; gap: 1.5rem; }
.footer-bottom__legal a:hover { color: var(--fg); }

/* ── WP CONTENT ── */
.wp-content { color: var(--muted); line-height: 1.75; font-size: 1rem; }
.wp-content p { margin-bottom: 1.25rem; }
.wp-content strong { color: var(--fg); }
.wp-content a { color: var(--gold); text-underline-offset: .25rem; }
.wp-content a:hover { text-decoration: underline; }
.wp-content h2 { font-size: 1.5rem; color: var(--fg); margin: 2rem 0 .75rem; }
.wp-content h3 { font-size: 1.25rem; color: var(--fg); margin: 1.5rem 0 .5rem; }
.wp-content ul, .wp-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.wp-content li { margin-bottom: .375rem; }

/* ── WhatsApp FLOAT ── */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9000; width: 3.25rem; height: 3.25rem; border-radius: 50%; background: hsl(152,55%,42%); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px hsl(152,55%,42%,.4); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-cta { margin-top: 3.5rem; text-align: center; }
.link-gold { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 500; color: var(--gold); transition: gap .2s; }
.link-gold:hover { gap: .625rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner--split, .hero__inner--split-home { grid-template-columns: 1fr; }
  .content-sidebar-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__thumb { min-height: 12rem; }
}
@media (max-width: 768px) {
  .section, .section-alt, .section-surface { padding: 3.5rem 0; }
  .cards-3, .testimonials-grid, .cases-grid, .blog-cards, .process-grid, .process-icon-grid, .payment-cards { grid-template-columns: 1fr; }
  .segments-grid, .states-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .hero__inner--split { gap: 2rem; }
  .hero__form-wrap { padding: 1.5rem; }
  .hero__checklist { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 4rem 0 0; background: var(--bg); padding: 2rem 1.5rem; z-index: 99; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__h1 { font-size: 2rem; }
  .hero__h1--seg { font-size: 1.75rem; }
  .segments-grid, .states-grid { grid-template-columns: 1fr 1fr; }
  .hero__metrics { gap: .75rem; }
}

.text-gradient-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ── HERO FORM — garantir visibilidade completa ── */
.hero__inner--split,
.hero__inner--split-home {
  position: relative;
  z-index: 2;
}
.hero__inner--split > div:last-child,
.hero__inner--split-home > div:last-child {
  display: flex;
  flex-direction: column;
}
/* Form card — garantir que aparece completo */
.hero__form-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
/* Garantir que o form dentro do card aparece */
.hero__form-wrap .artios-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
/* hero__inner--split alinhamento */
.hero__inner--split {
  grid-template-columns: 7fr 5fr;
  align-items: start;
  padding: 5rem 0 4rem;
  gap: 3rem;
}
/* Separação entre os grupos do hero__left */
.hero__inner--split-home .hero__left,
.hero__inner--split .hero__left {
  justify-content: space-between;
  min-height: 420px;
}
/* Garantir que select dropdown aparece corretamente */
.form-select option {
  background: hsl(221, 40%, 14%);
  color: hsl(40, 30%, 96%);
}
