:root {
  --deep: #07394c;
  --deep-2: #052b3a;
  --blue: #087aa3;
  --turquoise: #00b8c8;
  --turquoise-dark: #0098aa;
  --white: #ffffff;
  --ice: #f1f8f9;
  --mist: #e1eef0;
  --line: #d7e5e8;
  --text: #173f4d;
  --muted: #5d7780;
  --success: #168a55;
  --danger: #b42318;
  --container: 1220px;
  --radius: 12px;
  --shadow: 0 22px 60px rgba(7, 57, 76, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
p { line-height: 1.72; }
h1, h2, h3 { color: var(--deep); letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(2.75rem, 5.4vw, 5.15rem); line-height: .99; }
h2 { font-size: clamp(2.1rem, 4vw, 3.65rem); line-height: 1.06; }
h3 { font-size: 1.35rem; line-height: 1.25; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; transform: translateY(-140%); padding: 10px 16px; background: var(--deep); color: white; border-radius: 6px; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 80; height: 84px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(7,57,76,.08); backdrop-filter: blur(16px); transition: box-shadow .25s, height .25s; }
.site-header.scrolled { box-shadow: 0 10px 35px rgba(7,57,76,.09); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.brand { flex: 0 0 auto; width: 250px; height: 72px; overflow: hidden; display: block; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(17px, 2.4vw, 34px); font-size: .8rem; font-weight: 700; }
.main-nav > a { position: relative; padding: 30px 0; }
.main-nav > a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 20px; background: var(--turquoise); transition: right .2s; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { right: 0; }
.main-nav .button-small { min-width: 168px; padding-block: 0; white-space: nowrap; line-height: 1; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 7px; background: var(--ice); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--deep); transition: transform .2s, opacity .2s; }

.button { min-height: 54px; padding: 0 23px; border: 1px solid var(--blue); border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--blue); color: white; font-size: .78rem; font-weight: 800; letter-spacing: -.01em; cursor: pointer; transition: transform .18s, background .18s, border-color .18s, box-shadow .18s; }
.button svg { width: 19px; height: 19px; }
.button:hover, .button:focus-visible { background: var(--deep); border-color: var(--deep); transform: translateY(-2px); box-shadow: 0 12px 25px rgba(8,122,163,.19); }
.button-small { min-height: 43px; padding: 0 18px; }
.button-outline { color: var(--blue); background: white; }
.button-outline:hover { color: white; }
.button-light { background: white; color: var(--deep); border-color: white; }
.button-light:hover { background: var(--deep); color: white; border-color: var(--deep); }
.button-full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; }
.button-row .button:first-child, .final-cta-inner .button { min-height: 60px; padding-inline: 28px; white-space: nowrap; }
.button-row .button:first-child::before, .final-cta-inner .button::before { width: 1.2em; height: 1.2em; }
.text-link { display: inline-flex; align-items: center; gap: 15px; color: var(--blue); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.text-link span { transition: transform .18s; }
.text-link:hover span { transform: translateX(5px); }
[data-whatsapp-link]::before { content: ""; width: 1.15em; height: 1.15em; flex: 0 0 auto; display: inline-block; background: currentColor; -webkit-mask: url("/assets/img/whatsapp.svg") center / contain no-repeat; mask: url("/assets/img/whatsapp.svg") center / contain no-repeat; }

.hero { position: relative; min-height: 650px; overflow: hidden; background: var(--white); }
.hero-media { position: absolute; inset: 0 0 0 39%; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, white 0%, rgba(255,255,255,.94) 9%, rgba(255,255,255,0) 42%); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-inner { min-height: 650px; display: flex; align-items: center; position: relative; z-index: 2; }
.hero-copy { width: min(650px, 58%); padding: 70px 0; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-copy p { max-width: 600px; color: var(--muted); font-size: 1.05rem; }

.trust-strip { border-block: 0; background: var(--blue); }
.trust-grid { min-height: 104px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 16px; padding: 23px; border-right: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.86); font-size: .78rem; line-height: 1.5; }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid svg { width: 36px; height: 36px; flex: 0 0 auto; color: white; }
.trust-grid b { display: block; color: white; }

.section { padding: 110px 0; }
.section-tinted { background: var(--ice); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 12px 0 14px; }
.section-heading p { max-width: 620px; color: var(--muted); }
.section-label { display: inline-block; color: var(--blue); font-size: .69rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section-label.light { color: #7fe9ef; }

.service-columns { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-columns > article { padding: 42px 7% 30px 0; }
.service-columns > article + article { padding-left: 7%; padding-right: 0; border-left: 1px solid var(--line); }
.service-title { margin-bottom: 27px; }
.service-title span { color: var(--muted); font-size: .69rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.service-title h3 { margin: 4px 0 0; font-size: 1.75rem; }
.service-row { min-height: 62px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); font-size: .9rem; transition: color .18s, padding .18s; }
.service-row > span:first-child { display: flex; align-items: center; gap: 14px; }
.service-icon { display: block; object-fit: contain; }
.service-row .service-icon { width: 22px; height: 22px; }
.service-row > span:last-child { color: var(--blue); }
.service-row:hover { color: var(--blue); padding-left: 5px; }
.services-home .text-link { margin-top: 35px; }

.process-section { padding: 94px 0 100px; background: var(--deep); color: white; }
.process-section h2 { color: white; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.process-grid article { min-height: 250px; padding: 30px 30px 10px; border-right: 1px solid rgba(255,255,255,.16); position: relative; }
.process-grid article:first-child { padding-left: 0; }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { color: var(--turquoise); font-weight: 800; }
.process-grid article > svg { width: 43px; height: 43px; display: block; color: white; margin: 32px 0 21px; }
.process-grid h3 { color: white; font-size: 1.05rem; letter-spacing: -.015em; }
.process-grid p { color: #b8d1d8; font-size: .8rem; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(55px, 8vw, 110px); align-items: center; }
.image-frame { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.credibility-copy h2 { margin: 12px 0 21px; }
.credibility-copy > p { color: var(--muted); }
.benefit-list { list-style: none; padding: 0; margin: 32px 0; display: grid; gap: 22px; }
.benefit-list li { display: flex; gap: 16px; }
.benefit-list svg { width: 29px; height: 29px; flex: 0 0 auto; color: var(--blue); }
.benefit-list span { display: grid; gap: 4px; color: var(--muted); font-size: .81rem; line-height: 1.55; }
.benefit-list b { color: var(--deep); font-size: .92rem; }
.benefit-list.compact { gap: 16px; }

.coverage { position: relative; isolation: isolate; background: var(--ice); overflow: hidden; }
.coverage::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(241,248,249,.99) 0%, rgba(241,248,249,.96) 38%, rgba(241,248,249,.68) 57%, rgba(241,248,249,.08) 79%); pointer-events: none; }
.coverage-media { position: absolute; inset: 0; z-index: 0; }
.coverage-media img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.coverage-areas .coverage-media img { object-position: 58% center; }
.coverage-grid { position: relative; z-index: 2; min-height: 470px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.coverage-copy { grid-column: 1; }
.coverage-grid h2 { margin: 12px 0 18px; }
.coverage-grid p { color: var(--muted); max-width: 530px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 3px; }
.coverage-tags span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 5px; background: white; color: var(--deep); font-size: .7rem; font-weight: 700; }
.coverage-grid .button { margin-top: 17px; }
.coverage-wide { padding: 40px 0; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-grid h2 { margin: 12px 0 18px; }
.faq-grid > div:first-child p { color: var(--muted); }
.accordion article { border-top: 1px solid var(--line); }
.accordion article:last-child { border-bottom: 1px solid var(--line); }
.accordion button { width: 100%; min-height: 76px; padding: 0; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; text-align: left; color: var(--deep); font-weight: 700; cursor: pointer; }
.accordion button span:last-child { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue); border: 1px solid var(--line); border-radius: 50%; transition: transform .2s; }
.accordion article > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s; }
.accordion article > div > p { overflow: hidden; margin: 0; color: var(--muted); font-size: .9rem; }
.accordion article.open > div { grid-template-rows: 1fr; }
.accordion article.open > div > p { padding: 0 50px 25px 0; }
.accordion article.open button span:last-child { transform: rotate(45deg); }

.final-cta { padding: 38px 0; background: var(--turquoise); color: var(--deep); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta-inner > div { display: flex; align-items: center; gap: 23px; }
.final-cta-inner > div > svg { width: 50px; height: 50px; }
.final-cta h2 { margin: 0 0 4px; color: var(--deep); font-size: clamp(1.45rem, 2.5vw, 2.25rem); }
.final-cta p { margin: 0; font-weight: 600; }

.page-hero, .service-hero { padding: 100px 0 105px; background: linear-gradient(110deg, white 0%, var(--ice) 100%); position: relative; overflow: hidden; }
.page-hero::after, .service-hero::after { content: ""; position: absolute; width: 460px; aspect-ratio: 1; right: -130px; top: -160px; border: 1px solid rgba(0,184,200,.26); border-radius: 50%; box-shadow: 0 0 0 70px rgba(0,184,200,.045); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 960px; margin: 14px 0 25px; font-size: clamp(2.9rem, 5.5vw, 5rem); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.page-hero-compact { padding-block: 75px; }
.service-directory { border-top: 1px solid var(--line); }
.service-directory > a { display: grid; grid-template-columns: 58px 1fr auto; gap: 25px; align-items: center; min-height: 132px; border-bottom: 1px solid var(--line); transition: background .18s, padding .18s; }
.service-directory > a:hover { background: white; padding-inline: 18px; }
.service-directory > a > span { width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--blue); }
.service-directory .service-icon { width: 25px; height: 25px; }
.service-directory h3 { margin: 0 0 7px; }
.service-directory p { margin: 0; color: var(--muted); font-size: .86rem; }
.service-directory > a > b { color: var(--blue); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }

.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 42%); gap: clamp(42px, 6vw, 80px); align-items: center; position: relative; z-index: 2; }
.service-hero h1 { margin: 14px 0 22px; font-size: clamp(3rem, 5.2vw, 4.85rem); }
.service-hero p { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.service-detail-icon { width: 52px; height: 52px; margin-bottom: 20px; display: grid; place-items: center; border: 1px solid rgba(8,122,163,.23); border-radius: 50%; background: rgba(255,255,255,.7); }
.service-detail-icon .service-icon { width: 30px; height: 30px; }
.service-hero aside { aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(8,122,163,.23); box-shadow: inset 0 0 0 34px rgba(0,184,200,.05); display: grid; place-items: center; justify-items: center; align-content: center; text-align: center; padding: 50px; }
.service-hero aside .service-icon { width: 70px; height: 70px; }
.service-hero aside span { margin-top: 18px; font-size: .75rem; color: var(--muted); }
.service-hero-media { width: 100%; margin: 0; overflow: hidden; }
.service-hero-media img { width: 100%; height: 100%; }
.service-hero-media-pragas { aspect-ratio: 1; }
.service-hero-media-pragas img { object-fit: contain; filter: drop-shadow(0 24px 24px rgba(7,57,76,.13)); }
.service-hero-media-desentupimento, .service-hero-media-contextual { aspect-ratio: 1.55; border-radius: var(--radius); box-shadow: var(--shadow); }
.service-hero-media-desentupimento img, .service-hero-media-contextual img { object-fit: cover; object-position: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: var(--muted); font-size: .72rem; }
.breadcrumbs a:hover { color: var(--blue); }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 23px; color: var(--deep); font-size: .72rem; font-weight: 700; }
.hero-assurances span { display: flex; align-items: center; gap: 6px; }
.hero-assurances svg { width: 16px; height: 16px; color: var(--success); }
.service-content { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.service-content article, .service-content aside { padding: 45px; border: 1px solid var(--line); border-radius: var(--radius); }
.service-content aside { background: var(--ice); border-color: transparent; }
.service-content h2 { margin: 12px 0 20px; font-size: clamp(2rem, 3.2vw, 3rem); }
.service-content h3 { margin-top: 32px; }
.service-content p { color: var(--muted); }
.sign-list { padding: 0; margin: 22px 0 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sign-list li { display: flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 700; }
.sign-list svg { width: 17px; height: 17px; color: var(--success); }
.service-content ol { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 12px; }
.service-content ol li { display: flex; align-items: center; gap: 12px; font-size: .83rem; font-weight: 700; }
.service-content ol b { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--deep); color: white; font-size: .72rem; }

.brand-panel { padding: 13px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.brand-panel img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 7px; }
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.areas-layout > div { padding: 48px; border: 1px solid var(--line); border-radius: var(--radius); }
.areas-layout h2 { margin: 12px 0 18px; font-size: clamp(2rem,3vw,3rem); }
.areas-layout p { color: var(--muted); }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.area-tags span { padding: 10px 13px; border-radius: 5px; background: var(--ice); color: var(--deep); font-size: .75rem; font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.contact-grid article { padding: 44px; background: white; }
.contact-grid article > svg { width: 38px; height: 38px; color: var(--blue); }
.contact-grid article > span { display: block; margin-top: 24px; color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-grid h2 { margin: 9px 0 24px; font-size: clamp(1.5rem,2.5vw,2.4rem); }
.legal h2 { margin: 40px 0 10px; font-size: 1.65rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); }

.site-footer { padding: 75px 0 25px; background: var(--deep-2); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3,1fr); gap: 55px; }
.footer-brand .brand { width: 210px; padding: 4px 8px; border-radius: 6px; background: white; }
.footer-brand p { max-width: 310px; color: #a9c5cd; font-size: .76rem; }
.footer-grid h2 { color: white; font-size: .78rem; letter-spacing: .02em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { color: #b9cfd5; font-size: .75rem; }
.footer-grid a:hover { color: var(--turquoise); }
.footer-bottom { margin-top: 58px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: #8eabb3; font-size: .69rem; }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 70; min-height: 64px; padding: 7px 22px 7px 9px; display: flex; align-items: center; gap: 12px; border: 0; border-radius: 999px; background: #1fb86a; color: white; font-size: .78rem; font-weight: 800; box-shadow: 0 14px 35px rgba(10,104,58,.3); cursor: pointer; transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-badge { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: white; }
.whatsapp-icon { width: 25px; height: 25px; display: block; background: #1fb86a; -webkit-mask: url("/assets/img/whatsapp.svg") center / contain no-repeat; mask: url("/assets/img/whatsapp.svg") center / contain no-repeat; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } [data-reveal] { opacity: 1; transform: none; } }

@media (max-width: 1020px) {
  .site-header { height: 74px; }
  .brand { width: 210px; height: 60px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 74px; left: 0; right: 0; max-height: 0; overflow: hidden; padding: 0 24px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: white; border-bottom: 1px solid transparent; transition: max-height .25s, padding .25s; }
  .main-nav.open { max-height: 520px; padding-block: 14px 22px; border-color: var(--line); box-shadow: 0 20px 40px rgba(7,57,76,.12); }
  .main-nav > a { padding: 13px 0; }
  .main-nav > a::after { display: none; }
  .main-nav .button { margin-top: 10px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero, .hero-inner { min-height: 620px; }
  .hero-media { left: 32%; }
  .hero-copy { width: 61%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { padding-left: 23px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .process-grid article:nth-child(3) { padding-left: 0; }
  .faq-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 36px, var(--container)); }
  .section { padding: 78px 0; }
  .hero { min-height: auto; padding-top: 0; }
  .hero-media { position: relative; inset: auto; height: 340px; }
  .hero-media::after { background: linear-gradient(0deg, white 0%, rgba(255,255,255,0) 36%); }
  .hero-media img { object-position: 61% center; }
  .hero-inner { min-height: auto; }
  .hero-copy { width: 100%; padding: 32px 0 65px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 11vw, 4.1rem); }
  .service-columns, .split, .coverage-grid, .faq-grid, .service-hero-grid, .service-content, .areas-layout { grid-template-columns: 1fr; }
  .service-columns > article { padding: 35px 0; }
  .service-columns > article + article { padding: 35px 0; border-left: 0; border-top: 1px solid var(--line); }
  .coverage::after { background: linear-gradient(90deg, rgba(241,248,249,.99) 0%, rgba(241,248,249,.96) 68%, rgba(241,248,249,.72) 100%); }
  .coverage-media img, .coverage-areas .coverage-media img { object-position: 68% center; }
  .coverage-grid { min-height: 500px; padding: 70px 0; gap: 25px; }
  .final-cta-inner { flex-direction: column; align-items: stretch; }
  .final-cta-inner .button { align-self: flex-start; }
  .page-hero, .service-hero { padding: 75px 0; }
  .service-hero-grid > div { min-width: 0; }
  .service-hero h1 { overflow-wrap: anywhere; }
  .service-hero aside { display: none; }
  .service-hero-media { width: min(560px, 100%); justify-self: center; }
  .service-content article, .service-content aside { padding: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  body { font-size: 15px; }
  .container { width: min(100% - 28px, var(--container)); }
  .brand { width: 175px; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-media { height: 290px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); padding-left: 0 !important; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .process-grid article > svg { margin: 22px 0 14px; }
  .sign-list { grid-template-columns: 1fr; }
  .service-directory > a { grid-template-columns: 48px 1fr; padding: 22px 0; }
  .service-directory > a > b { grid-column: 2; }
  .service-directory p { font-size: .8rem; }
  .areas-layout > div { padding: 29px; }
  .accordion article.open > div > p { padding-right: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float { right: 12px; bottom: 12px; min-height: 54px; padding: 6px 8px; }
  .whatsapp-badge { width: 42px; height: 42px; }
  .whatsapp-icon { width: 22px; height: 22px; }
  .service-hero h1.service-title-long { font-size: 2.5rem; overflow-wrap: normal; }
  .whatsapp-float > span:last-child { display: none; }
}

/* Blog e pesquisa */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.blog-hero { padding: 105px 0; color: white; background: linear-gradient(118deg, var(--deep-2), var(--deep) 62%, #075d73); position: relative; overflow: hidden; }
.blog-hero::after { content: ""; position: absolute; width: 470px; height: 470px; right: -130px; top: -220px; border: 1px solid rgba(127,233,239,.25); border-radius: 50%; box-shadow: 0 0 0 80px rgba(127,233,239,.04), 0 0 0 160px rgba(127,233,239,.025); }
.blog-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; position: relative; z-index: 1; }
.blog-hero h1 { max-width: 760px; margin: 14px 0 22px; color: white; font-size: clamp(3rem,5.2vw,5rem); }
.blog-hero p { max-width: 680px; margin: 0; color: #c5dce2; font-size: 1.02rem; }
.search-form { min-height: 66px; padding: 7px 7px 7px 20px; display: grid; grid-template-columns: 24px 1fr auto; gap: 11px; align-items: center; background: white; border: 1px solid rgba(255,255,255,.3); border-radius: 8px; box-shadow: 0 20px 45px rgba(3,34,47,.2); }
.search-form svg { width: 22px; height: 22px; color: var(--blue); }
.search-form input { width: 100%; min-width: 0; height: 48px; border: 0; outline: 0; color: var(--deep); background: transparent; }
.search-form input::placeholder { color: #718b94; }
.search-form button { height: 50px; padding: 0 21px; border: 0; border-radius: 6px; color: white; background: var(--blue); font-size: .75rem; font-weight: 800; cursor: pointer; transition: background .18s; }
.search-form button:hover, .search-form button:focus-visible { background: var(--deep); }
.search-form:focus-within { outline: 3px solid rgba(0,184,200,.2); border-color: var(--turquoise); }
.search-form-compact { min-height: 58px; padding-left: 15px; box-shadow: none; border-color: var(--line); }
.search-form-compact input { height: 42px; }
.search-form-compact button { height: 44px; padding-inline: 15px; }

.blog-featured { padding-bottom: 0; }
.blog-list-heading { margin-bottom: 48px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.blog-list-heading h2 { margin: 10px 0 0; }
.category-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.category-links a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--deep); font-size: .7rem; font-weight: 700; }
.category-links a:hover { color: var(--blue); border-color: var(--blue); }
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.article-card { min-width: 0; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s, box-shadow .2s, border-color .2s; }
.article-card:hover { transform: translateY(-5px); border-color: #bed8dd; box-shadow: var(--shadow); }
.article-card-media { aspect-ratio: 1.62; overflow: hidden; display: block; background: var(--mist); }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-card-media img { transform: scale(1.025); }
.article-card-content { padding: 28px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--muted); font-size: .66rem; font-weight: 650; text-transform: uppercase; letter-spacing: .045em; }
.article-meta a, .article-category { color: var(--blue); }
.article-card h2 { margin: 14px 0 13px; font-size: 1.55rem; line-height: 1.18; }
.article-card h2 a:hover { color: var(--blue); }
.article-card p { margin: 0 0 22px; color: var(--muted); font-size: .84rem; }
.article-card-featured { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; }
.article-card-featured .article-card-media { aspect-ratio: auto; min-height: 430px; }
.article-card-featured .article-card-content { padding: 58px; display: flex; flex-direction: column; justify-content: center; }
.article-card-featured h2 { font-size: clamp(2.2rem,3.4vw,3.35rem); }
.article-card-featured p { font-size: .96rem; }
.pagination-nav { margin-top: 50px; padding-top: 25px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.pagination-nav a { color: var(--blue); font-weight: 800; }
.pagination-nav a:last-child { text-align: right; }

.article-hero { padding: 86px 0 92px; background: linear-gradient(110deg, white, var(--ice)); }
.article-hero-inner { max-width: 980px; text-align: center; }
.article-hero .breadcrumbs { justify-content: center; }
.article-category { display: inline-block; margin-bottom: 16px; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-hero h1 { margin: 0 auto 24px; font-size: clamp(2.8rem,5.2vw,4.8rem); }
.article-hero > .article-hero-inner > p { max-width: 780px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.article-byline { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 25px; color: var(--muted); font-size: .72rem; font-weight: 650; }
.article-layout { padding: 75px 0 110px; display: grid; grid-template-columns: minmax(0,800px) 280px; gap: 80px; align-items: start; justify-content: center; }
.article-cover { aspect-ratio: 1.7; margin: 0 0 48px; overflow: hidden; border-radius: var(--radius); background: var(--mist); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-main > p, .article-main > section p { color: #3f5f69; font-size: 1rem; }
.article-main .article-lead { margin: 0 0 48px; color: var(--deep); font-size: 1.25rem; line-height: 1.72; }
.article-main > section { margin-top: 50px; }
.article-main > section h2 { margin-bottom: 20px; font-size: clamp(1.9rem,3vw,2.65rem); }
.article-main ul { margin: 25px 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.article-main li { padding-left: 29px; position: relative; color: #3f5f69; line-height: 1.6; }
.article-main li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
.article-inline-cta { margin-top: 58px; padding: 40px; border-radius: var(--radius); background: var(--deep); color: white; }
.article-inline-cta h2 { margin: 10px 0; color: white; font-size: 2rem; }
.article-inline-cta p { margin: 0 0 24px; color: #b8d0d6; }
.article-sidebar { position: sticky; top: 110px; display: grid; gap: 18px; }
.article-sidebar > div, .category-sidebar > div { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.article-sidebar p { margin: 13px 0 0; color: var(--muted); font-size: .78rem; }
.article-sidebar > div:nth-child(2), .category-sidebar > div { display: flex; flex-direction: column; gap: 13px; }
.article-sidebar > div:nth-child(2) > a, .category-sidebar > div > a { display: flex; align-items: center; justify-content: space-between; color: var(--deep); font-size: .75rem; font-weight: 700; }
.article-sidebar > div:nth-child(2) > a:hover, .category-sidebar > div > a:hover, .category-sidebar > div > a[aria-current="page"] { color: var(--blue); }
.article-sidebar .button { margin-top: 17px; }
.article-grid-related { grid-template-columns: repeat(2,minmax(0,1fr)); }

.category-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 55px; align-items: start; }
.category-layout .article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.category-sidebar { position: sticky; top: 110px; display: grid; gap: 20px; }
.category-sidebar > .search-form { display: grid; }

.search-page { max-width: 900px; }
.search-page > .search-form { box-shadow: 0 18px 45px rgba(7,57,76,.1); }
.search-summary { min-height: 25px; margin: 38px 0 15px; color: var(--muted); font-size: .82rem; }
.search-results { border-top: 1px solid var(--line); }
.search-result-item { padding: 34px 0; border-bottom: 1px solid var(--line); }
.search-result-item h2 { margin: 12px 0 10px; font-size: clamp(1.5rem,2.6vw,2.15rem); }
.search-result-item h2 a:hover { color: var(--blue); }
.search-result-item p { max-width: 720px; margin: 0 0 18px; color: var(--muted); font-size: .88rem; }
.search-empty { padding: 35px; border-radius: var(--radius); background: var(--ice); color: var(--muted); }
.search-empty a { color: var(--blue); text-decoration: underline; }

@media (max-width: 1020px) {
  .blog-hero-grid { grid-template-columns: 1fr; gap: 42px; align-items: start; }
  .blog-hero-grid > div:last-child { width: min(650px,100%); }
  .article-grid { grid-template-columns: repeat(2,1fr); }
  .article-layout { grid-template-columns: minmax(0,1fr) 250px; gap: 45px; }
  .category-layout { grid-template-columns: minmax(0,1fr) 270px; gap: 35px; }
  .category-layout .article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .blog-hero { padding: 75px 0; }
  .blog-list-heading { align-items: flex-start; flex-direction: column; }
  .category-links { justify-content: flex-start; }
  .article-card-featured { grid-template-columns: 1fr; }
  .article-card-featured .article-card-media { min-height: 300px; aspect-ratio: 1.62; }
  .article-card-featured .article-card-content { padding: 34px; }
  .article-layout, .category-layout { grid-template-columns: 1fr; }
  .article-sidebar, .category-sidebar { position: static; }
  .article-sidebar { grid-template-columns: 1fr 1fr; }
  .article-sidebar > div:first-child { grid-column: 1 / -1; }
  .article-grid-related { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 540px) {
  .search-form { padding-left: 14px; grid-template-columns: 20px 1fr; }
  .search-form button { grid-column: 1 / -1; width: 100%; }
  .article-grid, .article-grid-related, .article-sidebar { grid-template-columns: 1fr; }
  .article-sidebar > div:first-child { grid-column: auto; }
  .article-card-content, .article-card-featured .article-card-content { padding: 25px; }
  .article-card-featured .article-card-media { min-height: 220px; }
  .article-hero { padding: 65px 0; }
  .article-hero h1 { font-size: clamp(2.4rem,11vw,3.5rem); }
  .article-layout { padding: 45px 0 75px; }
  .article-cover { margin-bottom: 34px; }
  .article-main .article-lead { font-size: 1.08rem; }
  .article-inline-cta { padding: 28px; }
  .pagination-nav { grid-template-columns: 1fr 1fr; }
  .pagination-nav > span:nth-child(2) { grid-column: 1 / -1; grid-row: 1; text-align: center; }
}
