/* ===================================================================
   Stolz Controls — light theme
   Palette from the logo: white paper, gunmetal ink, azure accent,
   brushed-steel grays. Mono labels echo HMI/SCADA readouts.
   =================================================================== */

:root {
  --paper:      #ffffff;
  --mist:       #f3f6f8;   /* cool light gray section */
  --mist-2:     #e9eef2;
  --line:       #dde5ea;   /* hairline */
  --line-2:     #cdd8df;

  --ink:        #16242e;   /* gunmetal headings/text (wordmark) */
  --ink-soft:   #38505d;
  --muted:      #677c88;

  --blue:       #1190cb;   /* azure accent (logo arrows) */
  --blue-deep:  #0a5f8c;
  --blue-tint:  #e7f3fb;

  --whats:      #25d366;
  --whats-deep: #128c4b;

  --radius:   14px;
  --radius-l: 22px;
  --wrap:     1160px;
  --ease:     cubic-bezier(.22,1,.36,1);

  --f-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* shared type */
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.02; color: var(--ink); letter-spacing: .005em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: .8rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-deep); margin-bottom: 16px;
}
.eyebrow .node { width: 8px; height: 8px; border-radius: 2px; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-tint); }
.eyebrow-light { color: #8fd0f4; }
.eyebrow-light .node { background: #4fb6e8; box-shadow: 0 0 0 4px rgba(79,182,232,.18); }

.kicker {
  font-family: var(--f-mono); font-size: .82rem; letter-spacing: .08em;
  color: var(--blue-deep); margin-bottom: 18px;
}

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line); box-shadow: 0 6px 24px -14px rgba(22,36,46,.35); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 104px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 79px; width: auto; }
.brand-name { font-family: var(--f-display); font-weight: 800; font-size: 2.27rem; letter-spacing: .04em; color: var(--ink); display: flex; flex-direction: column; line-height: .92; }
.brand-name em { font-style: normal; font-size: 1.26rem; font-weight: 600; letter-spacing: .28em; color: var(--blue); }

.menu { display: flex; align-items: center; gap: 30px; }
.menu a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .2s var(--ease); }
.menu a:not(.menu-cta):hover { color: var(--blue-deep); }
.menu a:not(.menu-cta)::after { content:""; position: absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--blue); transition: width .25s var(--ease); }
.menu a:not(.menu-cta):hover::after { width: 100%; }
.menu-cta {
  background: var(--ink); color: #fff !important; font-weight: 600;
  padding: 10px 18px; border-radius: 100px; transition: transform .2s var(--ease), background .2s var(--ease);
}
.menu-cta:hover { background: var(--blue-deep); transform: translateY(-2px); }

.menu-inline { display: flex; align-items: center; gap: 22px; }
.menu-inline a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .2s var(--ease); }
.menu-inline a:hover { color: var(--blue-deep); }

.burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px auto; transition: .3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: min(94vh, 880px); padding: 116px 0 64px; overflow: hidden;
  background-image: url("../../SiteStolz/hero.jpg");
  background-size: cover; background-position: 78% center; background-repeat: no-repeat;
  background-color: var(--mist);
  border-bottom: 1px solid var(--line);
}
/* Translucent overlay keeps the headline readable over the photo */
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(249,251,252,.96) 0%, rgba(249,251,252,.86) 26%,
      rgba(249,251,252,.45) 50%, rgba(249,251,252,.06) 72%, rgba(249,251,252,0) 86%),
    linear-gradient(180deg, rgba(10,95,140,.06) 0%, rgba(255,255,255,0) 32%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-copy { max-width: 660px; }
.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.6rem); letter-spacing: -.015em; margin-bottom: 22px;
}
.hero-copy .accent { color: var(--blue); }
.lead { font-size: clamp(1.06rem, 1.7vw, 1.28rem); color: var(--ink-soft); max-width: 540px; margin-bottom: 34px; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 1rem; padding: 15px 28px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 16px 34px -12px rgba(17,144,203,.7); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-3px); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-3px); }
/* Glass button for the modern hero */
.btn-glass {
  background: rgba(255,255,255,.5); color: var(--ink); border-color: rgba(255,255,255,.7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px -16px rgba(22,36,46,.5);
}
.btn-glass:hover { background: rgba(255,255,255,.82); border-color: var(--blue); color: var(--blue-deep); transform: translateY(-3px); }
/* Translucent credential chip */
.hero-note {
  display: inline-block; margin-top: 6px;
  font-family: var(--f-mono); font-size: .8rem; color: var(--ink-soft);
  background: rgba(255,255,255,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.65); border-radius: 100px; padding: 9px 16px;
}

@keyframes blip { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.55);} 70%{ box-shadow: 0 0 0 7px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ===================================================================
   SECTIONS
   =================================================================== */
.section { padding: 96px 0; }
.section-mist { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.head-sub { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

/* A empresa */
.empresa { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.empresa-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 22px; }
.empresa-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.05rem; }
.text-link { display: inline-block; margin-top: 8px; color: var(--blue-deep); font-weight: 600; }
.text-link:hover { color: var(--blue); }

.pillars { display: grid; gap: 14px; }
.pillars li {
  position: relative; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px 22px 26px; transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.pillars li::before { content:""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px; border-radius: 3px; background: var(--blue); }
.pillars li:hover { transform: translateX(6px); border-color: var(--line-2); background: #fff; }
.p-label { font-family: var(--f-mono); font-size: .76rem; color: var(--blue-deep); }
.pillars h3 { font-size: 1.34rem; margin: 4px 0 6px; }
.pillars p { color: var(--muted); font-size: .98rem; }

/* Atuação */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  display: flex; flex-direction: column; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 26px 50px -30px rgba(22,36,46,.45); }
.card-ico { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; background: var(--blue-tint); color: var(--blue-deep); margin-bottom: 18px; }
.card-ico svg { width: 26px; height: 26px; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card-more { margin-top: auto; padding-top: 16px; font-weight: 600; font-size: .92rem; color: var(--blue-deep); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s var(--ease), color .2s var(--ease); }
.card:hover .card-more { gap: 11px; color: var(--blue); }

/* Processo */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.steps li {
  position: relative; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.steps li:hover { transform: translateY(-5px); border-color: var(--blue); }
.s-num { font-family: var(--f-mono); font-weight: 600; font-size: 1rem; color: #fff; background: var(--blue); width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 18px; }
.steps h3 { font-size: 1.3rem; margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: .95rem; }

/* Tecnologias */
.tech { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tech-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.tech-col:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tech-col h3 { font-size: 1.2rem; color: var(--blue-deep); padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.tech-col ul { display: flex; flex-direction: column; gap: 10px; }
.tech-col li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: .96rem; }
.tech-col li::before { content:""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 2px; background: var(--blue); }

/* Setores */
.setores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.setores li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.setores li:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 24px 44px -30px rgba(22,36,46,.4); }
.set-ico { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: #bfe2f4; margin-bottom: 16px; }
.set-ico svg { width: 25px; height: 25px; stroke-linecap: round; stroke-linejoin: round; }
.setores h3 { font-size: 1.28rem; margin-bottom: 6px; }
.setores p { color: var(--muted); font-size: .95rem; }

/* ===================================================================
   CONTATO (dark band for contrast + conversion)
   =================================================================== */
.contact { background: radial-gradient(900px 500px at 15% -20%, #1d3340, var(--ink)); color: #e8f1f6; padding: 92px 0; }
.contact-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.contact-copy h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.contact-lead { color: #aebfc8; font-size: 1.1rem; margin-top: 16px; max-width: 520px; }
.contact-data { margin-top: 28px; display: grid; gap: 16px; }
.cd-label { font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: #74d0fa; display: block; }
.contact-data a { font-size: 1.2rem; font-weight: 600; color: #fff; }
.contact-data a:hover { color: #8fd0f4; }

.contact-cta { display: grid; gap: 14px; }
.btn-whats { background: linear-gradient(135deg, var(--whats), var(--whats-deep)); color: #04250f; font-size: 1.05rem; padding: 17px 26px; box-shadow: 0 16px 38px -16px rgba(37,211,102,.6); }
.btn-whats svg { width: 23px; height: 23px; }
.btn-whats:hover { transform: translateY(-3px); }
.btn-mail { background: transparent; border-color: rgba(255,255,255,.25); color: #fff; padding: 17px 26px; }
.btn-mail:hover { border-color: #74d0fa; color: #8fd0f4; transform: translateY(-3px); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.brand-foot { margin-bottom: 14px; }
.brand-foot img { height: 68px; width: auto; }
.foot-tag { color: var(--muted); max-width: 300px; }
.footer-grid h4 { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 14px; font-weight: 600; }
.footer-grid nav a, .footer-grid div a { display: block; color: var(--ink-soft); padding: 5px 0; transition: color .2s; }
.footer-grid nav a:hover, .footer-grid div a:hover { color: var(--blue-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.footer-bottom p:last-child { font-family: var(--f-mono); letter-spacing: .04em; }

/* ===================================================================
   WhatsApp float + reveal
   =================================================================== */
.whats-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--whats), var(--whats-deep)); color: #fff;
  box-shadow: 0 12px 28px -8px rgba(18,140,75,.6); transition: transform .25s var(--ease); animation: blip 2.6s infinite;
}
.whats-float svg { width: 29px; height: 29px; }
.whats-float:hover { transform: scale(1.08); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } .led, .whats-float { animation: none; } }

/* visible focus */
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1000px) {
  .empresa { grid-template-columns: 1fr; gap: 44px; }
  .hero { min-height: min(88vh, 760px); background-position: 74% center; }
  .grid-cards, .tech { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .setores { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 720px) {
  .burger { display: block; }
  /* logo um pouco menor no mobile para não dominar a barra */
  .nav { height: 86px; }
  .brand img { height: 64px; }
  .brand-name { font-size: 1.8rem; }
  .brand-name em { font-size: 1rem; }
  .menu {
    position: fixed; inset: 86px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    padding: 10px 24px 24px; transform: translateY(-130%); transition: transform .35s var(--ease);
    box-shadow: 0 22px 40px -22px rgba(22,36,46,.45);
  }
  .menu.open { transform: translateY(0); }
  .menu a { padding: 15px 2px; border-bottom: 1px solid var(--line); }
  .menu a:not(.menu-cta)::after { display: none; }
  .menu-cta { text-align: center; margin-top: 14px; padding: 14px; }

  .section, .contact { padding: 68px 0; }
  .hero { min-height: auto; padding: 118px 0 56px; background-position: 70% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(249,251,252,.94) 0%, rgba(249,251,252,.76) 70%, rgba(249,251,252,.68) 100%); }
  .head { margin-bottom: 40px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .grid-cards, .tech, .steps, .setores { grid-template-columns: 1fr; }
  .actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ===================================================================
   Legal / policy page
   =================================================================== */
.legal { padding: 132px 0 80px; }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: .82rem; color: var(--blue-deep); margin-bottom: 22px; }
.legal-back:hover { color: var(--blue); }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3rem); margin-bottom: 10px; }
.legal-updated { font-family: var(--f-mono); font-size: .82rem; color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 1.5rem; margin: 38px 0 12px; color: var(--ink); }
.legal h3 { font-size: 1.15rem; margin: 22px 0 8px; color: var(--blue-deep); font-family: var(--f-body); font-weight: 700; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; color: var(--ink-soft); }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--blue-deep); text-decoration: underline; }
.legal a:hover { color: var(--blue); }
.legal-note { background: var(--mist); border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: var(--radius); padding: 18px 22px; margin: 24px 0; font-size: .96rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: .94rem; }
.legal th, .legal td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { font-family: var(--f-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--blue-deep); }
.legal td { color: var(--ink-soft); }

/* ===================================================================
   Footer cookie button + LGPD consent banner
   =================================================================== */
.footer-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-tech { font-family: var(--f-mono); letter-spacing: .04em; color: var(--muted); }
.cookie-btn {
  font-size: .84rem; font-weight: 600; color: var(--ink); padding: 8px 16px;
  border: 1px solid var(--line-2); border-radius: 100px; transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.cookie-btn:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }

.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 22px; box-shadow: 0 24px 60px -24px rgba(22,36,46,.55);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-text { flex: 1 1 320px; font-size: .92rem; color: var(--ink-soft); margin: 0; }
.cookie-banner-text a { color: var(--blue-deep); font-weight: 600; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie { font: 600 .92rem var(--f-body); padding: 11px 20px; border-radius: 100px; cursor: pointer; border: 1.5px solid transparent; transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease); }
.btn-cookie-solid { background: var(--blue); color: #fff; }
.btn-cookie-solid:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-cookie-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-cookie-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }

@media (max-width: 480px) {
  .cookie-banner { padding: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn-cookie { flex: 1; }
}

/* ===================================================================
   Sub-páginas de atuação
   =================================================================== */
.subhero {
  position: relative; display: flex; align-items: flex-end;
  min-height: min(74vh, 640px); padding: 150px 0 52px; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--ink); border-bottom: 1px solid var(--line);
}
.subhero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13,22,28,0) 30%, rgba(13,22,28,.45) 66%, rgba(13,22,28,.82) 100%),
    linear-gradient(90deg, rgba(13,22,28,.5) 0%, rgba(13,22,28,0) 62%);
}
.subhero-inner { position: relative; z-index: 1; width: 100%; }
.subhero-copy { max-width: 720px; }
.subhero-back { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: .8rem; color: #bfe2f4; margin-bottom: 16px; }
.subhero-back:hover { color: #fff; }
.subhero h1 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4.1rem); letter-spacing: -.01em; margin-bottom: 16px; }
.subhero-desc { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.7vw, 1.28rem); max-width: 640px; margin-bottom: 28px; }
.subhero .actions { margin-bottom: 0; }

/* O que entregamos */
.deliver-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 860px; margin: 0 auto; }
.deliver-item { display: flex; gap: 14px; align-items: flex-start; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.deliver-chk { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; background: var(--blue-tint); color: var(--blue-deep); display: grid; place-items: center; }
.deliver-chk svg { width: 17px; height: 17px; stroke-width: 2.4; }
.deliver-item p { color: var(--ink-soft); font-size: 1rem; margin: 3px 0 0; }

/* Outras áreas */
.area-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area-nav a { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; font-weight: 600; color: var(--ink); transition: transform .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease); }
.area-nav a span { color: var(--blue-deep); }
.area-nav a:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue-deep); }

/* Mapa no contato */
.contact-map { margin-top: 34px; }
.contact-map iframe { display: block; width: 100%; height: 360px; border: 0; border-radius: var(--radius-l); border: 1px solid rgba(255,255,255,.14); }

@media (max-width: 900px) {
  .area-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .subhero { min-height: min(72vh, 520px); padding-top: 128px; }
  .deliver-grid { grid-template-columns: 1fr; }
  .area-nav { grid-template-columns: 1fr; }
  .contact-map iframe { height: 300px; }
}
