:root {
  --green: #29503c;
  --green-900: #10281e;
  --green-850: #173629;
  --green-800: #1d4030;
  --green-soft: #d7e7b5;
  --green-mist: #eef4e6;
  --blue: #005b7f;
  --blue-soft: #81a9d6;
  --orange: #cb5631;
  --yellow: #d2b43b;
  --cyan: #0bb7bb;
  --ink: #172620;
  --body: #55625d;
  --muted: #75807c;
  --line: #dde4e0;
  --line-dark: rgba(255,255,255,.13);
  --paper: #f5f6f2;
  --paper-2: #eef1ec;
  --white: #fff;
  --shadow-sm: 0 12px 35px rgba(16, 40, 30, .08);
  --shadow-md: 0 24px 70px rgba(16, 40, 30, .14);
  --shadow-lg: 0 35px 95px rgba(9, 31, 22, .22);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.wa-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--green-soft); color: var(--green-900); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 9999;
  padding: 11px 15px;
  background: var(--green-900);
  color: var(--white);
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.topbar { background: var(--green-900); color: rgba(255,255,255,.76); font-size: .78rem; }
.topbar-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar p i { color: var(--green-soft); }
.topbar-links { display: flex; align-items: center; gap: 24px; }
.topbar-links span, .topbar-links a { display: flex; align-items: center; gap: 7px; }
.topbar-links a { color: var(--white); font-weight: 700; }
.topbar-links a:hover { color: var(--green-soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(41,80,60,.08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 38px rgba(16,40,30,.08); background: rgba(255,255,255,.985); }
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { flex: 0 0 auto; }
.brand img { width: 198px; height: 72px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 27px; color: #40544c; font-size: .91rem; font-weight: 700; }
.main-nav > a { position: relative; transition: color .2s ease; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--blue); transition: right .22s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--blue); }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; gap: 11px; border-radius: 999px; background: var(--green); color: var(--white) !important; box-shadow: 0 9px 24px rgba(41,80,60,.16); }
.nav-cta i { font-size: .78rem; transition: transform .2s ease; }
.nav-cta:hover i { transform: translateX(3px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--paper); border-radius: 13px; }
.menu-toggle span { width: 20px; height: 2px; display: block; margin: 4px auto; border-radius: 10px; background: var(--green); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #f9faf6 0%, #f0f4ee 55%, #edf3f4 100%); }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle, rgba(215,231,181,.62), rgba(215,231,181,0) 68%); left: -260px; top: -310px; pointer-events: none; }
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(0,91,127,.10); border-radius: 50%; right: -170px; bottom: -170px; pointer-events: none; }
.hero-accent { position: absolute; left: 0; bottom: 0; display: grid; grid-template-columns: 92px 92px 92px 92px; height: 5px; z-index: 2; }
.hero-accent span:nth-child(1) { background: var(--orange); }
.hero-accent span:nth-child(2) { background: var(--yellow); }
.hero-accent span:nth-child(3) { background: var(--blue); }
.hero-accent span:nth-child(4) { background: var(--cyan); }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 74px; padding-block: 70px 78px; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 16px; display: flex; align-items: center; gap: 10px; color: var(--blue); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--green-soft); }
.hero h1, .section-heading h2, .about-copy h2, .strategy-copy h2, .faq-intro h2, .contact-copy h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.3rem, 5.5vw, 5.8rem); color: var(--green-900); }
.hero-text { max-width: 680px; margin: 27px 0 0; color: var(--body); font-size: 1.09rem; line-height: 1.75; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.btn { min-height: 53px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: .9rem; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 14px 34px rgba(203,86,49,.20); }
.btn-primary:hover { background: #b94a29; box-shadow: 0 17px 40px rgba(203,86,49,.25); }
.btn-ghost { color: var(--green); background: rgba(255,255,255,.62); border-color: rgba(41,80,60,.17); }
.btn-ghost:hover { background: var(--white); border-color: rgba(41,80,60,.28); }
.btn-outline { color: var(--green); border-color: rgba(41,80,60,.25); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--white); }
.hero-proof { margin-top: 42px; padding-top: 27px; border-top: 1px solid rgba(41,80,60,.13); display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-item strong, .proof-item span { display: block; }
.proof-item strong { font-size: 1.02rem; color: var(--green); font-weight: 800; }
.proof-item span { margin-top: 2px; font-size: .79rem; color: var(--muted); }

.hero-media { min-height: 544px; position: relative; }
.hero-photo { position: absolute; inset: 0 42px 26px 0; margin: 0; overflow: hidden; border-radius: 12px 90px 12px 12px; box-shadow: var(--shadow-lg); background: var(--green-900); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,38,28,.03), rgba(12,38,28,.28)); }
.hero-photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: linear-gradient(90deg, var(--orange) 0 25%, var(--yellow) 25% 50%, var(--blue) 50% 75%, var(--cyan) 75%); }
.hero-badge { position: absolute; right: 0; top: 48px; width: 260px; padding: 17px; display: flex; gap: 13px; align-items: center; border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.9); }
.hero-badge-icon { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--green-mist); color: var(--green); font-size: 1.15rem; }
.hero-badge span, .hero-badge strong { display: block; }
.hero-badge span { color: var(--blue); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-badge strong { margin-top: 2px; font-size: .85rem; line-height: 1.3; color: var(--green-900); }
.hero-quote-card { position: absolute; left: -30px; bottom: 0; max-width: 295px; padding: 24px 25px; border-radius: 20px; background: var(--green-900); color: var(--white); box-shadow: var(--shadow-md); }
.hero-quote-card i { color: var(--green-soft); font-size: 1.1rem; }
.hero-quote-card p { margin: 11px 0 0; font-family: var(--serif); font-size: 1.23rem; line-height: 1.25; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 120px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.trust-grid > div { padding: 28px 28px 28px 0; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.trust-grid > div:not(:first-child) { padding-left: 28px; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid i { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 12px; background: var(--paper); color: var(--blue); }
.trust-grid span { display: grid; }
.trust-grid strong { color: var(--green-900); font-size: .9rem; }
.trust-grid small { color: var(--muted); font-size: .73rem; line-height: 1.35; margin-top: 2px; }

.section { padding: 112px 0; }
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 88px; align-items: center; }
.about-media { min-height: 565px; position: relative; }
.image-frame { overflow: hidden; background: var(--paper); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.image-frame:hover img { transform: scale(1.025); }
.image-frame-main { position: absolute; inset: 0 80px 60px 0; border-radius: 12px 72px 12px 12px; }
.image-frame-secondary { position: absolute; width: 250px; height: 185px; right: 0; bottom: 0; border-radius: 18px; border: 7px solid var(--white); box-shadow: var(--shadow-md); }
.experience-card { position: absolute; left: 25px; bottom: 25px; width: 210px; padding: 22px; color: var(--white); background: var(--blue); border-radius: 18px; box-shadow: var(--shadow-md); }
.experience-number { display: block; font-family: var(--serif); font-size: 3.4rem; line-height: .9; }
.experience-card p { margin: 10px 0 0; font-size: .76rem; line-height: 1.45; color: rgba(255,255,255,.85); }
.about-copy h2 { margin: 0; font-size: clamp(2.7rem, 4.3vw, 4.6rem); }
.about-copy .lead { margin: 27px 0 15px; color: var(--green); font-size: 1.11rem; font-weight: 700; }
.about-copy > p:not(.eyebrow):not(.lead) { margin: 0; color: var(--body); }
.about-points { margin: 27px 0; display: grid; gap: 11px; }
.about-points > div { display: flex; align-items: center; gap: 12px; color: #42564e; font-size: .91rem; font-weight: 600; }
.about-points i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--green-mist); color: var(--green); font-size: .65rem; }
.arrow-link { display: inline-flex; align-items: center; gap: 11px; color: var(--blue); font-weight: 800; font-size: .9rem; }
.arrow-link i { transition: transform .2s ease; }
.arrow-link:hover i { transform: translateX(5px); }

.services-section { background: var(--paper); }
.section-heading h2 { margin: 0; font-size: clamp(2.6rem, 4.3vw, 4.5rem); }
.heading-row { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.heading-row > p { margin: 0 0 6px; color: var(--body); font-size: 1rem; }
.services-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 315px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: var(--white); position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--blue)); transition: width .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0,91,127,.15); }
.service-card:hover::after { width: 100%; }
.service-top { display: flex; align-items: center; justify-content: space-between; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: var(--green); background: var(--green-mist); font-size: 1.05rem; }
.service-index { color: #a0aaa6; font-size: .73rem; font-weight: 800; letter-spacing: .08em; }
.service-card h3 { margin: 35px 0 12px; color: var(--green-900); font-family: var(--serif); font-size: 1.62rem; font-weight: 400; line-height: 1.15; }
.service-card p { margin: 0; color: var(--body); font-size: .9rem; }
.service-card a { margin-top: auto; padding-top: 22px; display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: .81rem; font-weight: 800; }
.service-card a i { font-size: .7rem; transition: transform .2s ease; }
.service-card a:hover i { transform: translateX(4px); }

.strategy-section { position: relative; overflow: hidden; background: var(--green-900); color: var(--white); }
.strategy-section::before { content: ""; position: absolute; width: 540px; height: 540px; right: -250px; top: -250px; border: 70px solid rgba(215,231,181,.045); border-radius: 50%; }
.strategy-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 86px; align-items: center; position: relative; z-index: 1; }
.strategy-copy h2 { margin: 0; font-size: clamp(2.7rem, 4.4vw, 4.7rem); color: var(--white); }
.strategy-copy > p:not(.eyebrow) { max-width: 610px; margin: 24px 0 0; color: rgba(255,255,255,.68); }
.strategy-list { margin-top: 38px; border-top: 1px solid var(--line-dark); }
.strategy-list > div { padding: 19px 0; display: grid; grid-template-columns: 48px 1fr; gap: 17px; border-bottom: 1px solid var(--line-dark); }
.strategy-number { color: var(--green-soft); font-size: .72rem; font-weight: 800; letter-spacing: .08em; padding-top: 5px; }
.strategy-list h3 { margin: 0; font-size: 1rem; color: var(--white); }
.strategy-list p { margin: 3px 0 0; color: rgba(255,255,255,.60); font-size: .86rem; }
.strategy-media { min-height: 560px; position: relative; }
.strategy-media > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; border-radius: 12px 72px 12px 12px; filter: saturate(.82) contrast(1.03); }
.strategy-media::after { content: ""; position: absolute; inset: 0; border-radius: 12px 72px 12px 12px; background: linear-gradient(180deg, rgba(16,40,30,.03), rgba(16,40,30,.25)); pointer-events: none; }
.strategy-stamp { position: absolute; z-index: 2; left: -32px; bottom: 28px; padding: 19px 22px; display: flex; align-items: center; gap: 14px; border-radius: 16px; background: var(--white); color: var(--green-900); box-shadow: var(--shadow-lg); font-weight: 700; font-size: .86rem; line-height: 1.3; }
.strategy-stamp i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: #edf5f8; }

.process-section { background: var(--white); }
.section-heading.centered { max-width: 850px; margin: 0 auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child { max-width: 680px; margin: 20px auto 0; color: var(--body); }
.process-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.process-grid::before { content: ""; position: absolute; left: 12%; right: 12%; top: 54px; height: 1px; background: var(--line); z-index: 0; }
.process-card { min-height: 285px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; position: relative; z-index: 1; }
.process-card > span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.process-card > i { margin: 24px 0 42px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: var(--green-mist); border: 8px solid var(--white); box-shadow: 0 0 0 1px var(--line); font-size: 1rem; }
.process-card h3 { margin: 0; color: var(--green-900); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.process-card p { margin: 9px 0 0; color: var(--body); font-size: .86rem; }

.insights-section { background: var(--paper); }
.articles-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { overflow: hidden; border-radius: 20px; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-image { height: 230px; display: block; position: relative; overflow: hidden; background: #dfe6e2; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-image img { transform: scale(1.035); }
.article-arrow { position: absolute; right: 16px; top: 16px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--green); box-shadow: var(--shadow-sm); }
.article-body { padding: 25px 26px 28px; }
.article-meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--muted); font-size: .7rem; }
.article-meta span { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.article-body h3 { margin: 17px 0 11px; font-family: var(--serif); color: var(--green-900); font-size: 1.55rem; font-weight: 400; line-height: 1.18; }
.article-body p { margin: 0; color: var(--body); font-size: .87rem; }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 92px; align-items: start; }
.faq-intro { position: sticky; top: 142px; }
.faq-intro h2 { margin: 0; font-size: clamp(2.6rem, 4vw, 4.2rem); }
.faq-intro > p:not(.eyebrow) { margin: 20px 0 27px; color: var(--body); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 80px; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; color: var(--green-900); font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--green); transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--green-mist); }
.faq-list details p { max-width: 760px; margin: -5px 54px 26px 0; color: var(--body); font-size: .92rem; }

.contact-section { padding: 112px 0; background: linear-gradient(120deg, #18392b 0%, #10281e 62%, #0f301f 100%); color: var(--white); position: relative; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(0,91,127,.25), transparent 68%); right: 8%; top: -240px; }
.contact-shell { display: grid; grid-template-columns: .88fr 1.12fr; gap: 78px; align-items: start; position: relative; z-index: 1; }
.contact-copy h2 { margin: 0; font-size: clamp(2.8rem, 4.4vw, 4.7rem); }
.contact-copy > p:not(.eyebrow) { max-width: 570px; margin: 25px 0 0; color: rgba(255,255,255,.66); }
.contact-features { margin-top: 35px; display: grid; gap: 15px; }
.contact-features > div { display: flex; align-items: center; gap: 14px; }
.contact-features > div > i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.08); color: var(--green-soft); }
.contact-features span { display: grid; }
.contact-features strong { font-size: .9rem; color: var(--white); }
.contact-features small { color: rgba(255,255,255,.5); font-size: .75rem; }
.contact-form { padding: 32px; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(255,255,255,.97); color: var(--ink); box-shadow: var(--shadow-lg); }
.form-header { margin-bottom: 24px; display: flex; align-items: center; gap: 13px; }
.form-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--green-mist); color: var(--green); }
.form-header div { display: grid; }
.form-header strong { color: var(--green-900); font-size: 1rem; }
.form-header small { color: var(--muted); font-size: .75rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 13px; color: #40534b; font-size: .78rem; font-weight: 800; }
.input-wrap { min-height: 50px; padding: 0 14px; display: flex; align-items: center; gap: 10px; border: 1px solid #d9e2dd; border-radius: 13px; background: var(--white); transition: border-color .2s ease, box-shadow .2s ease; }
.input-wrap:focus-within, .textarea-wrap:focus-within { border-color: rgba(0,91,127,.58); box-shadow: 0 0 0 4px rgba(0,91,127,.07); }
.input-wrap > i { width: 15px; color: #92a19b; font-size: .8rem; }
.input-wrap input, .input-wrap select { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); padding: 13px 0; font-size: .88rem; }
.input-wrap select { appearance: none; }
.textarea-wrap { display: block; border: 1px solid #d9e2dd; border-radius: 13px; background: var(--white); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.textarea-wrap textarea { width: 100%; min-height: 120px; padding: 13px 14px; resize: vertical; border: 0; outline: 0; color: var(--ink); font-size: .88rem; }
.contact-form input::placeholder, .contact-form textarea::placeholder, .wa-lead-form input::placeholder { color: #a7b0ac; }
.consent { grid-template-columns: auto 1fr !important; align-items: start; gap: 9px !important; color: var(--muted) !important; font-size: .72rem !important; font-weight: 500 !important; line-height: 1.45; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--green); }
.btn-full { width: 100%; border: 0; }
.form-status { min-height: 20px; margin: 9px 0 0; font-size: .76rem; font-weight: 700; }

.site-footer { padding: 72px 0 24px; background: #0b1e16; color: rgba(255,255,255,.63); }
.footer-main { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: 235px; max-height: 115px; object-fit: contain; object-position: left center; filter: brightness(1.22); }
.footer-brand p { max-width: 340px; margin: 18px 0 0; font-size: .83rem; }
.social-links { display: flex; gap: 8px; margin-top: 20px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: var(--white); transition: background .2s ease, border-color .2s ease; }
.social-links a:hover { background: var(--green); border-color: var(--green); }
.footer-col h3 { margin: 0 0 18px; color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-col a, .footer-col p { display: block; margin: 0 0 10px; font-size: .81rem; }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--green-soft); }
.footer-col p i, .footer-col a i { width: 18px; color: var(--green-soft); }
.footer-bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; font-size: .68rem; color: rgba(255,255,255,.42); }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }
.footer-bottom div { display: flex; gap: 10px; }
.footer-bottom a:hover { color: var(--white); }

/* WhatsApp lead capture */
.wa-widget { position: fixed; right: 24px; bottom: 22px; z-index: 2200; display: grid; justify-items: end; }
.wa-launcher { position: relative; min-width: 250px; height: 64px; padding: 0 15px 0 9px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; display: grid; grid-template-columns: 47px 1fr auto; align-items: center; gap: 10px; background: #1d9f58; color: var(--white); box-shadow: 0 20px 48px rgba(14,92,48,.3); }
.wa-launcher-icon { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-size: 1.65rem; }
.wa-launcher-text { display: grid; text-align: left; line-height: 1.15; }
.wa-launcher-text small { color: rgba(255,255,255,.72); font-size: .65rem; }
.wa-launcher-text strong { margin-top: 3px; font-size: .8rem; }
.wa-chevron { font-size: .7rem; transition: transform .25s ease; }
.wa-launcher[aria-expanded="true"] .wa-chevron { transform: rotate(180deg); }
.wa-pulse { position: absolute; left: 18px; top: 18px; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.55); animation: waPulse 2.1s infinite; pointer-events: none; }
@keyframes waPulse { 0% { transform: scale(.85); opacity: .8; } 70%,100% { transform: scale(2.1); opacity: 0; } }
.wa-panel { width: min(390px, calc(100vw - 32px)); margin-bottom: 12px; border-radius: 24px; overflow: hidden; background: var(--white); box-shadow: 0 32px 90px rgba(10,38,26,.29); opacity: 0; visibility: hidden; transform: translateY(24px) scale(.96); transform-origin: bottom right; transition: opacity .25s ease, transform .28s cubic-bezier(.2,.8,.2,1), visibility .25s ease; }
.wa-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-panel-head { padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: #0e6c3d; color: var(--white); }
.wa-agent { display: flex; align-items: center; gap: 11px; }
.wa-agent-icon { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.15); font-size: 1.3rem; }
.wa-agent div { display: grid; line-height: 1.2; }
.wa-agent strong { font-size: .86rem; }
.wa-agent small { margin-top: 3px; color: rgba(255,255,255,.7); font-size: .66rem; }
.wa-close { width: 36px; height: 36px; border: 0; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,.10); }
.wa-close:hover { background: rgba(255,255,255,.18); }
.wa-panel-body { padding: 18px; background: linear-gradient(180deg, #f3f7f4, #fff); }
.wa-message { margin-bottom: 15px; padding: 13px 14px; display: grid; gap: 5px; border-radius: 8px 16px 16px 16px; background: var(--white); color: #43554e; box-shadow: 0 7px 20px rgba(16,40,30,.06); font-size: .79rem; }
.wa-message small { color: var(--muted); font-size: .65rem; }
.wa-lead-form { display: grid; gap: 10px; }
.wa-lead-form label { display: grid; gap: 5px; color: #50615a; font-size: .68rem; font-weight: 800; }
.wa-input { min-height: 44px; padding: 0 12px; display: flex; align-items: center; gap: 9px; border: 1px solid #dbe4df; border-radius: 12px; background: var(--white); transition: border-color .2s ease, box-shadow .2s ease; }
.wa-input:focus-within { border-color: rgba(29,159,88,.55); box-shadow: 0 0 0 3px rgba(29,159,88,.08); }
.wa-input i { width: 14px; color: #8d9c96; font-size: .74rem; }
.wa-input input { min-width: 0; flex: 1; padding: 11px 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: .78rem; }
.wa-consent { grid-template-columns: auto 1fr !important; align-items: start; gap: 8px !important; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.35; }
.wa-consent input { width: 15px; height: 15px; margin: 1px 0 0; accent-color: #1d9f58; }
.wa-submit { min-height: 48px; padding: 0 15px; border: 0; border-radius: 13px; display: flex; align-items: center; justify-content: center; gap: 9px; background: #1d9f58; color: var(--white); font-weight: 800; font-size: .78rem; box-shadow: 0 10px 24px rgba(29,159,88,.18); }
.wa-submit:hover { background: #17894b; }
.wa-submit .fa-arrow-right { font-size: .68rem; }
.wa-status { min-height: 16px; margin: 0; color: var(--green); font-size: .66rem; font-weight: 700; line-height: 1.35; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; font-size: .85rem; }
  .brand img { width: 175px; }
  .hero-grid { gap: 50px; }
  .hero h1 { font-size: clamp(3.1rem, 5.6vw, 5.1rem); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid, .strategy-grid, .contact-shell { gap: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-main { grid-template-columns: 1.4fr repeat(2,1fr); }
  .footer-main > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .header-inner { min-height: 80px; }
  .brand img { width: 158px; height: 61px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 24px; right: 24px; top: 80px; padding: 15px; display: none; flex-direction: column; align-items: stretch; gap: 3px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; border-radius: 10px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .main-nav > a:not(.nav-cta):hover { background: var(--paper); }
  .nav-cta { justify-content: center; margin-top: 5px; }
  .hero-grid, .about-grid, .strategy-grid, .contact-shell, .faq-layout, .heading-row { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; padding-block: 65px 76px; }
  .hero-media { max-width: 680px; width: 100%; min-height: 520px; }
  .heading-row { gap: 20px; }
  .heading-row > p { max-width: 680px; }
  .about-grid { gap: 58px; }
  .about-media { min-height: 520px; max-width: 690px; }
  .strategy-copy { order: 1; }
  .strategy-media { order: 2; max-width: 700px; }
  .strategy-stamp { left: 18px; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid article:last-child { grid-column: 1 / -1; max-width: calc(50% - 9px); }
  .faq-layout { gap: 48px; }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p:last-child { text-align: left; }
  .wa-widget { right: 16px; bottom: 16px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .header-inner { min-height: 74px; }
  .brand img { width: 145px; height: 56px; }
  .main-nav { left: 15px; right: 15px; top: 74px; }
  .hero-grid { min-height: auto; padding-block: 52px 68px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .hero-text { font-size: .99rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .proof-item { display: grid; grid-template-columns: 100px 1fr; align-items: center; }
  .proof-item span { margin: 0; }
  .hero-media { min-height: 420px; }
  .hero-photo { inset: 0 22px 18px 0; border-radius: 10px 50px 10px 10px; }
  .hero-badge { right: 0; top: 28px; width: 220px; padding: 13px; }
  .hero-badge-icon { width: 39px; height: 39px; flex-basis: 39px; }
  .hero-quote-card { left: 0; bottom: -9px; max-width: 255px; padding: 18px 19px; }
  .hero-quote-card p { font-size: 1.08rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { padding: 20px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .about-media { min-height: 430px; }
  .image-frame-main { inset: 0 48px 52px 0; border-radius: 10px 48px 10px 10px; }
  .image-frame-secondary { width: 180px; height: 135px; }
  .experience-card { left: 12px; bottom: 18px; width: 176px; padding: 17px; }
  .experience-number { font-size: 2.8rem; }
  .about-copy h2, .section-heading h2, .strategy-copy h2, .faq-intro h2, .contact-copy h2 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .services-grid, .process-grid, .articles-grid, .field-row, .footer-main { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .strategy-media, .strategy-media > img { min-height: 420px; }
  .strategy-stamp { right: 14px; left: 14px; bottom: 16px; justify-content: center; }
  .process-card { min-height: 250px; }
  .process-card > i { margin-bottom: 28px; }
  .articles-grid article:last-child { grid-column: auto; max-width: none; }
  .article-image { height: 215px; }
  .contact-section { padding: 82px 0; }
  .contact-form { padding: 22px; border-radius: 20px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom div { flex-wrap: wrap; }
  .wa-launcher { min-width: 58px; width: 58px; height: 58px; padding: 5px; grid-template-columns: 1fr; }
  .wa-launcher-icon { width: 46px; height: 46px; margin: auto; }
  .wa-launcher-text, .wa-chevron { display: none; }
  .wa-panel { width: min(378px, calc(100vw - 24px)); margin-bottom: 10px; }
  .wa-pulse { left: 15px; top: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   PÁGINAS INTERNAS — componentes adicionais
   ===================================================================== */

/* Estado ativo no menu */
.main-nav > a.is-active:not(.nav-cta) { color: var(--blue); }
.main-nav > a.is-active:not(.nav-cta)::after { right: 0; }

/* Hero de páginas internas */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #18392b 0%, #10281e 60%, #0f301f 100%); color: var(--white); }
.page-hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(0,91,127,.28), transparent 68%); right: 4%; top: -260px; pointer-events: none; }
.page-hero::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(215,231,181,.10); border-radius: 50%; left: -150px; bottom: -180px; pointer-events: none; }
.page-hero-accent { position: absolute; left: 0; bottom: 0; display: grid; grid-template-columns: 92px 92px 92px 92px; height: 5px; z-index: 2; }
.page-hero-accent span:nth-child(1){ background: var(--orange);} .page-hero-accent span:nth-child(2){ background: var(--yellow);} .page-hero-accent span:nth-child(3){ background: var(--blue);} .page-hero-accent span:nth-child(4){ background: var(--cyan);}
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; padding-block: 104px 92px; }
.crumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.55); }
.crumbs a { color: rgba(255,255,255,.72); } .crumbs a:hover { color: var(--green-soft); }
.crumbs i { font-size: .62rem; color: rgba(255,255,255,.4); }
.crumbs span { color: var(--green-soft); }
.page-hero h1 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: 1.0; font-size: clamp(2.9rem, 5vw, 5rem); color: var(--white); }
.page-hero-text { max-width: 720px; margin: 26px 0 0; color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.75; }

/* Link "ver todas" abaixo dos serviços na home */
.services-more { margin-top: 40px; text-align: center; }

/* Reconhecimento */
.recognition-section { background: var(--white); }
.recognition-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.recognition-card { padding: 32px 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); text-align: center; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.recognition-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.recognition-icon { width: 62px; height: 62px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: var(--green-mist); color: var(--green); font-size: 1.4rem; }
.recognition-card h3 { margin: 0 0 10px; font-family: var(--serif); font-weight: 400; font-size: 1.4rem; color: var(--green-900); line-height: 1.15; }
.recognition-card p { margin: 0; color: var(--body); font-size: .86rem; }
.recognition-logos { margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 46px; }
.recognition-logos span { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 800; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }
.recognition-logos span i { font-size: 1.2rem; color: var(--blue); }

/* Valores (sobre) */
.values-section { background: var(--paper); }
.values-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { padding: 32px 28px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; transition: transform .25s ease, box-shadow .25s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: var(--green-mist); color: var(--green); font-size: 1.2rem; margin-bottom: 22px; }
.value-card h3 { margin: 0 0 10px; font-family: var(--serif); font-weight: 400; font-size: 1.5rem; color: var(--green-900); }
.value-card p { margin: 0; color: var(--body); font-size: .88rem; }

/* Chips de especialidades */
.chip-list { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip-list span { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.05); color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 700; }

/* Equipe / profissionais */
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { height: 320px; overflow: hidden; background: #dfe6e2; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-body { padding: 24px 26px 26px; }
.team-role { color: var(--blue); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.team-body h3 { margin: 9px 0 12px; font-family: var(--serif); font-weight: 400; font-size: 1.6rem; color: var(--green-900); line-height: 1.1; }
.team-body p { margin: 0; color: var(--body); font-size: .87rem; }
.team-social { margin-top: 18px; display: flex; gap: 9px; }
.team-social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line); color: var(--green); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.team-social a:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* Faixa "junte-se / receber você" */
.join-section { background: var(--green-900); color: var(--white); }
.join-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.join-inner h2 { margin: 4px 0 8px; font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 3.4vw, 3rem); color: var(--white); line-height: 1.05; }
.join-inner p { margin: 0; color: rgba(255,255,255,.66); max-width: 520px; }
.join-inner .btn { flex: 0 0 auto; }

/* Escritórios (contato) */
.offices-section { background: var(--paper); }
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.office-card { padding: 34px 30px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.office-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: var(--green-mist); color: var(--green); font-size: 1.2rem; margin-bottom: 20px; }
.office-card h3 { margin: 0 0 14px; font-family: var(--serif); font-weight: 400; font-size: 1.7rem; color: var(--green-900); }
.office-card p { margin: 0 0 12px; color: var(--body); font-size: .9rem; line-height: 1.6; }
.office-card p i { width: 18px; color: var(--blue); }
.office-hours { font-size: .82rem !important; color: var(--muted) !important; }
.office-card-accent { background: var(--green-900); color: var(--white); }
.office-card-accent .office-icon { background: rgba(255,255,255,.1); color: var(--green-soft); }
.office-card-accent h3 { color: var(--white); }
.office-card-accent p { color: rgba(255,255,255,.78); }
.office-card-accent p i { color: var(--green-soft); }
.office-card-accent .office-hours { color: rgba(255,255,255,.55) !important; }

/* Blog: filtros + grid 4 + carregar mais */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.chip { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: #40544c; font-weight: 700; font-size: .82rem; transition: all .2s ease; }
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.is-on { background: var(--green); border-color: var(--green); color: var(--white); }
.articles-grid-4 { margin-top: 0; }
.blog-more { margin-top: 44px; text-align: center; }

/* Faixa CTA reutilizável */
.cta-band { background: linear-gradient(120deg, #18392b, #0f301f); color: var(--white); }
.cta-band-inner { padding: 62px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-inner h2 { margin: 4px 0 0; font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 3.3vw, 2.9rem); color: var(--white); line-height: 1.05; max-width: 640px; }
.cta-band-inner .btn { flex: 0 0 auto; }

/* Responsivo — novos componentes */
@media (max-width: 1080px) {
  .recognition-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; }
  .articles-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .page-hero-inner { padding-block: 84px 74px; }
  .join-inner, .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .recognition-grid, .values-grid, .team-grid, .articles-grid-4 { grid-template-columns: 1fr; }
  .team-photo { height: 360px; }
  .recognition-logos { gap: 16px 26px; }
  .office-card { padding: 26px 24px; }
  .cta-band-inner { padding: 48px 0; }
}

/* Conteúdo real migrado: componentes estendem a identidade do modelo. */
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
[id] { scroll-margin-top: 118px; }
.reveal { opacity: 1; transform: none; }
.js-reveal .reveal { opacity: 0; transform: translateY(20px); }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
.hero-photo { aspect-ratio: 1.08; }
.hero-photo img { height: 100%; object-position: center; }
.image-frame-main img { object-position: center; }
.main-nav a.is-active { color: var(--blue); }
.main-nav a.is-active::after { right: 0; }
.footer-col a, .office-card a { overflow-wrap: anywhere; }

.recognition-section { background: var(--paper); }
.recognition-intro { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 64px; }
.recognition-intro h2 { margin: 0 0 24px; font: 400 clamp(2.3rem, 4vw, 3.6rem)/1.05 var(--serif); letter-spacing: -.025em; color: var(--green-900); }
.recognition-intro p:not(.eyebrow) { color: var(--body); font-size: 1rem; }
.recognition-publication { margin: 0; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-sm); }
.recognition-publication img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.recognition-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
.recognition-card { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; padding: 0; text-align: left; background: var(--white); border: 1px solid var(--line); }
.recognition-seal { display: flex; align-items: center; justify-content: center; background: #fff; padding: 20px; min-width: 0; }
.recognition-seal img { width: 100%; max-height: 210px; object-fit: contain; transition: transform .2s ease; }
.recognition-seal:hover img { transform: scale(1.04); }
.recognition-card-copy { padding: 28px 28px 30px 8px; }
.award-year { display: inline-block; color: var(--blue); font-size: .875rem; font-weight: 700; letter-spacing: .08em; margin-bottom: 10px; }
.recognition-card h3 { font-size: 1.65rem; line-height: 1.1; margin-bottom: 10px; }
.recognition-card .award-category { color: var(--green); font-size: .875rem; font-weight: 700; margin-bottom: 14px; }
.recognition-card p { font-size: 1rem; line-height: 1.65; }
.recognition-thanks { margin: 32px 0 0; color: var(--body); text-align: center; font-size: 1rem; }

.team-grid { align-items: start; }
.team-photo { height: auto; aspect-ratio: 3 / 3.5; }
.team-body h2 { margin: 9px 0 18px; font: 400 1.9rem/1.12 var(--serif); color: var(--green-900); }
.team-body .team-role { font-size: .875rem; line-height: 1.6; color: var(--blue); letter-spacing: .025em; font-weight: 700; }
.team-details { border-block: 1px solid var(--line); }
.team-details summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; font-size: .9375rem; font-weight: 700; cursor: pointer; color: var(--green); list-style: none; }
.team-details summary::-webkit-details-marker { display: none; }
.team-details summary i { transition: transform .2s; }
.team-details[open] summary i { transform: rotate(45deg); }
.team-details ul { margin: 0 0 20px; padding-left: 20px; font-size: 1rem; line-height: 1.65; color: var(--body); }
.team-details li + li { margin-top: 14px; }
.team-email { display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-weight: 700; font-size: .9375rem; margin-top: 20px; }
.team-email:hover { color: var(--blue); }

.service-details-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.service-detail { padding: 38px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.service-detail h2 { margin: 25px 0; font: 400 2.2rem/1.08 var(--serif); color: var(--green-900); }
.service-detail ul { padding-left: 20px; margin: 0 0 28px; color: var(--body); font-size: 1rem; }
.service-detail li + li { margin-top: 14px; }
.service-detail p { color: var(--body); font-size: 1rem; }
.service-detail-other { background: var(--green-mist); }

.articles-grid { align-items: stretch; }
.article-card { display: flex; flex-direction: column; min-width: 0; }
.article-image { aspect-ratio: 1.6; height: auto; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-body { display: flex; flex: 1; flex-direction: column; }
.article-meta { flex-wrap: wrap; gap: 8px 16px; font-size: .875rem; }
.article-meta time { font-size: .875rem; }
.article-body h3 { line-height: 1.18; }
.article-body h3 a:hover { color: var(--blue); }
.article-body p { font-size: 1rem; }
.article-read { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-size: .9375rem; font-weight: 700; }
.article-read:hover { color: var(--blue); }
.article-cover-text { background: var(--green-900); color: var(--white); height: 100%; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.article-cover-text span { text-transform: uppercase; letter-spacing: .08em; font-size: .875rem; }
.article-cover-text strong { font: 400 2.3rem/1 var(--serif); }
.blog-filters { margin-bottom: 22px; }
.chip { font-size: .9375rem; }
.blog-count { margin: 0 0 28px; color: var(--body); font-size: .9375rem; }

.post-hero .page-hero-inner { max-width: 1080px; padding-block: 78px 70px; }
.post-hero h1 { font-size: clamp(2.25rem, 4.5vw, 4.2rem); line-height: 1.1; overflow-wrap: break-word; }
.post-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 28px 0 0; color: rgba(255,255,255,.75); font-size: 1rem; }
.post-container { max-width: 940px; }
.post-content { color: var(--ink); font-size: 1.125rem; line-height: 1.8; overflow-wrap: anywhere; }
.post-content h2, .post-content h3, .post-content h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--green-900); margin: 40px 0 20px; }
.post-content h2 { font-size: 2.15rem; }
.post-content h3 { font-size: 1.8rem; }
.post-content h4 { font-size: 1.5rem; }
.post-content p { margin: 0 0 22px; }
.post-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.post-content li { margin-bottom: 12px; }
.post-content figure { margin: 28px 0; max-width: 100%; }
.post-content .post-cover { margin: 0 0 42px; background: var(--paper); border-radius: 20px; overflow: hidden; }
.post-cover img { margin-inline: auto; max-height: 520px; width: auto; object-fit: contain; }
.post-content img { max-width: 100%; height: auto; border-radius: 14px; margin-inline: auto; }
.post-content video { display: block; width: auto; max-width: 100%; height: auto; max-height: 650px; margin-inline: auto; border-radius: 16px; background: #14261e; }
.post-content .wp-block-columns { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 36px; align-items: start; }
.post-content .wp-block-columns .wp-block-column { min-width: 0; }
.post-content .wp-block-columns .wp-block-column h2:first-child { margin-top: 0; }
.post-content blockquote { margin: 30px 0; padding: 8px 0 8px 24px; border-left: 3px solid var(--green); }
.post-content table { border-collapse: collapse; width: 100%; }
.post-content td, .post-content th { padding: 10px; border: 1px solid var(--line); }
.post-bottom { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.post-note { margin: 30px 0 0; font-size: .9375rem; color: var(--muted); }
.office-social { display: flex; gap: 20px; font-size: 1rem; margin: 20px 0; }
.office-social a { text-decoration: underline; text-underline-offset: 4px; }
.form-help { color: var(--body); font-size: .875rem; line-height: 1.6; margin: 14px 0 0; }
.form-status a, .wa-status a { text-decoration: underline; font-weight: 700; }
.wa-form-help { margin: 0; font-size: .875rem; color: var(--body); line-height: 1.5; }
.wa-panel-body { max-height: min(620px, calc(100dvh - 220px)); overflow-y: auto; }

@media (max-width: 1080px) {
  .recognition-intro { gap: 36px; }
  .recognition-card { display: flex; flex-direction: column; }
  .recognition-seal { min-height: 220px; }
  .recognition-seal img { max-height: 180px; width: auto; max-width: 100%; }
  .recognition-card-copy { padding: 8px 28px 30px; }
  .service-detail { padding: 30px; }
}
@media (max-width: 760px) {
  .recognition-intro { grid-template-columns: 1fr; }
  .recognition-publication { max-width: 500px; }
  .recognition-publication img { max-height: 300px; }
  .service-details-grid { grid-template-columns: 1fr; }
  .post-content .wp-block-columns { grid-template-columns: 1fr; gap: 20px; }
  .post-content { font-size: 1.0625rem; }
  .post-hero .page-hero-inner { padding-block: 58px; }
}
@media (max-width: 640px) {
  .recognition-grid { grid-template-columns: 1fr; gap: 22px; }
  .recognition-card-copy { padding: 4px 24px 28px; }
  .recognition-seal { min-height: 210px; }
  .team-photo { height: auto; aspect-ratio: 3 / 3.6; }
  .team-body { padding: 24px; }
  .service-detail { padding: 26px; }
  .service-detail h2 { font-size: 2rem; }
  .post-content h2 { font-size: 1.9rem; }
  .post-bottom { align-items: flex-start; flex-direction: column; }
  .wa-panel { max-height: calc(100dvh - 100px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js-reveal .reveal { opacity: 1; transform: none; }
}

/* As fotografias de equipe mantêm o enquadramento completo. */
.hero-media { min-height: 0; padding-bottom: 130px; }
.hero-photo { position: relative; inset: auto; margin: 0; aspect-ratio: 1600 / 1053; border-radius: 12px 58px 12px 12px; }
.hero-photo img { width: 100%; height: 100%; object-fit: contain; }
.hero-badge { top: auto; right: 0; bottom: 36px; }
.hero-quote-card { left: -20px; bottom: 10px; max-width: 235px; }
.about-media { min-height: 0; padding-bottom: 155px; }
.image-frame-main { position: relative; inset: auto; aspect-ratio: 1600 / 1040; border-radius: 12px 56px 12px 12px; }
.image-frame-main img { object-fit: contain; }
.about-copy > p:not(.eyebrow):not(.lead) + p { margin-top: 18px; }
.about-copy > .arrow-link { margin-top: 24px; }
.strategy-media { min-height: 0; }
.strategy-media > img { min-height: 0; height: auto; object-fit: contain; }
.articles-grid-4 article:last-child { grid-column: auto; max-width: none; }
.contact-form label, .wa-lead-form label { font-size: .875rem; }
@media (max-width: 1080px) and (min-width: 901px) {
  .hero-badge { width: 220px; }
  .hero-quote-card { max-width: 190px; padding: 18px; }
}
@media (max-width: 640px) {
  .hero-media { padding-bottom: 0; display: grid; gap: 16px; }
  .hero-photo { border-radius: 10px 40px 10px 10px; }
  .hero-badge, .hero-quote-card { position: static; width: 100%; max-width: none; }
  .hero-quote-card { display: flex; align-items: center; gap: 15px; }
  .hero-quote-card p { margin: 0; }
  .about-media { padding-bottom: 145px; }
  .experience-card { left: 0; bottom: 0; }
  .image-frame-secondary { right: 0; bottom: 0; }
}

@media (max-width: 640px) { .about-media .image-frame-secondary { width: 48%; height: auto; aspect-ratio: 4 / 3; } .about-media .experience-card { width: 48%; } }
