:root {
  --blue: #075aa6;
  --blue-dark: #073b68;
  --blue-soft: #eaf4ff;
  --ink: #10212f;
  --muted: #5f6f7c;
  --line: #d9e3ea;
  --bg: #f7f9fb;
  --white: #fff;
  --shadow: 0 24px 60px rgba(24, 50, 72, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 100; padding: 10px 16px; color: #fff; background: var(--blue-dark); border-radius: 8px; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #f0b429; outline-offset: 3px; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(5, 27, 44, .76);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 27, 44, .96);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .20);
}
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand-logo { filter: grayscale(1) brightness(0) invert(1); }
.brand-mark { width: 52px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: Montserrat, sans-serif; font-size: 24px; letter-spacing: -.7px; }
.brand-copy span { margin-top: 5px; color: #667883; font-size: 8px; font-weight: 700; letter-spacing: .5px; }
.nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.88); font-size: 14px; font-weight: 600; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--blue); }
.nav-cta { padding: 11px 18px; color: var(--blue-dark) !important; background: var(--white); border-radius: 999px; }
.language-switcher { display: inline-flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; }
.language-switcher a { min-width: 30px; padding: 5px 6px; border-radius: 999px; text-align: center; font-size: 11px; }
.language-switcher a[aria-current="page"] { color: #fff; background: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }

.hero {
  --hero-reveal: 58%;
  position: relative;
  min-height: 760px;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 100px;
  background: #0a263d;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/hero-garcia-engenharia.webp") center center / cover no-repeat;
  transform: scale(1.01);
}
.hero-bg-complete {
  background-image: url("assets/hero-garcia-engenharia-complete.webp");
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(var(--hero-reveal) - 8%), transparent calc(var(--hero-reveal) + 8%));
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(var(--hero-reveal) - 8%), transparent calc(var(--hero-reveal) + 8%));
  will-change: mask-image;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,18,31,.90) 0%, rgba(3,25,43,.78) 36%, rgba(3,25,43,.40) 63%, rgba(3,25,43,.08) 100%),
    linear-gradient(0deg, rgba(3,18,31,.42) 0%, transparent 45%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero .eyebrow { color: #d8ecff; }
.hero h1, h2 { margin: 18px 0; font-family: Montserrat, sans-serif; line-height: 1.08; letter-spacing: -1.7px; }
.hero h1 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(44px, 4.6vw, 68px);
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0,0,0,.18);
}
.hero h1 span { color: #9fd2ff; }
.hero-content > p { max-width: 610px; margin: 0 0 32px; color: rgba(255,255,255,.86); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(7,90,166,.25); }
.hero .btn-primary { color: var(--blue-dark); background: var(--white); box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.btn-ghost { border: 1px solid #cfdbe5; background: rgba(255,255,255,.75); }
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.58); background: rgba(4,24,40,.28); backdrop-filter: blur(8px); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.14); }
.hero-founded { display: flex; align-items: center; gap: 16px; max-width: 610px; margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.28); }
.hero-founded strong { color: var(--white); font-size: 15px; }
.hero-founded span { color: rgba(255,255,255,.72); font-size: 13px; }
.scroll-hint { position: absolute; left: 50%; bottom: 24px; z-index: 3; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); background: rgba(3,18,31,.18); backdrop-filter: blur(8px); }

.section { padding: 110px 0; }
.section-light { background: var(--bg); }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.about-visual { position: relative; min-height: 560px; }
.founder-portrait {
  position: absolute;
  inset: 0 76px 0 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(145deg, #e6f1f8 0%, #c8dfef 52%, #8ab6d5 100%);
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow);
}
.founder-portrait::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  top: -120px;
  border: 72px solid rgba(7,90,166,.10);
  border-radius: 50%;
}
.founder-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(7,59,104,.14));
}
.founder-photo {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: min(100%, 500px);
  height: 96%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
}
.photo-card { position: absolute; right: 0; bottom: 48px; z-index: 3; width: 230px; padding: 25px; border-radius: 20px; color: white; background: var(--blue); box-shadow: var(--shadow); }
.photo-card { display: grid; }
.photo-card strong { font-family: Montserrat, sans-serif; font-size: 19px; }
.photo-card span { opacity: .8; font-size: 13px; }
.grid-lines { position: absolute; width: 160px; height: 160px; left: -45px; top: -40px; opacity: .18; background: linear-gradient(var(--blue) 1px, transparent 1px), linear-gradient(90deg, var(--blue) 1px, transparent 1px); background-size: 18px 18px; }
.section-copy h2, .section-heading h2, .process-intro h2 { max-width: 710px; font-size: clamp(35px, 4vw, 54px); }
.section-copy > p { color: var(--muted); font-size: 16px; }
.signature-line { margin-top: 30px; display: flex; gap: 16px; align-items: center; }
.signature-line span { width: 44px; height: 2px; background: var(--blue); }
.signature-line p { margin: 0; color: var(--blue-dark); font-weight: 700; }

.services { background: white; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.section-heading > p { max-width: 470px; margin: 0 0 20px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 245px; padding: 32px 30px; border: 1px solid #dfe8ee; border-radius: 22px; background: linear-gradient(180deg,#fff,#f9fbfc); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card::before { content: ""; display: block; width: 38px; height: 3px; margin-bottom: 28px; border-radius: 999px; background: var(--blue); }
.service-card:hover { transform: translateY(-7px); border-color: #bfd6e9; box-shadow: 0 20px 48px rgba(16,49,76,.10); }
.service-card h3 { margin: 0 0 12px; font-family: Montserrat, sans-serif; font-size: 20px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.differentiators { background: var(--bg); }
.differentials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.differential-card { padding: 30px; border: 1px solid #dce7ee; border-radius: 20px; background: #fff; }
.differential-card h3 { margin: 0 0 10px; font-family: Montserrat, sans-serif; font-size: 19px; }
.differential-card p { margin: 0; color: var(--muted); font-size: 14px; }

.projects { background: #0e2537; color: white; }
.projects .eyebrow { color: #78bfff; }
.projects .section-heading > p { color: #aac0d0; }
.text-link { color: #abd6ff; font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.text-link-blue { display: inline-block; margin-top: 18px; color: var(--blue); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: #132d40; }
.case-image { position: relative; height: 230px; overflow: hidden; }
.case-image::before { content:""; position:absolute; inset:14% 12% 18%; border: 8px solid rgba(255,255,255,.38); box-shadow: inset 0 0 0 2px rgba(7,90,166,.3); transform: skewY(-4deg); }
.case-image > span { position: absolute; left: 18px; top: 18px; z-index: 2; padding: 7px 10px; border-radius: 999px; color: #d9edff; background: rgba(5,23,37,.72); font-size: 10px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.p1 { background: linear-gradient(140deg,#d7e0e6 0 38%, #9aabb6 38.2% 48%, #edf2f4 48.2% 66%, #7891a2 66.2%), linear-gradient(#fff,#ddd); }
.p2 { background: linear-gradient(30deg,#6f8492 0 34%,#f4f7f9 34.2% 57%,#b4c3cc 57.2% 73%,#6a8190 73.2%); }
.p3 { background: linear-gradient(160deg,#bfcbd2 0 31%,#6a7f8c 31.2% 52%,#e7ecef 52.2% 70%,#8297a4 70.2%); }
.case-content { padding: 25px; }
.case-type { color: #85c6ff; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.case-content h3 { margin: 5px 0 10px; font-family: Montserrat, sans-serif; font-size: 20px; }
.case-content p { min-height: 68px; margin: 0; color: #aec2d1; font-size: 13px; }
.case-outline { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.case-outline span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #c5d5df; font-size: 10px; }

.reviews { background: var(--white); }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 42px; }
.reviews-heading h2 { max-width: 720px; font-size: clamp(35px, 4vw, 54px); }
.google-proof { flex: 0 0 260px; display: grid; gap: 5px; padding: 18px 20px; border-left: 3px solid var(--blue); background: var(--blue-soft); }
.google-proof > span:last-child { color: var(--muted); font-size: 12px; line-height: 1.4; }
.review-stars { color: #e9a800; font-size: 15px; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 16px 42px rgba(16,49,76,.07); }
.review-author { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.review-initials { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .5px; }
.review-author div { display: grid; line-height: 1.35; }
.review-author strong { font-size: 14px; }
.review-author div span { color: var(--muted); font-size: 12px; }
.review-card blockquote { margin: 20px 0 0; color: #334b5d; font-size: 15px; line-height: 1.75; }
.reviews-footer { display: flex; justify-content: center; margin-top: 34px; }
.reviews-link { padding-bottom: 4px; color: var(--blue); border-bottom: 1px solid rgba(7,90,166,.3); font-size: 14px; font-weight: 800; }

.process { background: var(--bg); }
.process-intro { max-width: 760px; margin-bottom: 55px; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.timeline::before { content: ""; position: absolute; top: 27px; left: 26px; right: 26px; height: 1px; background: #c8d7e0; }
.timeline-item { position: relative; padding-top: 70px; }
.timeline-item > span { position: absolute; top: 0; left: 0; z-index: 2; display: grid; place-items: center; width: 54px; height: 54px; border: 7px solid var(--bg); border-radius: 50%; color: white; background: var(--blue); font-size: 12px; font-weight: 800; }
.timeline-item h3 { font-family: Montserrat, sans-serif; margin: 0 0 10px; }
.timeline-item p { color: var(--muted); font-size: 14px; margin: 0; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro h2 { font-size: clamp(35px, 4vw, 54px); }
.faq-intro p { max-width: 440px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; list-style: none; font-family: Montserrat, sans-serif; font-size: 17px; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; color: var(--blue); font-family: Inter, sans-serif; font-size: 25px; font-weight: 400; transform: translateY(-50%); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: -4px 48px 24px 0; color: var(--muted); font-size: 14px; }
.cta-contact { display: grid; gap: 5px; margin-top: 22px; font-style: normal; }
.cta-contact a { width: fit-content; color: #d7e8f5; font-size: 13px; }
.cta-contact a:first-child { color: white; font-weight: 800; }

.cta-section { padding: 30px 0 100px; background: var(--bg); }
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; padding: 58px; border-radius: 30px; color: white; background: linear-gradient(135deg,#075aa6,#053d70); box-shadow: 0 28px 70px rgba(7,90,166,.24); }
.cta-card::before { content:""; position:absolute; width:350px;height:350px;border:65px solid rgba(255,255,255,.07);border-radius:50%;right:-90px;top:-160px; }
.eyebrow-light { color: #d4eaff; }
.cta-card h2 { max-width: 650px; font-size: clamp(34px,4vw,52px); }
.cta-card p { max-width: 700px; color: #d7e8f5; }
.cta-actions { position: relative; z-index: 2; display: grid; gap: 12px; }
.btn-white { color: var(--blue); background: white; }
.btn-outline-white { color: white; border: 1px solid rgba(255,255,255,.45); }
footer { padding: 60px 0 28px; color: #b9c8d3; background: #081a27; }
.footer-grid { display: grid; grid-template-columns: 1fr .85fr .9fr; gap: 55px; align-items: start; }
.brand-footer { color: #38a1f6; }
.footer-contact { display: grid; gap: 6px; margin: 0; font-style: normal; }
.footer-contact a { color: #879dad; font-size: 13px; line-height: 1.55; }
.footer-contact a:first-child { color: #d5e1e9; font-weight: 700; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 18px; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 25px; color: #6f8594; font-size: 12px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-languages { display: inline-flex; gap: 10px; }
.footer-languages a[aria-current="page"] { color: #fff; font-weight: 700; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90; max-width: 860px; margin: auto; padding: 18px; border: 1px solid var(--line); border-radius: 16px; color: var(--ink); background: #fff; box-shadow: var(--shadow); }
.cookie-banner p { margin: 0 0 14px; font-size: 13px; }
.cookie-banner p a { color: var(--blue); text-decoration: underline; }
.cookie-banner div { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.cookie-banner button { min-height: 44px; padding: 8px 16px; border: 1px solid var(--blue); border-radius: 999px; cursor: pointer; font-weight: 700; }
.cookie-reject { color: var(--blue); background: #fff; }
.cookie-accept { color: #fff; background: var(--blue); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1020px) {
  .nav { gap: 16px; }
  .nav a:not(.nav-cta) { display: none; }
  .split-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .split-grid { gap: 60px; }
  .service-grid, .differentials-grid { grid-template-columns: repeat(2,1fr); }
  .project-grid, .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .case-card:last-child, .review-card:last-child { grid-column: 1 / -1; }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-intro { position: static; }
  .review-card:last-child { min-height: auto; }
  .timeline { grid-template-columns: repeat(2,1fr); row-gap: 48px; }
  .timeline::before { display: none; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 76px; }
  .brand-mark { width: 45px; }
  .brand-copy strong { font-size: 21px; }
  .nav { position: fixed; inset: 76px 14px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; color: #fff; background: #081f31; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a, .nav a:not(.nav-cta) { display: block; padding: 12px 13px; }
  .nav .language-switcher { display: flex; justify-content: center; margin: 6px 0; }
  .nav .language-switcher a { display: inline-block; padding: 7px 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .menu-toggle { display: block; }
  .hero { min-height: 720px; min-height: 100svh; padding: 118px 0 78px; }
  .hero-bg { background-position: 54% center; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(3,18,31,.91) 0%, rgba(3,24,41,.77) 64%, rgba(3,24,41,.42) 100%),
      linear-gradient(0deg, rgba(3,18,31,.50) 0%, transparent 55%);
  }
  .hero h1 { max-width: 600px; font-size: clamp(38px, 10vw, 48px); }
  .hero-content > p { max-width: 520px; font-size: 16px; }
  .hero-actions { display: grid; max-width: 410px; }
  .hero-founded { align-items: flex-start; flex-direction: column; gap: 2px; margin-top: 32px; }
  .section { padding: 80px 0; }
  .about-visual { min-height: 480px; }
  .founder-portrait { right: 30px; }
  .founder-photo { width: min(112%, 500px); height: 94%; }
  .photo-card { width: 220px; padding: 20px; }
  .section-heading { align-items: start; flex-direction: column; gap: 8px; }
  .service-grid, .differentials-grid, .project-grid, .timeline, .reviews-grid { grid-template-columns: 1fr; }
  .case-card:last-child { grid-column: auto; }
  .reviews-heading { align-items: start; flex-direction: column; gap: 18px; }
  .google-proof { width: 100%; flex-basis: auto; }
  .review-card, .review-card:last-child { grid-column: auto; min-height: auto; }
  .case-image { height: 220px; }
  .case-content p { min-height: auto; }
  .timeline-item { padding: 0 0 0 72px; min-height: 62px; }
  .timeline-item > span { top: 0; }
  .cta-section { padding-bottom: 70px; }
  .cta-card { padding: 36px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner div, .cookie-banner button { width: 100%; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 45; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: white; background: #25d366; box-shadow: 0 14px 35px rgba(13,94,49,.28); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(13,94,49,.36); }
.whatsapp-float .whatsapp-mark { width: 36px; height: 36px; display: block; fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { --hero-reveal: 112% !important; }
}

@media (hover: none) {
  .btn:hover, .service-card:hover, .whatsapp-float:hover { transform: none; }
}

.legal-page, .error-page { min-height: 100vh; background: var(--bg); }
.legal-content, .error-content { width: min(760px, calc(100% - 32px)); margin: 0 auto; padding: 72px 0; }
.legal-content h1, .error-content h1 { margin: 18px 0; font-family: Montserrat, sans-serif; font-size: clamp(36px, 7vw, 62px); line-height: 1.08; }
.legal-content h2 { margin-top: 34px; font-family: Montserrat, sans-serif; font-size: 24px; }
.legal-content p, .error-content p { color: var(--muted); }
.legal-content a:not(.text-link), .error-content a:not(.btn) { color: var(--blue); text-decoration: underline; }
.error-content { min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.error-content p { max-width: 590px; margin: 0 0 26px; font-size: 18px; }
