:root {
  --red: #d71920;
  --red-dark: #a70f15;
  --ink: #121417;
  --graphite: #1b1e22;
  --muted: #68707b;
  --line: #e4e7eb;
  --soft: #f4f5f7;
  --white: #ffffff;
  --success: #20a162;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(18, 20, 23, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--graphite); color: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 40px; }
.section-head h2, .section-title { margin: 10px 0 0; max-width: 760px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.06; letter-spacing: -.045em; }
.section-head p { max-width: 540px; margin: 0; color: var(--muted); }
.section-dark .section-head p, .section-dark .muted { color: #b8bdc6; }
.btn { border: 0; border-radius: 999px; min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; cursor: pointer; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 12px 26px rgba(215,25,32,.28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-outline { border: 1px solid rgba(255,255,255,.34); color: var(--white); background: transparent; }
.btn-outline-dark { border: 1px solid var(--line); color: var(--ink); background: var(--white); }
.icon { width: 22px; height: 22px; display: inline-block; }

/* Header */
.topbar { background: var(--ink); color: #d8dce1; font-size: .86rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(228,231,235,.8); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.55rem; font-weight: 950; font-style: italic; letter-spacing: -.06em; }
.brand-mark { width: 44px; height: 44px; background: var(--red); color: white; display: grid; place-items: center; border-radius: 13px 5px 13px 5px; transform: skew(-8deg); font-style: normal; font-weight: 950; }
.brand span strong { color: var(--red); }
.nav { display: flex; gap: 26px; align-items: center; font-weight: 700; font-size: .94rem; }
.nav a:hover { color: var(--red); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.menu-toggle { display: none; border: 0; background: var(--soft); border-radius: 12px; width: 46px; height: 46px; cursor: pointer; font-size: 1.35rem; }

/* Hero */
.hero { min-height: 720px; background: linear-gradient(90deg, rgba(10,11,13,.96) 0%, rgba(10,11,13,.78) 48%, rgba(10,11,13,.20) 100%), url('../images/hero.jpg') center/cover; color: var(--white); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -100px -190px auto; width: 500px; height: 500px; border: 80px solid rgba(215,25,32,.18); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; width: min(760px, 100%); padding: 90px 0 110px; }
.hero h1 { margin: 18px 0 22px; font-size: clamp(3.3rem, 7vw, 6.4rem); line-height: .92; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero p { max-width: 650px; color: #d4d8de; font-size: 1.12rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-meta { margin-top: 34px; display: flex; align-items: center; gap: 22px; color: #c7ccd3; font-weight: 650; }
.hero-meta span { display: inline-flex; gap: 8px; align-items: center; }

/* Trust */
.trust { position: relative; margin-top: -48px; z-index: 5; }
.trust-grid { background: white; box-shadow: var(--shadow); border-radius: var(--radius); display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; }
.trust-item { padding: 28px 26px; display: flex; gap: 14px; align-items: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 50px; height: 50px; flex: 0 0 50px; border-radius: 15px; background: #fff0f1; color: var(--red); display: grid; place-items: center; font-size: 1.3rem; }
.trust-item b { display: block; line-height: 1.2; }
.trust-item small { color: var(--muted); }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.service-image { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.service-body { padding: 24px; }
.service-body h3 { margin: 0 0 8px; font-size: 1.28rem; line-height: 1.2; }
.service-body p { margin: 0 0 18px; color: var(--muted); }
.link-arrow { color: var(--red); font-weight: 850; display: inline-flex; gap: 8px; align-items: center; }

/* Split sections */
.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.image-stack { position: relative; min-height: 560px; }
.image-stack img:first-child { width: 82%; height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-stack img:last-child { position: absolute; right: 0; bottom: 0; width: 47%; height: 250px; object-fit: cover; border-radius: 18px; border: 9px solid var(--white); box-shadow: var(--shadow); }
.copy h2 { margin: 12px 0 20px; font-size: clamp(2.2rem, 4.6vw, 4rem); line-height: 1.02; letter-spacing: -.05em; }
.copy p { color: var(--muted); }
.check-list { display: grid; gap: 13px; margin: 26px 0 32px; }
.check { display: flex; gap: 11px; align-items: flex-start; font-weight: 700; }
.check::before { content: "✓"; color: white; background: var(--red); width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; font-size: .78rem; }
.jac-note { margin-top: 24px; padding: 15px 18px; border-left: 3px solid var(--red); background: var(--soft); font-size: .9rem; color: #505761; }

/* Quote */
.quote-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.quote-intro h2 { margin: 12px 0 16px; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: .98; letter-spacing: -.055em; }
.contact-badges { display: grid; gap: 12px; margin-top: 30px; }
.contact-badge { display: flex; gap: 14px; align-items: center; color: #e7e9ed; }
.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 34px; box-shadow: 0 28px 70px rgba(0,0,0,.26); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .83rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #dfe3e8; background: #fafbfc; border-radius: 12px; padding: 13px 14px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,25,32,.10); }
.field textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .78rem; color: var(--muted); margin: 17px 0; }

/* Gallery and steps */
.gallery { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-template-rows: 240px 240px; gap: 14px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.gallery img:first-child { grid-row: 1 / 3; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
.step { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 26px; counter-increment: step; }
.step::before { content: "0" counter(step); color: var(--red); font-size: 2rem; font-weight: 950; letter-spacing: -.06em; }
.step h3 { margin: 14px 0 7px; }
.step p { color: var(--muted); margin: 0; }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 15px; overflow: hidden; background: white; }
.faq-button { width: 100%; border: 0; background: white; padding: 20px 22px; display: flex; justify-content: space-between; text-align: left; font-weight: 850; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--muted); }
.faq-answer p { padding: 0 22px 21px; margin: 0; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }

/* Location */
.location-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 440px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map { background: radial-gradient(circle at 30% 30%, #d7dbe0 0 3px, transparent 4px), linear-gradient(135deg,#ebedf0,#dfe3e7); background-size: 42px 42px, auto; position: relative; display: grid; place-items: center; min-height: 390px; }
.map::before, .map::after { content: ""; position: absolute; background: rgba(255,255,255,.8); }
.map::before { width: 130%; height: 28px; transform: rotate(-18deg); }
.map::after { width: 30px; height: 120%; transform: rotate(7deg); }
.map-pin { position: relative; z-index: 2; width: 74px; height: 74px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--red); display: grid; place-items: center; box-shadow: 0 14px 30px rgba(215,25,32,.3); }
.map-pin::after { content: "AG"; transform: rotate(45deg); color: white; font-weight: 950; }
.location-card { padding: 45px; background: var(--ink); color: white; }
.location-card h2 { margin: 0 0 22px; font-size: 2.2rem; line-height: 1.05; }
.location-row { display: flex; gap: 14px; margin: 20px 0; }
.location-row small { color: #aeb4bd; display: block; }
.location-row b { display: block; }

/* Footer */
.footer { background: #0c0e10; color: #d7dbe0; padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .95fr .75fr; gap: 46px; }
.footer h4 { color: white; margin: 0 0 16px; }
.footer a { display: block; margin: 8px 0; color: #b6bbc3; }
.footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid #272a2f; margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #878e98; font-size: .84rem; }
.whatsapp-float { position: fixed; z-index: 45; right: 22px; bottom: 22px; width: 58px; height: 58px; background: #1fbd68; color: white; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; box-shadow: 0 15px 36px rgba(31,189,104,.38); }
.mobile-actions { display: none; }

/* Cookies */
.cookie-banner { position: fixed; z-index: 100; left: 20px; bottom: 20px; width: min(520px, calc(100% - 40px)); background: white; box-shadow: 0 24px 70px rgba(0,0,0,.25); border-radius: 18px; padding: 22px; border: 1px solid var(--line); }
.cookie-banner h3 { margin: 0 0 8px; }
.cookie-banner p { margin: 0 0 15px; color: var(--muted); font-size: .9rem; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.hidden { display: none !important; }

/* Admin */
.admin-body { background: #eef0f3; min-height: 100vh; }
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: #111316; color: white; padding: 26px 20px; position: sticky; top: 0; height: 100vh; }
.admin-brand { margin-bottom: 32px; }
.admin-nav { display: grid; gap: 6px; }
.admin-nav button { border: 0; background: transparent; color: #b5bbc4; padding: 12px 14px; border-radius: 10px; text-align: left; cursor: pointer; font-weight: 700; }
.admin-nav button.active, .admin-nav button:hover { background: #25282d; color: white; }
.admin-main { padding: 36px; }
.admin-top { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 28px; }
.admin-top h1 { margin: 0; font-size: 2rem; letter-spacing: -.04em; }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat { background: white; padding: 24px; border-radius: 16px; box-shadow: 0 8px 25px rgba(23,25,28,.06); }
.stat small { color: var(--muted); font-weight: 700; }
.stat strong { display: block; font-size: 2rem; margin-top: 10px; }
.admin-card { background: white; border-radius: 16px; padding: 24px; box-shadow: 0 8px 25px rgba(23,25,28,.06); margin-top: 18px; }
.admin-card h2 { margin-top: 0; }
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--line); }
th { font-size: .78rem; text-transform: uppercase; color: var(--muted); letter-spacing: .05em; }
.status { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: #e8f7ef; color: #16804d; font-size: .76rem; font-weight: 800; }
.action-btn { border: 1px solid var(--line); background: white; border-radius: 8px; padding: 7px 9px; cursor: pointer; }
.admin-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form .full { grid-column: 1/-1; }
.admin-form input, .admin-form textarea, .admin-form select { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; }
.notice { padding: 12px 14px; background: #fff6da; border: 1px solid #f0d77c; border-radius: 10px; font-size: .86rem; color: #6d5712; }

@media (max-width: 980px) {
  .nav, .header-actions .phone-link { display: none; }
  .menu-toggle { display: block; }
  .nav.open { display: grid; position: absolute; top: 78px; left: 0; right: 0; background: white; padding: 22px 20px 28px; border-bottom: 1px solid var(--line); box-shadow: 0 18px 35px rgba(0,0,0,.1); }
  .hero { min-height: 650px; background-position: 62% center; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .split, .quote-wrap, .location-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-nav { grid-template-columns: repeat(4,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar { display: none; }
  .header-inner { min-height: 68px; }
  .brand { font-size: 1.25rem; }
  .brand-mark { width: 38px; height: 38px; }
  .header-actions .btn { display: none; }
  .nav.open { top: 68px; }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 15px; }
  .hero { min-height: 600px; background: linear-gradient(90deg, rgba(10,11,13,.94), rgba(10,11,13,.65)), url('../images/hero.jpg') 62% center/cover; }
  .hero-content { padding: 70px 0 95px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-meta { display: grid; gap: 8px; }
  .trust { margin-top: -34px; }
  .trust-grid, .service-grid, .steps, .footer-grid, .stats, .admin-form { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .image-stack { min-height: 430px; }
  .image-stack img:first-child { width: 90%; height: 390px; }
  .image-stack img:last-child { height: 190px; }
  .form-card { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 160px 160px; }
  .gallery img:first-child { grid-column: 1/-1; grid-row: auto; }
  .gallery img:last-child { display: none; }
  .location-card { padding: 30px 24px; }
  .footer-bottom { display: grid; }
  .whatsapp-float { display: none; }
  .mobile-actions { display: grid; position: fixed; z-index: 48; bottom: 0; left: 0; right: 0; grid-template-columns: repeat(3,1fr); background: white; border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(0,0,0,.12); }
  .mobile-actions a { min-height: 58px; display: grid; place-items: center; font-size: .76rem; font-weight: 850; }
  .mobile-actions a:nth-child(2) { background: #1fbd68; color: white; }
  body { padding-bottom: 58px; }
  .admin-main { padding: 22px 14px; }
  .admin-nav { grid-template-columns: 1fr 1fr; }
  .admin-top { align-items: flex-start; }
}


:root{--red:#c42026;--red-dark:#94181d;--ink:#17191c;--muted:#656d77;--line:#e1e5e9;--soft:#f2f4f6;--white:#fff;--radius:22px;--shadow:0 24px 60px rgba(20,23,27,.13)}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;color:var(--ink);line-height:1.6}a{color:inherit;text-decoration:none}img{max-width:100%;display:block}.container{width:min(1180px,calc(100% - 40px));margin:auto}.center{text-align:center;margin-top:34px}.centered{justify-content:center;text-align:center}.light{color:#fff}.muted-light{color:#bdc3cb}.full-btn{width:100%}.btn-link{border:0;background:transparent;font-weight:800;cursor:pointer}.page-hero{background:linear-gradient(90deg,rgba(9,10,12,.94),rgba(9,10,12,.62)),url('../images/hero.jpg') center/cover;color:#fff;padding:110px 0 90px}.page-hero.compact{padding:75px 0}.page-hero h1{font-size:clamp(3rem,8vw,6rem);line-height:.95;letter-spacing:-.055em;margin:8px 0 18px;max-width:850px}.page-hero p{max-width:720px;font-size:1.15rem;color:#d9dde2}.search-form{display:flex;gap:10px;max-width:700px;margin:0 auto 36px}.search-form input{flex:1;padding:14px;border:1px solid var(--line);border-radius:12px}.service-detail{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}.service-main-image{width:100%;height:560px;object-fit:cover;border-radius:var(--radius);position:sticky;top:100px}.service-detail article h2{font-size:2.5rem;line-height:1.1}.service-detail article h3{margin-top:32px}.rich-text{color:var(--muted)}.cta-box{background:var(--ink);color:#fff;border-radius:18px;padding:28px;margin-top:36px}.cta-box p{color:#c0c5cc}.empty{text-align:center;padding:50px;background:var(--soft);border-radius:16px}.legal-content{max-width:850px}.legal-content h2{margin-top:36px}.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.testimonial-grid blockquote{margin:0;padding:26px;border:1px solid var(--line);border-radius:16px;background:#fff}.stars{color:#d1a000;letter-spacing:3px}.testimonial-grid cite{font-weight:800;font-style:normal}.cookie-settings{display:grid;gap:8px;margin-top:15px;padding-top:15px;border-top:1px solid var(--line)}.form-feedback{font-size:.85rem;color:var(--red);margin:10px 0 0}.footer-brand{color:#fff;margin-bottom:16px}@media(max-width:860px){.service-detail{grid-template-columns:1fr}.service-main-image{height:400px;position:static}.testimonial-grid{grid-template-columns:1fr}.page-hero{padding:85px 0}.search-form{flex-direction:column}}


/* Brand assets update */
.brand-logo img{display:block;height:62px;width:auto;max-width:240px;object-fit:contain}.header .brand-logo img{height:64px}.footer .brand-logo img{height:86px;max-width:280px}.brand{font-style:normal;letter-spacing:0}.hero-layout{display:grid;grid-template-columns:minmax(0,1fr) 430px;gap:36px;align-items:center}.hero-visual{position:relative;display:flex;justify-content:flex-end;align-items:flex-end;min-height:520px}.mascot-card{position:relative;z-index:1;display:flex;justify-content:flex-end;align-items:flex-end;width:100%;height:100%}.hero-mascot{max-height:620px;filter:drop-shadow(0 24px 50px rgba(0,0,0,.35))}.hero::before{content:"";position:absolute;right:9%;bottom:14%;width:280px;height:280px;border-radius:50%;background:radial-gradient(circle,rgba(215,25,32,.23),rgba(215,25,32,0));z-index:0}.about-mascot-inline{margin:22px 0 8px}.about-mascot-inline img{height:180px;width:auto;filter:drop-shadow(0 12px 28px rgba(0,0,0,.12))}.brand-logo{display:inline-flex;align-items:center}.brand-logo + span{display:none}@media(max-width:980px){.hero-layout{grid-template-columns:1fr}.hero-visual{justify-content:center;min-height:auto;margin-top:12px}.hero-mascot{max-height:420px}.header .brand-logo img{height:54px}}@media(max-width:680px){.header .brand-logo img{height:48px;max-width:185px}.footer .brand-logo img{height:72px;max-width:230px}.hero-mascot{max-height:340px}.about-mascot-inline img{height:130px}}


/* ===== Correção definitiva do topo / proporção da logo ===== */
.header{background:#fff}
.header-inner{min-height:132px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.header .brand-logo{flex:0 0 220px;width:220px;min-width:220px;display:flex;align-items:center}
.header .brand-logo .site-logo,.header .brand-logo img{width:220px!important;height:auto!important;max-height:120px!important;object-fit:contain!important;display:block!important}
.nav{flex:1 1 auto;justify-content:center;gap:20px;white-space:nowrap}
.header-actions{flex:0 0 auto;white-space:nowrap}
.header-actions .phone-link{white-space:nowrap;line-height:1.25}
.header-actions .btn{min-width:155px;padding-inline:18px;text-align:center}
.footer .brand-logo .footer-site-logo,.footer .brand-logo img{width:240px!important;height:auto!important;max-height:145px!important;object-fit:contain!important}
@media(max-width:1100px){.header-inner{gap:12px}.header .brand-logo{flex-basis:190px;width:190px;min-width:190px}.header .brand-logo .site-logo,.header .brand-logo img{width:190px!important;max-height:108px!important}.nav{gap:14px;font-size:.88rem}.header-actions .phone-link{display:none}}
@media(max-width:980px){.header-inner{min-height:98px}.header .brand-logo{flex-basis:170px;width:170px;min-width:170px}.header .brand-logo .site-logo,.header .brand-logo img{width:170px!important;max-height:92px!important}}
@media(max-width:680px){.header-inner{min-height:82px}.header .brand-logo{flex-basis:145px;width:145px;min-width:145px}.header .brand-logo .site-logo,.header .brand-logo img{width:145px!important;max-height:76px!important}}


/* ===== Ajustes visuais V3: topo, serviços e responsividade ===== */
body{overflow-x:hidden}

/* Topo mais compacto e equilibrado */
.header-inner{min-height:112px!important;gap:24px!important}
.header .brand-logo{flex:0 0 185px!important;width:185px!important;min-width:185px!important}
.header .brand-logo .site-logo,.header .brand-logo img{width:185px!important;max-height:98px!important}
.nav{gap:24px!important;font-size:.92rem!important}
.nav a{position:relative;padding:10px 0}
.nav a::after{content:"";position:absolute;left:0;right:100%;bottom:4px;height:2px;background:var(--red);transition:right .2s ease}
.nav a:hover::after{right:0}
.header-actions{gap:14px!important}
.header-actions .phone-link{font-size:.95rem}
.header-actions .btn{min-width:180px!important;box-shadow:0 12px 30px rgba(215,25,32,.22)!important}

/* Banner interno das páginas */
.page-hero{min-height:330px;display:flex;align-items:center;padding:82px 0 68px!important;background-position:center 42%!important}
.page-hero h1{font-size:clamp(2.8rem,6vw,5rem)!important;margin-bottom:14px!important}
.page-hero p{font-size:1.08rem!important}

/* Busca */
.search-form{max-width:760px!important;margin:-28px auto 42px!important;padding:9px!important;background:#fff!important;border:1px solid var(--line)!important;border-radius:999px!important;box-shadow:0 18px 46px rgba(18,20,23,.12)!important;position:relative;z-index:4}
.search-form input{min-height:52px!important;border:0!important;background:transparent!important;padding:0 18px!important;outline:0!important}
.search-form .btn{min-width:130px}

/* Cards de serviços: corrige a classe service-content que não tinha estilo */
.service-grid{align-items:stretch!important;gap:26px!important}
.service-card{height:100%;border-radius:20px!important;background:#fff!important;border:1px solid #e1e5ea!important;box-shadow:0 10px 30px rgba(18,20,23,.055)!important;overflow:hidden!important}
.service-card>a{display:flex!important;flex-direction:column!important;height:100%!important}
.service-card .service-image,.service-card>a>img{display:block!important;width:100%!important;height:210px!important;aspect-ratio:16/9!important;object-fit:cover!important;transition:transform .35s ease!important;background:#eef0f2}
.service-card:hover .service-image,.service-card:hover>a>img{transform:scale(1.035)}
.service-content{display:flex!important;flex:1!important;flex-direction:column!important;align-items:flex-start!important;padding:24px 24px 25px!important}
.service-content>span{display:inline-flex!important;align-items:center!important;min-height:28px!important;margin-bottom:14px!important;padding:5px 10px!important;border-radius:999px!important;background:#fff0f1!important;color:var(--red)!important;font-size:.72rem!important;font-weight:850!important;text-transform:uppercase!important;letter-spacing:.06em!important}
.service-content h2,.service-content h3{margin:0 0 12px!important;font-size:1.28rem!important;line-height:1.18!important;letter-spacing:-.025em!important}
.service-content p{flex:1!important;margin:0 0 20px!important;color:var(--muted)!important;font-size:.96rem!important;line-height:1.62!important}
.service-content strong{display:inline-flex!important;align-items:center!important;gap:8px!important;color:var(--red)!important;font-size:.9rem!important;font-weight:900!important;transition:gap .2s ease!important}
.service-card:hover .service-content strong{gap:12px!important}

/* Página individual de serviço */
.service-detail{gap:70px!important}
.service-main-image{border-radius:24px!important;box-shadow:var(--shadow)!important}
.service-detail article{padding-top:8px}
.service-detail article h2{margin-top:0!important;font-size:clamp(2rem,4vw,3rem)!important;letter-spacing:-.04em!important}
.service-detail article h3{font-size:1.25rem!important}
.rich-text{font-size:1.02rem!important;line-height:1.8!important}
.cta-box{border-radius:22px!important;padding:32px!important;background:linear-gradient(145deg,#17191c,#262a30)!important}

/* Acessibilidade visual */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid rgba(215,25,32,.35)!important;outline-offset:3px!important}

@media(max-width:1100px){
  .header-inner{min-height:104px!important}
  .header .brand-logo{flex-basis:170px!important;width:170px!important;min-width:170px!important}
  .header .brand-logo .site-logo,.header .brand-logo img{width:170px!important;max-height:90px!important}
  .nav{gap:16px!important}
  .header-actions .btn{min-width:160px!important}
}
@media(max-width:980px){
  .header-inner{min-height:88px!important}
  .header .brand-logo{flex-basis:155px!important;width:155px!important;min-width:155px!important}
  .header .brand-logo .site-logo,.header .brand-logo img{width:155px!important;max-height:78px!important}
  .nav.open{top:88px!important}
  .service-card .service-image,.service-card>a>img{height:200px!important}
}
@media(max-width:680px){
  .header-inner{min-height:78px!important}
  .header .brand-logo{flex-basis:135px!important;width:135px!important;min-width:135px!important}
  .header .brand-logo .site-logo,.header .brand-logo img{width:135px!important;max-height:68px!important}
  .nav.open{top:78px!important}
  .page-hero{min-height:270px;padding:68px 0 52px!important}
  .search-form{margin:-20px auto 30px!important;padding:7px!important;border-radius:18px!important;flex-direction:column!important}
  .search-form input{width:100%;min-height:48px!important}
  .search-form .btn{width:100%}
  .service-grid{gap:18px!important}
  .service-card .service-image,.service-card>a>img{height:205px!important}
  .service-content{padding:21px!important}
}
