/* ============================================================
   SILVIA MACHADO — THEME (mescla HandymanPro × Figueiredo Neto)
   Display: Lexend · Body: Inter
   Primária teal + acento verde-limão (HandymanPro)
   Disciplina mono/cinzas + dourado (Figueiredo Neto)
   ============================================================ */

/* ---- Fonte da marca: ITC Avant Garde Gothic ---- */
@font-face { font-family: 'Avant Garde'; src: url('../fonts/AvantGarde-Book.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avant Garde'; src: url('../fonts/AvantGarde-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avant Garde'; src: url('../fonts/AvantGarde-Demi.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avant Garde'; src: url('../fonts/AvantGarde-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  /* Brand — Silvia Machado (quente: amarelo -> laranja, coral). Nomes mantidos p/ recolorir tudo. */
  --teal-900: #b35e12;    /* laranja escuro / terracota */
  --teal-800: #cf6f14;
  --teal-700: #f79420;    /* LARANJA (primária da marca) */
  --teal-500: #f7a23a;
  --teal-300: #f6c98a;
  --teal-100: #fbe3c6;
  --teal-50:  #fdf3e8;    /* creme (fundo suave) */

  /* Accents */
  --lime: #fbaf3c;        /* AMBAR (acento principal) */
  --lime-700: #e8941f;
  --gold: #f2a02c;        /* ambar p/ estrelas */
  --coral: #f15f59;       /* ROSADO/CORAL (acento terciario) */
  --coral-700: #de4d47;

  /* Neutros (warm) */
  --ink:    #241f1b;      /* quase-preto quente (footer) */
  --gray-900: #1f1b18;
  --gray-800: #2b2622;
  --gray-700: #443f39;
  --gray-600: #5a534b;
  --gray-500: #7a736b;
  --gray-400: #a8a097;
  --gray-300: #d8d2c8;
  --gray-200: #ece7df;
  --gray-100: #f7f3ec;
  --white: #ffffff;

  /* Semântica */
  --text-primary:   #403a34;   /* cinza-quente escuro (marca: ~#4D4D4D) */
  --text-secondary: #7a736b;
  --text-tertiary:  var(--teal-700);
  --text-on-dark:   rgba(255,255,255,.82);
  --bg: #ffffff;
  --bg-soft: var(--teal-50);
  --cream:  #fffbf5;       /* off-white quente da capa (hero) */
  --bg-dark: #2a2420;     /* warm dark p/ secoes escuras/footer */
  --border: #ece7df;
  --border-strong: #d8d2c8;

  /* Tipografia */
  --font-display: 'Avant Garde', 'Lexend', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --radius-sm: .5rem;
  --radius: .9rem;
  --radius-lg: 1.4rem;
  --radius-xl: 2rem;
  --pill: 3.25rem;

  --shadow-sm: 0 1px 3px rgba(16,32,31,.06);
  --shadow: 0 10px 30px rgba(16,32,31,.08);
  --shadow-lg: 0 24px 60px rgba(16,32,31,.14);
  --shadow-teal: 0 14px 34px rgba(17,111,118,.28);

  --t: .4s cubic-bezier(.25,.46,.45,.94);  /* transição FN */
  --section-pad: clamp(4.5rem, 8vw, 7.5rem);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
/* mobile/tablet: remove os brilhos decorativos (::before) das páginas internas —
   evitam a "emenda" vertical/faixa mais clara à direita no mobile */
@media (max-width: 1024px) { .hero::before, .page-head::before { display: none; } }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
a, button { touch-action: manipulation; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--lime); color: var(--ink); }

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--teal-700); color: #fff; padding: .6rem 1rem;
  border-radius: var(--radius-sm); font-size: .85rem; transition: top var(--t);
}
.skip-link:focus { top: 1rem; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4.2vw, 3rem); }
.section { padding-block: var(--section-pad); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -.02em; color: var(--text-primary); }
.display { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 500; line-height: 1.06; letter-spacing: -.025em; }
h2, .h2 { font-size: clamp(2rem, 3.6vw, 3.4rem); }
h3, .h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
.accent-italic { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 500; color: var(--teal-700); }
.accent-lime { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 500; color: var(--coral); }
p { color: var(--text-secondary); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; color: var(--text-secondary); }
/* Palavras-chave em texto corrido: enfase discreta e consistente (peso 600, tom escuro) */
p strong, li strong { font-weight: 600; }
.lead strong, .spec-card strong, .svc-card strong, .blog-card strong,
.about-text strong, .story-grid strong, .prose strong { color: var(--text-primary); }
/* nunca escurecer a enfase sobre fundo escuro (CTA band, secoes dark, on-dark) */
.section--dark strong, .cta-band strong, [class*="on-dark"] strong { color: inherit; }
.text-sm { font-size: .9rem; }
.muted { color: var(--text-secondary); }
.on-dark, .section--dark p { color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

/* big stat number (HandymanPro .text-number) */
.stat-num { font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 3.4rem); font-style: italic; font-weight: 500; line-height: 1; letter-spacing: -.02em; color: var(--teal-700); }
.stat-num .suffix { color: var(--lime-700); font-style: normal; }
.stat-label { font-size: .9rem; color: var(--text-secondary); margin-top: .35rem; }

/* ---------- TAG / EYEBROW CHIP ---------- */
.tag {
  display: inline-flex; width: fit-content; align-items: center; gap: .55rem;
  background: rgba(45,128,134,.12);
  border: 1px solid rgba(45,128,134,.32);
  color: var(--teal-700);
  border-radius: var(--pill);
  padding: .35rem .9rem .35rem .4rem;
  font-size: .82rem; font-weight: 500; letter-spacing: .01em;
}
.tag .tag-ico {
  width: 1.75rem; height: 1.75rem; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: var(--lime);
  border-radius: 50%;
}
.tag .tag-ico svg { width: .9rem; height: .9rem; }
h1.tag, h3.tag { font-family: var(--font-body); }
.tag.on-dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  border-radius: var(--pill); min-height: 3.5rem; padding: .4rem 1.6rem .4rem .5rem;
  width: fit-content; max-width: 100%;
  color: var(--ink); background: linear-gradient(100deg, #fbaf3c, #f79420);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn .btn-ico {
  width: 2.6rem; height: 2.6rem; flex: none; display: grid; place-items: center;
  background: var(--ink); color: #fff; border-radius: 50%;
  transition: transform var(--t), background var(--t);
}
.btn .btn-ico svg { width: 1.1rem; height: 1.1rem; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(247,148,32,.4); }
.brand-logo { height: 3.35rem; width: auto; display: block; }
.footer-logo { height: 2.9rem; width: auto; display: block; margin-bottom: 1rem; }
@media (max-width: 480px) { .brand-logo { height: 2.6rem; } }
.btn:hover .btn-ico { transform: rotate(-45deg); }
.btn:focus-visible { outline: 2px solid var(--teal-700); outline-offset: 3px; }

.btn--teal { background: var(--teal-700); color: #fff; }
.btn--teal .btn-ico { background: #fff; color: var(--teal-700); }
.btn--teal:hover { background: var(--teal-800); box-shadow: var(--shadow-teal); }

.btn--ghost { background: transparent; border: 1px solid var(--border-strong); color: var(--text-primary); padding-left: 1.4rem; }
.btn--ghost .btn-ico { display: none; }
.btn--ghost:hover { border-color: var(--teal-700); color: var(--teal-700); box-shadow: none; transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--ink); }
.btn--white .btn-ico { background: var(--teal-700); color: #fff; }

.btn--on-dark.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--on-dark.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color:#fff; }

/* simple inline link with arrow */
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; color: var(--teal-700); font-weight: 600; font-size: .92rem; }
.link-arrow svg { width: 1rem; height: 1rem; transition: transform var(--t); }
.link-arrow:hover svg { transform: translateX(4px); }

.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }

/* ---------- SECTION HEADER ---------- */
.sec-head { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.sec-head.center { align-items: center; text-align: center; max-width: 46rem; margin-inline: auto; }
.sec-head .lead { max-width: 52ch; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------- HEADER / NAV ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); transition: box-shadow var(--t); }
/* linha divisória em degradê com os laranjas da marca, na base do menu */
.site-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--teal-900) 0%, var(--teal-700) 33%, var(--lime) 66%, var(--coral) 100%); }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(16,32,31,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 5rem; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand .b-name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; color: var(--ink); }
.brand .b-role { font-size: .66rem; text-transform: uppercase; letter-spacing: .16em; color: var(--teal-700); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-display); font-weight: 300; font-size: 1rem; color: var(--gray-700); position: relative; transition: color var(--t); }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 2px; background: var(--teal-700); transition: right var(--t); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.btn-sm { min-height: 3rem; font-size: .92rem; padding: .35rem 1.3rem .35rem .4rem; }
.btn-sm .btn-ico { width: 2.2rem; height: 2.2rem; }

.hamburger { display: none; width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--border); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 20px; height: 2px; background: var(--ink); transition: transform var(--t), opacity var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 5rem 0 0; background: #fff; z-index: 99; padding: 1.25rem clamp(1.1rem,4vw,2rem) 2rem; flex-direction: column; gap: .15rem; overflow-y: auto; overscroll-behavior: contain; }
.mobile-menu.open { display: flex; animation: mm-in .3s cubic-bezier(.25,.46,.45,.94) both; }
@keyframes mm-in { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-menu a.m-link { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--text-primary); padding: 1rem .25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; transition: color var(--t); }
.mobile-menu a.m-link::after { content: '→'; color: var(--teal-700); opacity: 0; transform: translateX(-6px); transition: opacity var(--t), transform var(--t); }
.mobile-menu a.m-link:hover, .mobile-menu a.m-link:active { color: var(--teal-700); }
.mobile-menu a.m-link:hover::after, .mobile-menu a.m-link:active::after { opacity: 1; transform: none; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 1.25rem; }

/* ---- MEGA MENU (Especialidades) — desktop ---- */
.nav-links .has-mega { position: relative; }
.mega-trigger { display: inline-flex; align-items: center; gap: .3rem; }
.mega-trigger .chev { width: .85rem; height: .85rem; transition: transform var(--t); }
.has-mega:hover .mega-trigger .chev, .has-mega:focus-within .mega-trigger .chev { transform: rotate(180deg); }
.mega { position: absolute; top: calc(100% + .6rem); left: 50%; transform: translateX(-50%) translateY(8px); width: 39rem; max-width: calc(100vw - 2rem); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1rem; opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 120; }
.mega::before { content: ''; position: absolute; top: -.6rem; left: 0; right: 0; height: .6rem; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
.mega-item { display: flex; align-items: center; gap: .8rem; padding: .7rem .8rem; border-radius: var(--radius); transition: background var(--t); }
.mega-item:hover { background: var(--teal-50); }
.mega-ico { width: 2.4rem; height: 2.4rem; flex: none; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; transition: background var(--t), color var(--t); }
.mega-item:hover .mega-ico { background: var(--teal-700); color: #fff; }
.mega-ico svg { width: 1.15rem; height: 1.15rem; }
.mega-tx { display: flex; flex-direction: column; line-height: 1.2; }
.mega-tx strong { font-family: var(--font-display); font-weight: 500; font-size: .98rem; color: var(--text-primary); }
.mega-tx small { font-size: .8rem; color: var(--text-secondary); }
.mega-all { display: inline-flex; align-items: center; gap: .4rem; margin: .55rem 0 .2rem .8rem; font-weight: 600; font-size: .9rem; color: var(--teal-700); }
.mega-all svg { width: 1rem; height: 1rem; transition: transform var(--t); }
.mega-all:hover svg { transform: translateX(4px); }

/* ---- MEGA MENU — mobile (submenu expansível) ---- */
.m-group { border-bottom: 1px solid var(--border); }
.m-toggle { width: 100%; background: none; border: none; font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--text-primary); padding: 1rem .25rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: color var(--t); }
.m-toggle .chev { width: 1.15rem; height: 1.15rem; color: var(--teal-700); transition: transform var(--t); }
.m-group.open .m-toggle { color: var(--teal-700); }
.m-group.open .m-toggle .chev { transform: rotate(180deg); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height var(--t); display: flex; flex-direction: column; }
.m-group.open .m-sub { max-height: 32rem; }
.m-sub a { font-size: 1.05rem; color: var(--text-secondary); padding: .65rem .25rem .65rem 1rem; border-bottom: 1px solid var(--border); transition: color var(--t); }
.m-sub a:hover { color: var(--teal-700); }
.m-sub a:last-child { border-bottom: none; color: var(--teal-700); font-weight: 600; }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: var(--section-pad); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 50vw; height: 130%; background: radial-gradient(circle at 60% 40%, var(--teal-50), transparent 70%); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.hero .display { max-width: 14ch; }
.hero .lead { max-width: 46ch; }

.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--teal-100), var(--teal-300)); display: flex; align-items: flex-end; justify-content: center; box-shadow: var(--shadow-lg); }
.hero-photo img, .about-photo img, .bento-img img, .article-cover img, .blog-thumb img, .bf-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-thumb, .bf-thumb, .article-cover { overflow: hidden; position: relative; }
.photo-ph { display: flex; flex-direction: column; align-items: center; gap: .6rem; color: var(--teal-700); opacity: .5; padding-bottom: 2.5rem; }
.photo-ph svg { width: 3.5rem; height: 3.5rem; }
.photo-ph span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

/* glass floating card (HandymanPro .card_component) */
.glass-card { position: absolute; left: -1.25rem; bottom: 1.5rem; background: rgba(255,255,255,.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius); padding: 1rem 1.15rem; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: .65rem; max-width: 16rem; }
.glass-card .gc-tag { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.6); border-radius: var(--pill); padding: .25rem .7rem .25rem .25rem; font-size: .76rem; font-weight: 600; align-self: flex-start; }
.glass-card .gc-tag i { width: 1.5rem; height: 1.5rem; display: grid; place-items: center; background: var(--lime); color: var(--ink); border-radius: 50%; }
.glass-card .gc-tag i svg { width: .85rem; height: .85rem; }
.glass-card .gc-title { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.glass-card .gc-sub { font-size: .82rem; color: var(--gray-600); }

/* ---- HERO collage + trust row (design-panel winner) ---- */
.hero-collage { position: relative; }
.hero-mini { position: absolute; top: -1.3rem; right: -1.3rem; width: 40%; max-width: 11rem; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow-lg); z-index: 2; }
.hero-mini img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 1.9rem; }
.hero-trust-row .hs { display: inline-flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 500; color: var(--text-primary); }
.hs-ico { width: 2.1rem; height: 2.1rem; flex: none; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; }
.hs-ico svg { width: 1.05rem; height: 1.05rem; }
@media (max-width: 1024px) { .hero-mini { top: -1rem; right: -.5rem; width: 36%; } }
@media (max-width: 640px) { .hero-mini { display: none; } }

/* ---- HERO CAPA (banner full-width da marca) ---- */
/* A arte (hero-capa.jpg) ja entrega a metade esquerda em creme. O texto fica
   compacto sobre essa faixa clara, sem invadir a foto/tracos laranja da direita. */
.hero--capa { position: relative; padding: 0; overflow: hidden; background: var(--cream); }
.hero--capa::before,
.hero--capa::after { display: none; }
/* imagem no tamanho natural: composicao inteira visivel (creme + arte) */
.hero-capa-img { display: block; width: 100%; height: auto; }
/* texto sobreposto, vertical-centralizado e contido na faixa creme da esquerda */
.hero--capa .container {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
}
.hero--capa .hero-content {
  gap: 1.05rem;
  max-width: clamp(19rem, 42vw, 30rem);
}
.hero--capa .hero-content .display {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  max-width: 15ch;
  text-wrap: balance;
}
.hero--capa .hero-content .lead {
  max-width: 27rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.6;
  color: var(--gray-600);      /* cinza com contraste AA (~7:1) sobre o creme */
}
.hero--capa .tag { color: var(--gray-700); }   /* contraste AA (sai de ~2:1 -> ~9:1) */
/* botoes lado a lado, compactos, dentro da faixa creme */
.hero--capa .btn-row { flex-wrap: nowrap; gap: .6rem; }
.hero--capa .btn { min-height: 3rem; font-size: .9rem; padding: .35rem 1.05rem .35rem .4rem; }
.hero--capa .btn .btn-ico { width: 2.1rem; height: 2.1rem; }
.hero--capa .btn .btn-ico svg { width: .95rem; height: .95rem; }
.hero--capa .btn--ghost { padding-left: 1.1rem; }

/* tablet / mobile: empilha — recorte da arte em cima, texto no creme embaixo */
@media (max-width: 1100px) {
  .hero--capa { display: flex; flex-direction: column; }
  .hero-capa-img {
    order: -1;
    height: clamp(15rem, 56vw, 22rem);
    object-fit: cover;
    object-position: 72% center;
  }
  .hero--capa .container { position: static; padding-block: 1.6rem 2.5rem; }
  .hero--capa .hero-content { max-width: none; gap: 1.1rem; }
  .hero--capa .hero-content .display { font-size: clamp(2.1rem, 6.5vw, 2.9rem); max-width: 18ch; }
  .hero--capa .hero-content .lead { font-size: 1.05rem; max-width: none; }
  .hero--capa .btn-row { flex-wrap: wrap; }
}

/* celular (≤640): imagem vertical dedicada (hero-mobile.png) em tela cheia,
   com o texto ancorado na faixa creme inferior */
@media (max-width: 640px) {
  .hero--capa { display: block; min-height: 100vh; min-height: 100svh; }
  .hero-capa-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
  }
  .hero--capa .container {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: flex-end;
    padding-block: 1.5rem clamp(3.5rem, 11vh, 6.5rem);
  }
  .hero--capa .hero-content { gap: .8rem; max-width: none; align-items: center; text-align: center; }
  .hero--capa .hero-content .display { font-size: clamp(1.9rem, 7.6vw, 2.5rem); line-height: 1.06; max-width: 17ch; }
  .hero--capa .hero-content .lead { font-size: 1rem; }
  .hero--capa .btn-row { width: 100%; }
}

/* ---------- TRUST STRIP ---------- */
.trust { background: var(--teal-900); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; padding-block: 1.1rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.86); font-size: .88rem; font-weight: 500; }
.trust-item svg { width: 1.1rem; height: 1.1rem; color: var(--lime); flex: none; }
.trust-sep { width: 1px; height: 1.25rem; background: rgba(255,255,255,.2); }

/* ---------- SERVICE / ESPECIALIDADE CARDS ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card { position: relative; display: flex; flex-direction: column; gap: 1.1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.svc-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico { width: 3.25rem; height: 3.25rem; display: grid; place-items: center; border-radius: var(--radius); background: var(--teal-50); color: var(--teal-700); }
.svc-ico svg { width: 1.5rem; height: 1.5rem; }
.svc-card h3 { font-size: 1.18rem; }
.svc-card p { font-size: .92rem; line-height: 1.6; flex: 1; }

/* ---- SPECIALTY CARDS WITH IMAGE (home) ---- */
.spec-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.spec-media { display: block; aspect-ratio: 16/11; overflow: hidden; background: linear-gradient(160deg, var(--teal-100), var(--teal-300)); }
.spec-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--t); }
.spec-card:hover .spec-media img { transform: scale(1.06); }
.spec-body { display: flex; flex-direction: column; gap: .6rem; padding: 0 1.5rem 1.6rem; flex: 1; }
.spec-ico { width: 3rem; height: 3rem; flex: none; border-radius: 50%; background: var(--teal-700); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); border: 4px solid #fff; margin-top: -1.6rem; margin-bottom: .4rem; position: relative; z-index: 1; }
.spec-ico svg { width: 1.3rem; height: 1.3rem; }
.spec-body h3 { font-size: 1.18rem; }
.spec-body p { font-size: .92rem; line-height: 1.6; flex: 1; }
.spec-body .link-arrow { margin-top: .2rem; }

/* ---------- ABOUT / STATS ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-visual { position: relative; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--teal-100), var(--teal-300)); display: flex; align-items: flex-end; justify-content: center; box-shadow: var(--shadow); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-block: 1.35rem; border-top: 1px solid var(--border); }
.stat { display: flex; flex-direction: column; gap: .15rem; padding: 1.2rem clamp(.75rem, 3vw, 1.25rem) 0 0; }
.stat + .stat { border-left: 1px solid var(--border); padding-left: clamp(.75rem, 3vw, 1.25rem); }

/* ---- ABOUT SPLIT + SCROLLING GALLERY (BYQ nimbus-hero-12) ---- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-highlight { display: flex; flex-direction: column; gap: .4rem; background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--lime); border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.2rem 0; box-shadow: var(--shadow-sm); }
.about-highlight strong { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--text-primary); letter-spacing: -.01em; }
.about-highlight span { font-size: .92rem; line-height: 1.55; color: var(--text-secondary); }
/* Sobre (home): galeria full-bleed vertical (topo->base), SEM fade */
.about-section { padding-block: 0; overflow: hidden; }
.about-section .about-split { align-items: stretch; min-height: 24rem; }
.about-text { padding-block: clamp(1.75rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-size: clamp(1.7rem, 2.5vw, 2.35rem); line-height: 1.1; margin: .3rem 0 0 !important; }
.about-text .lead { font-size: clamp(1rem, 1.2vw, 1.1rem); line-height: 1.55; }
.about-gallery { position: relative; align-self: stretch; overflow: hidden; }
.ag-col { position: absolute; top: 0; width: calc(50% - .5rem); display: flex; flex-direction: column; gap: 1rem; will-change: transform; }
.ag-col.down { animation: ag-down 32s linear infinite; left: 0; }
.ag-col.up { animation: ag-up 32s linear infinite; right: 0; }
.ag-col img { width: 100%; height: 13rem; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.about-gallery:hover .ag-col { animation-play-state: paused; }
@keyframes ag-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@keyframes ag-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@media (max-width: 1024px) { .about-split { grid-template-columns: 1fr; } .about-section { padding-block: var(--section-pad); } .about-section .about-split { min-height: 0; } .about-text { padding-block: 0; } .about-gallery { height: 22rem; align-self: auto; max-width: 36rem; } }
@media (max-width: 640px) { .about-gallery { height: 26rem; } .about-gallery .ag-col.up { display: none; } .about-gallery .ag-col.down { width: 100%; } .about-gallery img[src*="silvia-retrato"] { display: none; } .ag-col img { height: 18rem; } }
@media (prefers-reduced-motion: reduce) { .ag-col.down { transform: translateY(-50%); } .ag-col.up { transform: translateY(0); } }

/* ---------- MÉTODO STEPS ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; overflow: hidden; transition: transform var(--t), box-shadow var(--t); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .step-n { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 3.5rem; line-height: 1; color: var(--teal-100); position: absolute; top: 1rem; right: 1.4rem; }
.step .step-k { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-700); margin-bottom: .9rem; }
.step h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.step p { font-size: .92rem; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi { display: flex; flex-direction: column; gap: 1.1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm); }
.stars { display: flex; gap: .2rem; }
.stars svg { width: 1.05rem; height: 1.05rem; color: var(--gold); }
.testi blockquote { font-size: .98rem; line-height: 1.65; color: var(--text-primary); flex: 1; }
.testi-author { display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testi-author .av { width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.testi-author strong { display: block; font-size: .92rem; }
.testi-author span { font-size: .82rem; color: var(--text-secondary); }
.testi-author .pill-tag { margin-left: auto; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-700); background: var(--teal-50); padding: .2rem .6rem; border-radius: var(--pill); }

/* ---------- BLOG CARDS ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--t), box-shadow var(--t); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--teal-100), var(--teal-300)); display: grid; place-items: center; color: var(--teal-700); position: relative; }
.blog-thumb svg { width: 2.5rem; height: 2.5rem; opacity: .5; }
.blog-cat { position: absolute; top: 1rem; left: 1rem; background: var(--ink); color: #fff; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: .3rem .7rem; border-radius: var(--pill); }
.blog-body { display: flex; flex-direction: column; gap: .7rem; padding: 1.5rem; flex: 1; }
.blog-body h3 { font-size: 1.08rem; line-height: 1.3; }
.blog-body p { font-size: .9rem; flex: 1; }

/* ---------- FAQ ---------- */
.faq { max-width: 50rem; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1.4rem 0; font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--text-primary); transition: color var(--t); }
.faq-q:hover { color: var(--teal-700); }
.faq-ico { width: 2rem; height: 2rem; flex: none; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; transition: background var(--t), border-color var(--t), color var(--t); }
.faq-ico svg { width: .8rem; height: .8rem; transition: transform var(--t); }
.faq-item.open .faq-ico { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.faq-item.open .faq-ico svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-a-inner { padding-bottom: 1.4rem; }
.faq-a-inner p { font-size: .96rem; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 30rem; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .45rem; color: var(--text-primary); }
.field input, .field textarea, .field select { width: 100%; background: var(--teal-50); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .85rem 1rem; color: var(--text-primary); transition: border-color var(--t), box-shadow var(--t), background var(--t); }
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal-700); background: #fff; box-shadow: 0 0 0 3px rgba(17,111,118,.12); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.field .field-error { display: none; font-size: .8rem; color: #a94442; margin-top: .35rem; }
.field.has-error .field-error { display: block; }
.field.has-error input, .field.has-error textarea { border-color: #a94442; }
.form-note { font-size: .78rem; color: var(--text-secondary); text-align: center; margin-top: .9rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; }
.contact-item .ci { width: 3.25rem; height: 3.25rem; flex: none; border-radius: var(--radius); background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; }
.contact-item .ci svg { width: 1.4rem; height: 1.4rem; }
.contact-item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-secondary); font-weight: 600; }
.contact-item a, .contact-item span.v { font-size: 1.05rem; color: var(--text-primary); font-weight: 500; }
.contact-item a:hover { color: var(--teal-700); }

/* ---------- CTA BAND ---------- */
.cta-band { background: var(--bg-dark); border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(200,244,97,.14), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: var(--text-on-dark); max-width: 46ch; margin: 0 auto 2rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- FOOTER (estrutura inspirada no layout de referência) ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding-top: clamp(3rem, 6vw, 5rem); }

/* tile do topo: marca + chamada + isotipo decorativo */
.foot-tile { position: relative; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem 2rem; padding-bottom: clamp(2rem, 4vw, 3rem); }
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: .85rem; max-width: 34rem; }
.foot-brand h3.b-role { font-family: var(--font-body); }
.foot-brand .b-role { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--lime); font-weight: 500; }
.foot-brand h2 { color: #fff; font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.12; max-width: 20ch; margin: 0; }
.foot-mark { width: clamp(3rem, 7vw, 4.75rem); height: auto; opacity: .92; flex: none; align-self: flex-start; }

.foot-divider { height: 1px; background: rgba(255,255,255,.12); }

/* grelha: bloco de contato (WhatsApp) + colunas de links */
.foot-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.foot-label, .foot-col h4, .foot-col .ft-title { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 1rem; }
.foot-contact p { font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 34ch; margin-bottom: 1.2rem; }
.foot-wa { display: inline-flex; align-items: center; gap: .85rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--pill); padding: .5rem .55rem .5rem 1.2rem; color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 1rem; transition: border-color var(--t), background var(--t); }
.foot-wa:hover { border-color: var(--lime); background: rgba(255,255,255,.1); }
.foot-wa .wa-ico { width: 2.5rem; height: 2.5rem; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); }
.foot-wa .wa-ico svg { width: 1.25rem; height: 1.25rem; }
.foot-note { display: block; font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 1rem; max-width: 32ch; }

.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2rem; }
.foot-col a { display: block; font-size: .92rem; color: rgba(255,255,255,.62); margin-bottom: .65rem; transition: color var(--t); }
.foot-col a:hover { color: #fff; }

/* barra inferior: redes + copyright + legais */
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem 2rem; padding-block: 1.75rem 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.foot-bottom-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.foot-social { display: flex; gap: .6rem; }
.foot-social a { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.72); transition: color var(--t), border-color var(--t), background var(--t); }
.foot-social a:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.foot-social svg { width: 1.15rem; height: 1.15rem; }
.foot-bottom span, .foot-bottom-legal a { font-size: .82rem; color: rgba(255,255,255,.45); }
.foot-bottom-legal { display: flex; gap: 1.5rem; }
.foot-bottom-legal a { transition: color var(--t); }
.foot-bottom-legal a:hover { color: #fff; }

@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 560px) {
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .foot-bottom-left { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float { position: fixed; right: 1.5rem; bottom: 1.5rem; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37,211,102,.45); z-index: 90; transition: transform var(--t); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 1.7rem; height: 1.7rem; color: #fff; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--t), transform .7s var(--t); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 30rem; }
  .about-grid { grid-template-columns: 1fr; }
  .svc-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-right .btn:not(.hamburger) { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .svc-grid, .testi-grid, .blog-grid, .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .trust-sep { display: none; }
  .glass-card { left: 0; right: 0; bottom: 0; max-width: none; }
  .btn-row { justify-content: center; }
  .btn-sm { width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   INTERNAL PAGES + BYQ-INSPIRED SECTIONS
   ============================================================ */

/* ---- PAGE HEAD (internal hero) + BREADCRUMB ---- */
.page-head { position: relative; background: var(--bg-soft); border-bottom: 1px solid var(--border); padding-block: clamp(2.5rem, 5vw, 4.5rem); overflow: hidden; }
.page-head::before { content: ''; position: absolute; top: -40%; right: -8%; width: 38vw; height: 180%; background: radial-gradient(circle at 60% 40%, rgba(17,111,118,.1), transparent 70%); }
.page-head .container { position: relative; }
.page-head .display { max-width: 18ch; margin-block: .6rem .9rem; font-size: clamp(2.3rem, 4.5vw, 3.6rem); }
.page-head .lead { max-width: 56ch; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: var(--text-secondary); margin-bottom: .25rem; }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb [aria-current="page"] { color: var(--teal-700); font-weight: 500; }

/* ---- STORY SPLIT (about) ---- */
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-grid .prose-block > * + * { margin-top: 1.1rem; }
.story-grid .prose-block p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.7; }
.story-grid .prose-block p.lead { color: var(--text-primary); }

/* ---- BENTO (terra-tory-bento-1, adaptado) ---- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(13rem, auto); gap: 1rem; }
.bento-card { border-radius: var(--radius-lg); padding: clamp(1.4rem, 2.4vw, 2rem); display: flex; flex-direction: column; justify-content: space-between; gap: 1.25rem; position: relative; overflow: hidden; }
.bento-stat { background: var(--teal-50); border: 1px solid var(--border); }
.bento-card .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; color: var(--teal-700); }
.bento-card .n { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(2.4rem, 3.6vw, 3.2rem); line-height: .95; letter-spacing: -.02em; color: var(--text-primary); }
.bento-card p { font-size: .92rem; color: var(--text-secondary); }
.bento-img { border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--teal-100), var(--teal-300)); display: grid; place-items: center; color: var(--teal-700); overflow: hidden; }
.bento-img .photo-ph { padding: 0; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-accent { background: var(--lime); }
.bento-accent .k { color: rgba(22,32,31,.55); }
.bento-accent .n, .bento-accent p { color: var(--ink); }
.bento-accent::after { content: ''; position: absolute; width: 22rem; height: 22rem; border: 1px dashed rgba(22,32,31,.4); border-radius: 100vw; bottom: -11rem; right: -8rem; }
.bento-dark { background: var(--bg-dark); }
.bento-dark .k { color: var(--lime); } .bento-dark .n { color: #fff; } .bento-dark p { color: var(--text-on-dark); }

/* ---- FEATURE SPLIT (heading + 2x2 icon cards) ---- */
.feat-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.feat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.feat-card .fi { width: 2.9rem; height: 2.9rem; border-radius: var(--radius); background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; }
.feat-card .fi svg { width: 1.35rem; height: 1.35rem; }
.feat-card h3 { font-size: 1.08rem; }
.feat-card p { font-size: .9rem; line-height: 1.6; }

/* ---- PROCESS TIMELINE (horizontal) ---- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process::before { content: ''; position: absolute; top: 1.85rem; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--teal-300) 0 8px, transparent 8px 16px); z-index: 0; }
.proc-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .8rem; }
.proc-step .pn { width: 3.7rem; height: 3.7rem; flex: none; border-radius: 50%; background: var(--teal-700); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; box-shadow: 0 0 0 7px var(--bg-soft); }
.proc-step h3 { font-size: 1.05rem; }
.proc-step p { font-size: .9rem; }
.process.on-white .proc-step .pn { box-shadow: 0 0 0 7px #fff; }

/* ---- DUO INFO CARDS ---- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ---- METHOD TIMELINE + IMAGE (BYQ halden-miller-value-features-5) ---- */
.method-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.method-figure { position: sticky; top: 6.5rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/5; background: linear-gradient(160deg, var(--teal-100), var(--teal-300)); box-shadow: var(--shadow); }
.method-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.timeline { border-top: 1px solid var(--border); }
.tl-item { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.5rem; padding: 1.7rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.tl-head { display: flex; flex-direction: column; gap: .45rem; }
.tl-num { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 2.1rem; line-height: 1; letter-spacing: -.02em; color: var(--teal-700); }
.tl-k { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-secondary); font-weight: 600; }
.tl-head h3 { font-size: 1.12rem; }
.tl-body { font-size: .95rem; line-height: 1.65; color: var(--text-secondary); }
/* timeline standalone (sem imagem) — método das especialidades */
.timeline.solo { max-width: 56rem; }

/* ---- SCENARIO (problema) 2-col + pontos de dor (BYQ) ---- */
.scenario-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.scenario-grid .prose { max-width: none; }
.painpoints { position: sticky; top: 6.5rem; background: var(--teal-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem); }
.painpoints h3 { font-size: 1.1rem; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .55rem; }
.painpoints h3 svg { width: 1.2rem; height: 1.2rem; color: var(--gold); }
.painpoints ul { display: flex; flex-direction: column; gap: .85rem; }
.painpoints li { display: flex; gap: .7rem; align-items: flex-start; font-size: .94rem; color: var(--text-secondary); line-height: 1.55; }
.painpoints li > svg { width: 1.15rem; height: 1.15rem; flex: none; color: var(--gray-400); margin-top: .12rem; }
.pp-out { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--border); display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; color: var(--text-primary); font-size: .98rem; line-height: 1.5; }
.pp-out > svg { width: 1.25rem; height: 1.25rem; flex: none; color: var(--teal-700); margin-top: .1rem; }

/* ---- FAQ 2-column, cards (BYQ faq-1) ---- */
.faq-split { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.faq-aside { position: sticky; top: 6.5rem; }
.faq-aside .btn { margin-top: 1.4rem; }
.faq.cards { max-width: none; margin: 0; }
.faq.cards .faq-item { background: var(--teal-50); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .85rem; padding: 0 1.4rem; transition: background var(--t), box-shadow var(--t); }
.faq.cards .faq-item:last-child { margin-bottom: 0; }
.faq.cards .faq-q { border-bottom: none; }
.faq.cards .faq-item.open { background: #fff; box-shadow: var(--shadow-sm); }
@media (max-width: 900px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .painpoints { position: static; }
  .faq-split { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
}
@media (max-width: 991px) { .method-split { grid-template-columns: 1fr; } .method-figure { position: static; aspect-ratio: 16/10; } }
/* mobile: retrato mais alto na seção Método (evita a foto "achatada") */
@media (max-width: 640px) { .method-figure { aspect-ratio: 4/5; } }
@media (max-width: 560px) { .tl-item { grid-template-columns: 1fr; gap: .4rem; } }

@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tall { grid-row: span 2; }
  .feat-split { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .process::before { display: none; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-tall, .bento-wide { grid-column: auto; grid-row: auto; }
  .feat-cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
}

/* ============================================================
   ARTICLES · PROSE · CONTACT EXTRAS · LEGAL · BLOG LISTING
   ============================================================ */

/* ---- PROSE (article + legal body) ---- */
.prose { max-width: 44rem; }
.prose > * + * { margin-top: 1.2rem; }
.prose p { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); }
.prose .lead-p { font-size: 1.2rem; line-height: 1.7; color: var(--text-primary); }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--text-primary); margin-top: 2.6rem !important; }
.prose h3 { font-size: 1.25rem; color: var(--text-primary); margin-top: 1.9rem !important; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose ul { list-style: disc; } .prose ol { list-style: decimal; }
.prose li { font-size: 1.04rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: .5rem; }
.prose li::marker { color: var(--teal-700); }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--teal-500); }
.prose blockquote { border-left: 3px solid var(--lime); padding: .3rem 0 .3rem 1.4rem; margin: 1.8rem 0 !important; font-family: var(--font-display); font-size: 1.3rem; font-style: italic; line-height: 1.5; color: var(--text-primary); }
.prose-callout { background: var(--teal-50); border: 1px solid var(--border); border-left: 3px solid var(--teal-700); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.8rem 0 !important; }
.prose-callout h4, .prose-callout h3 { color: var(--teal-700); margin-bottom: .4rem; font-size: .95rem; }
.prose-callout p { font-size: .98rem; margin: 0; }

/* ---- ARTICLE LAYOUT ---- */
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 18rem; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.1rem; font-size: .85rem; color: var(--text-secondary); margin-bottom: 1.5rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--border); }
.article-meta .cat { background: var(--ink); color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--pill); }
.article-meta .meta-item { display: inline-flex; align-items: center; gap: .4rem; }
.article-cover { aspect-ratio: 16/8; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--teal-100), var(--teal-300)); display: grid; place-items: center; color: var(--teal-700); margin-bottom: 2.4rem; overflow: hidden; }
.article-cover .photo-ph { padding: 0; }
.article-aside { position: sticky; top: 6.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.aside-card { background: var(--teal-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.aside-card.green { background: var(--bg-dark); border-color: var(--bg-dark); }
.aside-card.green h4 { color: #fff; } .aside-card.green p { color: var(--text-on-dark); }
.aside-card h4 { color: var(--text-primary); margin-bottom: .5rem; }
.aside-card p { font-size: .9rem; margin-bottom: 1rem; }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-toc ul { display: flex; flex-direction: column; gap: .5rem; }
.aside-toc a { font-size: .88rem; color: var(--text-secondary); display: block; padding-left: .75rem; border-left: 2px solid var(--border); transition: color var(--t), border-color var(--t); }
.aside-toc a:hover { color: var(--teal-700); border-color: var(--teal-700); }
.article-foot { margin-top: 2.5rem; padding-top: 1.8rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.article-author { display: flex; align-items: center; gap: .9rem; }
.article-author .av { width: 3rem; height: 3rem; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.article-author strong { display: block; font-size: .92rem; } .article-author span { font-size: .82rem; color: var(--text-secondary); }
.share { display: flex; gap: .55rem; }
.share a, .share button { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid var(--border-strong); color: var(--text-secondary); display: grid; place-items: center; transition: background var(--t), border-color var(--t), color var(--t); }
.share a:hover, .share button:hover { border-color: var(--teal-700); color: var(--teal-700); transform: translateY(-2px); }
.share a.copied, .share button.copied { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }

/* ---- CONTACT EXTRAS (map + hours) ---- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 1.25rem; }
.map-embed iframe { display: block; width: 100%; height: 19rem; border: 0; filter: grayscale(.15); }
.hours-card { background: var(--teal-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-top: 1.25rem; }
.hours-card h4 { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.hours-card h4 svg { width: 1.1rem; height: 1.1rem; color: var(--teal-700); }
.hours-row { display: flex; justify-content: space-between; font-size: .92rem; padding: .45rem 0; border-bottom: 1px dashed var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-secondary); } .hours-row span:last-child { color: var(--text-primary); font-weight: 500; }

/* ---- LEGAL ---- */
.legal { max-width: 48rem; margin-inline: auto; }
.legal .updated { font-size: .85rem; color: var(--text-secondary); margin-bottom: 2rem; }

/* ---- BLOG LISTING EXTRAS ---- */
.blog-featured[hidden], .blog-card[hidden] { display: none !important; }
.blog-filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.blog-filter { font-size: .85rem; font-weight: 500; color: var(--text-secondary); padding: .55rem 1.2rem; border-radius: var(--pill); border: 1px solid var(--border-strong); background: #fff; transition: background var(--t), border-color var(--t), color var(--t); }
.blog-filter:hover { border-color: var(--teal-700); color: var(--teal-700); }
.blog-filter.active { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.blog-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 3rem; }
.blog-featured .bf-thumb { position: relative; width: 100%; background: linear-gradient(135deg, var(--teal-100), var(--teal-300)); display: grid; place-items: center; color: var(--teal-700); height: 100%; min-height: 18rem; }
.blog-featured .bf-body { padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) 0; }
.blog-featured .bf-body h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin: 1rem 0; }

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .article-aside .aside-card { flex: 1; min-width: 16rem; }
  .aside-toc { display: none; }
}
@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .bf-body { padding: 0 1.5rem 1.75rem; }
  .blog-featured .bf-thumb { min-height: 14rem; }
  .article-aside { flex-direction: column; }
}

/* ===== Ajustes Web Interface Guidelines (2026-07-08) ===== */
html { scroll-padding-top: 6rem; color-scheme: light; }
a, button { -webkit-tap-highlight-color: transparent; }
.display, h2, .h2 { text-wrap: balance; }
.tl-num, .stat-num, .bento-card .n { font-variant-numeric: tabular-nums; }
/* foco de teclado visível em elementos interativos customizados */
a:focus-visible, .mega-item:focus-visible, .hamburger:focus-visible, .blog-filter:focus-visible { outline: 2px solid var(--teal-700); outline-offset: 2px; }
.m-toggle:focus-visible, .faq-q:focus-visible { outline: 2px solid var(--teal-700); outline-offset: -2px; }
/* safe-areas iOS (home indicator) */
.wa-float { bottom: calc(1.5rem + env(safe-area-inset-bottom)); right: calc(1.5rem + env(safe-area-inset-right)); }
.mobile-menu { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
