:root {
  --ink: #303438;
  --navy: #24272a;
  --navy-2: #3a3e42;
  --green: #e31620;
  --green-dark: #bd0f18;
  --sky: #9ba1a6;
  --warm: #e31620;
  --paper: #f5f6f7;
  --muted: #666d72;
  --line: #dcdfe2;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(31, 34, 37, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
.spam-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }

.site-entry { position: fixed; inset: 0; z-index: 1000; display: grid; place-content: center; justify-items: center; gap: 17px; background: #24272a; color: #fff; animation: entry-veil 1.65s cubic-bezier(.76,0,.24,1) forwards; }
.site-entry::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(227,22,32,.18), transparent 34%); }
.site-entry-mark { position: relative; width: min(720px, 82vw); animation: entry-mark .8s cubic-bezier(.2,.8,.2,1) both; }
.site-entry-mark img { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 42px rgba(0,0,0,.3)); }
.site-entry-line { position: relative; width: min(310px, 58vw); height: 2px; overflow: hidden; background: rgba(255,255,255,.12); }
.site-entry-line i { position: absolute; inset: 0; background: #e31620; transform-origin: left; animation: entry-line 1s .18s ease both; }
.site-entry small { position: relative; color: #c7cbce; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; animation: entry-copy .5s .35s both; }
@keyframes entry-mark { from { opacity: 0; transform: translateY(22px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes entry-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes entry-copy { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes entry-veil { 0%, 67% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; } }

.dev-ribbon {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 20px;
  background: #041e2a;
  color: #c9d9dc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dev-ribbon span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(166, 212, 49, .12); }

.site-header {
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 max(5vw, 28px);
  background: rgba(247, 250, 248, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(8, 43, 58, .07);
  transition: height .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header::after { content: ""; position: absolute; left: 0; bottom: -1px; width: var(--scroll-progress, 0%); height: 2px; background: #e31620; transition: width .1s linear; }
.site-header.is-scrolled { height: 68px; background: rgba(255,255,255,.98); box-shadow: 0 12px 32px rgba(36,39,42,.09); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; min-width: 210px; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--navy); }
.brand-mark svg { width: 30px; height: 30px; fill: var(--green); }
.brand-mark svg path:last-child { fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; }
.brand strong { display: block; font-size: 18px; letter-spacing: .08em; line-height: 1; }
.brand small { display: block; margin-top: 4px; color: #6e8087; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.brand-image { min-width: 250px; height: 58px; gap: 0; overflow: hidden; }
.header-logo-window { position: relative; width: 250px; height: 56px; display: block; overflow: hidden; }
.header-logo-window img { position: absolute; top: -33px; left: -48px; width: 340px; max-width: none; height: auto; }
.site-header nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-header nav a { position: relative; color: #46606a; text-decoration: none; font-size: 13px; font-weight: 700; transition: color .2s; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; border-radius: 2px; background: #e31620; transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.site-header nav a:hover::after, .site-header nav a.is-active::after { transform: scaleX(1); }
.site-header nav a.is-active { color: #e31620; }
.site-header nav a:hover { color: var(--green-dark); }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #102b37; background: var(--green); box-shadow: 0 12px 28px rgba(127, 170, 23, .2); }
.button-primary:hover { background: #b5df48; box-shadow: 0 14px 34px rgba(127, 170, 23, .28); }
.button-ghost { color: var(--navy); background: transparent; border-color: #bfceca; }
.button-ghost:hover { background: #fff; border-color: #9eb2ac; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--navy); }
.menu-toggle span { transition: transform .25s ease, opacity .2s ease; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(540px, .9fr) minmax(760px, 1.45fr);
  align-items: start;
  gap: 22px;
  padding: 36px max(1.8vw, 24px) 48px;
  background: linear-gradient(135deg, #f8fbf8 0%, #f0f7f4 60%, #e9f4f0 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(8,43,58,.08) .7px, transparent .7px); background-size: 26px 26px; mask-image: linear-gradient(90deg, #000, transparent 70%); opacity: .4; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); }
.hero-glow-one { width: 420px; height: 420px; top: -190px; right: 14%; background: rgba(166, 212, 49, .1); }
.hero-glow-two { width: 300px; height: 300px; bottom: -180px; left: 35%; background: rgba(97, 201, 223, .12); }
.hero-content, .hero-visual, .hero-side-cards { position: relative; z-index: 1; }
.hero-content { width: 100%; max-width: none; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #4e686f; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 700px; margin-bottom: 26px; color: var(--navy); font-size: clamp(50px, 6vw, 84px); line-height: .98; letter-spacing: -.055em; }
h1 em { color: var(--green-dark); font-style: normal; }
.hero-copy { max-width: 600px; margin-bottom: 32px; color: #536b74; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-service-stats { margin-top: 34px; padding-top: 20px; border-top: 1px solid #d8e3df; }
.hero-stats-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.hero-stats-heading > span { color: var(--navy); font-size: 13px; font-weight: 800; }
.hero-stats-heading > span strong { color: var(--red); }
.hero-stats-heading small { display: inline-flex; align-items: center; gap: 7px; color: #70797e; font-size: 10px; font-weight: 700; }
.hero-stats-heading small i { width: 8px; height: 8px; border-radius: 50%; background: #aab0b4; box-shadow: 0 0 0 4px rgba(170,176,180,.14); }
.hero-service-stats.is-connected .hero-stats-heading small { color: #3c6c50; }
.hero-service-stats.is-connected .hero-stats-heading small i { background: #35a765; box-shadow: 0 0 0 4px rgba(53,167,101,.14); }
.hero-service-stats.is-error .hero-stats-heading small { color: #b70f17; }
.hero-service-stats.is-error .hero-stats-heading small i { background: var(--red); box-shadow: 0 0 0 4px rgba(227,22,32,.12); }
.hero-stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.hero-stats-grid article { min-width: 0; min-height: 82px; display: flex; flex-direction: column; justify-content: center; padding: 12px; border: 1px solid #dfe3e5; border-radius: 13px; background: rgba(255,255,255,.74); }
.hero-stats-grid strong { color: var(--navy); font-size: 25px; line-height: 1; }
.hero-stats-grid span { margin-top: 7px; color: #6c757a; font-size: 9px; font-weight: 800; line-height: 1.25; text-transform: uppercase; letter-spacing: .04em; }
.hero-content > .proof-card-ratings { min-height: 0; margin-top: 22px; }
.proof-card-ratings .rating-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hero-side-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: start; }
.hero-side-cards > .proof-card { min-height: 650px; }
.hero-assurance { display: flex; gap: 38px; margin-top: 52px; padding-top: 26px; border-top: 1px solid #d8e3df; }
.hero-assurance div { display: flex; flex-direction: column; }
.hero-assurance strong { color: var(--navy); font-size: 20px; }
.hero-assurance span { margin-top: 3px; color: #708087; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }

.hero-visual { min-height: 630px; display: grid; place-items: center; }
.hero-map-card { width: min(100%, 570px); padding: 24px; border-radius: 30px; background: radial-gradient(circle at 82% 12%, rgba(227,22,32,.24), transparent 30%), #24272a; box-shadow: 0 34px 78px rgba(31,34,37,.23); }
.hero-map-heading span, .hero-map-heading strong, .hero-map-heading small { display: block; }
.hero-map-heading span { color: #ff5961; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.hero-map-heading strong { margin-top: 7px; color: #fff; font-size: 24px; letter-spacing: -.02em; }
.hero-map-heading small { margin-top: 5px; color: #aeb6ba; font-size: 11px; line-height: 1.45; }
.hero-map-canvas { height: 500px; display: grid; place-items: center; margin-top: 18px; padding: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 18px; background: #f7f8f8; }
.hero-map-canvas img { width: 100%; height: 100%; display: block; object-fit: contain; }
.hero-map-legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 24px; margin-top: 14px; color: #dce1e3; font-size: 10px; font-weight: 700; }
.hero-map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.hero-map-legend i { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(227,22,32,.14); }
.hero-map-legend span:last-child i { background: #dfe3e5; box-shadow: 0 0 0 4px rgba(223,227,229,.1); }

.service-proof-section { position: relative; z-index: 3; padding: 72px max(3vw, 24px) 94px; background: #f4f5f5; }
.service-proof-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; max-width: 1760px; margin: 0 auto 28px; }
.service-proof-heading .kicker { grid-column: 1; grid-row: 1; }
.service-proof-heading h2 { grid-column: 1; grid-row: 2; margin: 7px 0 0; color: var(--navy); font-size: clamp(30px, 3vw, 46px); letter-spacing: -.045em; }
.service-proof-heading > p { grid-column: 2; grid-row: 1 / 3; align-self: end; max-width: 420px; margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.6; text-align: right; }
.service-proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; max-width: 1760px; margin: 0 auto; align-items: stretch; }
.proof-card { min-width: 0; min-height: 620px; display: flex; flex-direction: column; padding: 18px; overflow: hidden; border: 1px solid #dfe3e5; border-top: 4px solid var(--red); border-radius: 20px; background: #fff; box-shadow: 0 14px 36px rgba(31,34,37,.08); }
.proof-card-head { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; border-bottom: 1px solid #e8ebec; }
.proof-card-head > span { flex: 0 0 40px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: #e31620; color: #fff; font-size: 12px; font-weight: 900; }
.proof-card-head small, .proof-card-head h3 { display: block; }
.proof-card-head small { color: #e31620; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.proof-card-head h3 { margin: 3px 0 0; color: #25282b; font-size: 18px; line-height: 1.08; letter-spacing: -.03em; }
.proof-intro { margin: 13px 0; color: #6f777c; font-size: 12px; line-height: 1.5; }
.proof-note { display: block; margin-top: auto; padding-top: 14px; color: #8a9296; font-size: 10px; line-height: 1.5; }
.rating-list { display: grid; gap: 7px; }
.service-rating { --rating-width: 0%; display: grid; grid-template-columns: minmax(78px, 1fr) auto auto; align-items: center; gap: 8px; min-height: 46px; padding: 8px 10px; border: 1px solid #e6e9ea; border-radius: 11px; background: #fafbfb; }
.rating-name { color: #303438; font-size: 12px; font-weight: 800; }
.five-stars { position: relative; color: #d7dbdd; font-size: 17px; line-height: 1; letter-spacing: 1px; white-space: nowrap; }
.five-stars::after { content: "★★★★★"; position: absolute; inset: 0 auto 0 0; width: var(--rating-width); overflow: hidden; background: linear-gradient(90deg, #f2c94c 0%, #e6cc3e 35%, #85bb3b 70%, #2ca66a 100%); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.service-rating strong { min-width: 62px; color: #727a7e; font-size: 10px; text-align: right; }
.service-rating.has-rating strong { color: #27784d; }
.proof-card-coverage { min-height: 820px !important; }
.proof-portugal-map { height: 420px; display: grid; place-items: center; margin: 12px 0; padding: 10px; overflow: hidden; border-radius: 15px; background: #f2f4f4; }
.proof-portugal-map img { display: block; width: auto; max-width: 100%; height: 100%; object-fit: contain; object-position: center; }
.coverage-service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; padding: 0 4px; }
.coverage-service-list span { position: relative; padding: 6px 0 6px 12px; border-bottom: 1px solid #edf0f1; color: #4d5559; font-size: 10px; font-weight: 700; }
.coverage-service-list span::before { content: ""; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.coverage-service-list .is-island { color: #b70f17; font-weight: 900; }
.proof-link { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 14px 0 0; border: 0; border-top: 1px solid #e6e9ea; background: transparent; color: #d7111b; font: inherit; font-size: 12px; font-weight: 900; text-decoration: none; cursor: pointer; }
.proof-link:hover span { transform: translateX(3px); }
.proof-link span { transition: transform .2s; }
.proof-brand-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.proof-brand-grid > div { min-width: 0; height: 43px; display: flex; align-items: center; justify-content: center; padding: 7px; border: 1px solid #e6e9ea; border-radius: 10px; background: #fafbfb; }
.proof-brand-grid img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.proof-brand-grid b { color: #34383b; font-size: 10px; line-height: 1.1; text-align: center; }
.proof-card-parts { color: #fff; border-color: #34383b; border-top-color: var(--red); background: radial-gradient(circle at 90% 8%, rgba(227,22,32,.25), transparent 26%), #24272a; }
.proof-card-parts .proof-card-head { border-color: rgba(255,255,255,.12); }
.proof-card-parts .proof-card-head h3 { color: #fff; }
.iberian-map-wrap { position: relative; height: 300px; display: block; margin: 12px 0; padding: 8px 8px 38px; overflow: hidden; border-radius: 15px; background: #f4f5f5; }
.parts-map-grid { width: 100%; height: 100%; display: grid; grid-template-columns: .75fr 1.25fr; gap: 7px; }
.parts-map-grid figure { min-width: 0; height: 100%; display: grid; grid-template-rows: auto minmax(0, 1fr); margin: 0; padding: 7px; overflow: hidden; border: 1px solid #dfe3e5; border-radius: 10px; background: #fff; }
.parts-map-grid figure > span { color: #34383b; font-size: 8px; font-weight: 900; line-height: 1.25; text-align: center; text-transform: uppercase; }
.parts-map-grid img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.parts-map-grid figure:last-child img { filter: grayscale(1) contrast(1.08); }
.island-delivery { position: absolute; left: 10px; right: 10px; bottom: 10px; display: flex; justify-content: center; flex-wrap: wrap; gap: 5px; }
.island-delivery span { padding: 5px 7px; border-radius: 999px; background: rgba(36,39,42,.88); color: #fff; font-size: 8px; font-weight: 800; }
.parts-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.parts-highlights div { min-width: 0; padding: 12px 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.055); text-align: center; }
.parts-highlights strong, .parts-highlights span { display: block; }
.parts-highlights strong { color: #fff; font-size: 16px; }
.parts-highlights span { margin-top: 4px; color: #b4bdc1; font-size: 8px; line-height: 1.25; text-transform: uppercase; }
.proof-card-parts > p { margin: 16px 0 0; color: #c1c8cb; font-size: 12px; line-height: 1.6; }
.parts-channel-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; padding-top: 16px; }
.parts-channel-button { min-width: 0; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px 12px; border-radius: 12px; color: #fff; text-decoration: none; transition: transform .2s, filter .2s; }
.parts-channel-button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.parts-channel-button span, .parts-channel-button small, .parts-channel-button strong { display: block; min-width: 0; }
.parts-channel-button small { margin-bottom: 3px; color: rgba(255,255,255,.72); font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.parts-channel-button strong { overflow: hidden; font-size: 11px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.parts-channel-button b { flex: 0 0 auto; font-size: 15px; }
.parts-channel-store { background: var(--red); }
.parts-channel-whatsapp { background: #168c4f; }
.proof-card-parts .proof-link { margin-top: 9px; color: #fff; border-top-color: rgba(255,255,255,.12); }
.proof-link-primary { margin-top: auto; padding: 14px 15px; border: 0; border-radius: 12px; background: var(--red); color: #fff; }
.map-credit { display: block; margin-top: 9px; color: #7e898e; font-size: 8px; text-align: center; }
.map-credit a { color: inherit; text-decoration-color: rgba(255,255,255,.35); }
.visual-card { position: relative; width: min(100%, 520px); aspect-ratio: .95; overflow: hidden; border-radius: 44px; background: linear-gradient(145deg, #113f50, #062936 72%); box-shadow: 0 35px 80px rgba(8, 43, 58, .28); }
.visual-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 15%, rgba(166,212,49,.25), transparent 35%), linear-gradient(25deg, transparent 40%, rgba(255,255,255,.05)); }
.visual-card::after { content: ""; position: absolute; left: -8%; right: -8%; bottom: -18%; height: 48%; border-radius: 50% 50% 0 0; background: linear-gradient(155deg, #6cae27, #154d3b); transform: rotate(-5deg); opacity: .85; }
.unit { position: absolute; z-index: 2; top: 25%; left: 10%; width: 80%; height: 118px; border-radius: 19px 19px 28px 28px; background: linear-gradient(180deg, #fff, #dfe9e8); box-shadow: 0 24px 38px rgba(0,0,0,.27), inset 0 -2px 0 rgba(2,31,42,.1); }
.unit::before { content: "ELETROVAC"; position: absolute; top: 31px; left: 33px; color: #264c58; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.unit-led { position: absolute; right: 40px; top: 34px; width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.unit-slot { position: absolute; left: 7%; right: 7%; bottom: 18px; height: 13px; border-radius: 3px 3px 14px 14px; background: linear-gradient(180deg, #82969b, #223e48); }
.unit-display { position: absolute; right: 54px; top: 28px; color: #688088; font-size: 14px; font-weight: 500; }
.airflow { position: absolute; z-index: 1; width: 60%; height: 130px; left: 21%; border: 2px solid rgba(97,201,223,.48); border-left: 0; border-right: 0; border-bottom-color: transparent; border-radius: 50%; transform: rotate(3deg); }
.airflow-one { top: 43%; }
.airflow-two { top: 50%; left: 27%; width: 48%; opacity: .65; }
.airflow-three { top: 56%; left: 34%; width: 35%; opacity: .4; }
.comfort-orb { position: absolute; z-index: 2; right: 8%; top: 51%; width: 88px; height: 88px; display: grid; place-items: center; border-radius: 50%; background: rgba(97,201,223,.16); border: 1px solid rgba(121,218,236,.32); backdrop-filter: blur(10px); }
.comfort-orb svg { width: 34px; height: 34px; fill: none; stroke: #9be6f0; stroke-width: 1.2; }
.leaf { position: absolute; z-index: 3; width: 80px; height: 34px; border-radius: 100% 0 100% 0; background: linear-gradient(135deg, #b9de41, #508e20); transform-origin: bottom left; }
.leaf-one { left: 17%; bottom: 11%; transform: rotate(-20deg); }
.leaf-two { left: 29%; bottom: 8%; transform: rotate(18deg) scale(.8); }
.visual-caption { position: absolute; z-index: 4; bottom: 27px; right: 28px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(5,31,41,.7); backdrop-filter: blur(12px); color: #fff; }
.visual-caption strong, .visual-caption small { display: block; }
.visual-caption strong { font-size: 11px; }
.visual-caption small { margin-top: 3px; color: #a9bdc3; font-size: 8px; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(166,212,49,.12); }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.floating-card.google-card { color: inherit; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.floating-card.google-card:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(31,34,37,.18); }
.hero-review-stack { position: absolute; z-index: 5; top: 1%; left: -15%; width: 350px; display: grid; gap: 10px; }
.hero-review-heading { padding: 0 7px 5px; }
.hero-review-heading strong, .hero-review-heading small { display: block; }
.hero-review-heading strong { color: #24272a; font-size: 15px; }
.hero-review-heading small { margin-top: 4px; color: #737b80; font-size: 9px; }
.hero-review-card { min-height: 76px; display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 14px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.9); border-radius: 17px; background: rgba(255,255,255,.96); box-shadow: 0 16px 38px rgba(31,34,37,.15); color: inherit; text-decoration: none; backdrop-filter: blur(12px); transition: transform .2s, box-shadow .2s; }
.hero-review-card:hover { transform: translateX(3px); box-shadow: 0 16px 34px rgba(31,34,37,.18); }
.hero-review-card > span:first-child { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: #e31620; color: #fff; font-size: 15px; font-weight: 900; }
.hero-review-card > span:nth-child(2) { min-width: 0; }
.hero-review-card strong, .hero-review-card small { display: block; }
.hero-review-card strong { color: #24272a; font-size: 13px; }
.hero-review-card small { margin-top: 3px; overflow: hidden; color: #7a8186; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.hero-review-card b { color: #d4141e; font-size: 11px; white-space: nowrap; }
.hero-review-card.verified { border-color: rgba(227,22,32,.22); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { color: var(--navy); font-size: 11px; }
.floating-card small { margin-top: 3px; color: #7a898e; font-size: 8px; }
.floating-card.efficiency { top: 9%; left: -7%; }
.floating-card.efficiency > span { display: grid; place-items: center; width: 47px; height: 47px; border-radius: 13px; background: var(--green); color: var(--navy); font-size: 14px; font-weight: 900; }
.floating-card.support { right: -11%; bottom: -1%; }
.hero-official-card { width: 390px; display: block; color: inherit; text-decoration: none; }
.hero-official-head { display: flex; align-items: center; gap: 10px; }
.hero-official-head > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: #f8e7e8; color: #d4141e; font-size: 15px; font-weight: 900; }
.hero-brand-logos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; margin-top: 12px; }
.hero-brand-logos img, .hero-brand-wordmark { width: 100%; height: 34px; padding: 5px; border: 1px solid #eceff0; border-radius: 7px; background: #fff; object-fit: contain; mix-blend-mode: multiply; }
.hero-brand-wordmark { display: flex; align-items: center; justify-content: center; color: #2c3033; font-size: 7px; font-weight: 900; line-height: 1; text-align: center; }
.hero-official-more { display: block; margin-top: 9px; color: #d4141e; font-size: 7px; font-weight: 800; text-align: right; text-transform: uppercase; letter-spacing: .04em; }

.priority-section { padding: 82px max(7vw, 36px) 42px; background: #fff; }
.priority-heading { max-width: 1220px; margin: 0 auto 34px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr); column-gap: 70px; align-items: end; }
.priority-heading .kicker { grid-column: 1 / -1; }
.priority-heading h2 { max-width: 760px; margin: 0; color: var(--navy); font-size: clamp(34px, 4vw, 54px); line-height: 1.06; letter-spacing: -.045em; }
.priority-heading p { margin: 0 0 5px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.priority-grid { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.priority-card { position: relative; min-width: 0; min-height: 292px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; overflow: hidden; border: 1px solid #dfe2e4; border-radius: 22px; background: #f7f8f8; color: inherit; text-align: left; text-decoration: none; box-shadow: 0 12px 30px rgba(36,39,42,.06); transition: transform .2s, border-color .2s, box-shadow .2s; }
.priority-card:hover { transform: translateY(-5px); border-color: #ef9a9e; box-shadow: 0 22px 44px rgba(36,39,42,.12); }
.priority-index { position: absolute; top: 24px; right: 24px; color: #a2a7ab; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.priority-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 15px; background: #f7dfe1; color: #e31620; font-size: 16px; font-weight: 900; }
.priority-card > strong { color: #25282b; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.priority-card > p { margin: 12px 0 22px; color: #687075; font-size: 11px; line-height: 1.65; }
.priority-card > b { margin-top: auto; color: #d4141e; font-size: 10px; }
.priority-card > b span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.priority-card:hover > b span { transform: translateX(4px); }
.priority-card-primary { border-color: #e31620; background: linear-gradient(145deg, #ef1e28, #c70f18); color: #fff; box-shadow: 0 18px 40px rgba(227,22,32,.2); }
.priority-card-primary:hover { border-color: #b90c14; box-shadow: 0 24px 48px rgba(227,22,32,.3); }
.priority-card-primary::after { content: ""; position: absolute; right: -70px; bottom: -90px; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.04); }
.priority-card-primary .priority-index { color: rgba(255,255,255,.65); }
.priority-card-primary .priority-icon { background: #fff; color: #e31620; }
.priority-card-primary > strong, .priority-card-primary > b { position: relative; z-index: 1; color: #fff; }
.priority-card-primary > p { position: relative; z-index: 1; color: rgba(255,255,255,.8); }
.priority-grid-six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.priority-grid-six .priority-card { min-height: 238px; }
.priority-grid-six .priority-card > p { margin-bottom: 0; font-size: 13px; line-height: 1.65; }
.has-js .reveal-card { opacity: 0; transform: translateY(24px); }
.has-js .reveal-card.is-visible { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1), border-color .2s, box-shadow .2s; }
.priority-actions { max-width: 1220px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 20px auto 0; overflow: hidden; border-radius: 18px; background: #44484c; box-shadow: 0 18px 42px rgba(36,39,42,.14); }
.priority-actions a, .priority-actions button { min-width: 0; min-height: 86px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 18px; border: 0; background: #292c2f; color: #fff; text-align: left; text-decoration: none; transition: background .2s; }
.priority-actions a:hover, .priority-actions button:hover { background: #e31620; }
.priority-actions span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,.1); color: #ff6b72; font-size: 11px; font-weight: 900; }
.priority-actions a:hover span, .priority-actions button:hover span { color: #fff; }
.priority-actions strong { font-size: 13px; line-height: 1.3; }
.priority-actions b { font-size: 18px; transition: transform .2s; }
.priority-actions a:hover b, .priority-actions button:hover b { transform: translateX(4px); }

.solutions { padding: 110px max(7vw, 36px); background: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; max-width: 1220px; margin: 0 auto 46px; }
.section-heading > div { max-width: 650px; }
.section-heading > p { max-width: 430px; margin-bottom: 5px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.kicker { display: block; margin-bottom: 14px; color: var(--green-dark); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-heading h2, .trust-panel h2 { margin-bottom: 0; color: var(--navy); font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1220px; margin: 0 auto; }
.service-types-block { max-width: 1220px; margin: 70px auto 0; padding-top: 56px; border-top: 1px solid #e2e5e7; }
.service-types-block.service-types-first { margin-top: 0; padding-top: 0; border-top: 0; }
.service-types-heading { display: grid; grid-template-columns: 1fr minmax(280px, .55fr); gap: 44px; align-items: end; margin-bottom: 26px; }
.service-types-heading h3 { margin: 0; color: #24272a; font-size: clamp(30px, 3vw, 44px); line-height: 1.08; letter-spacing: -.04em; }
.service-types-heading p { margin: 0 0 4px; color: #666d72; font-size: 14px; line-height: 1.7; }
.service-types-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-type-card { --service-accent: #e31620; min-width: 0; min-height: 520px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dfe2e4; border-top: 4px solid var(--service-accent); border-radius: 22px; background: #fff; box-shadow: 0 16px 38px rgba(36,39,42,.09); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.service-type-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--service-accent) 42%, #dfe2e4); box-shadow: 0 24px 52px rgba(36,39,42,.15); }
.service-type-maintenance { --service-accent: #23866f; }
.service-type-repair { --service-accent: #d2761f; }
.service-type-visual { position: relative; height: 178px; display: block; overflow: hidden; padding: 0; border: 0; background: #292d30; color: #fff; text-align: left; cursor: pointer; }
.service-type-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 26%, rgba(18,22,24,.84) 100%); }
.service-type-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .4s ease; }
.service-type-card:hover .service-type-visual img { transform: scale(1.055); filter: saturate(1.08); }
.service-type-visual-label { position: absolute; z-index: 1; left: 22px; bottom: 19px; font-size: 13px; font-weight: 850; letter-spacing: .02em; }
.service-type-visual-arrow { position: absolute; z-index: 1; right: 18px; top: 18px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(20,24,27,.35); font-size: 18px; backdrop-filter: blur(8px); transition: transform .25s, background .25s; }
.service-type-visual:hover .service-type-visual-arrow { transform: rotate(12deg) scale(1.08); background: var(--service-accent); }
.service-type-card header { display: flex; align-items: center; gap: 14px; margin: 0 26px; padding: 22px 0 18px; border-bottom: 1px solid #dde1e3; }
.service-type-card header > span { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: #e31620; color: #fff; font-size: 13px; font-weight: 900; }
.service-type-card small { display: block; color: #7a8186; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-type-card h4 { margin: 4px 0 0; color: #25282b; font-size: 23px; letter-spacing: -.03em; }
.service-type-card header > span { background: var(--service-accent); }
.service-type-card ul { display: grid; gap: 11px; margin: 22px 26px; padding: 0; list-style: none; }
.service-type-card li { position: relative; padding-left: 18px; color: #555d62; font-size: 14px; line-height: 1.4; }
.service-type-card li::before { content: ""; position: absolute; left: 0; top: .52em; width: 7px; height: 7px; border-radius: 50%; background: var(--service-accent); }
.service-type-actions button span { transition: transform .2s; }
.service-type-actions button:hover span { transform: translateX(4px); }
.service-type-actions { display: grid; gap: 0; margin: auto 26px 24px; border-top: 1px solid #dde1e3; }
.service-type-actions a, .service-type-actions button { min-height: 43px; display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 12px 0; border: 0; border-bottom: 1px solid #e4e7e8; background: transparent; color: var(--service-accent); font-size: 13px; font-weight: 900; text-decoration: none; }
.service-type-actions .service-type-primary { margin-top: 8px; padding: 13px 15px; border: 0; border-radius: 12px; background: var(--service-accent); color: #fff; box-shadow: 0 10px 22px color-mix(in srgb, var(--service-accent) 25%, transparent); transition: transform .2s, filter .2s; }
.service-type-actions .service-type-primary:hover { transform: translateY(-2px); filter: brightness(.96); }
.service-type-actions button:last-child, .service-type-actions a:last-child { border-bottom: 0; }
.service-type-actions a::after { content: "→"; transition: transform .2s; }
.service-type-actions a:hover::after { transform: translateX(4px); }
.equipment-showcase { position: relative; max-width: 1220px; overflow: hidden; margin: 22px auto 0; padding: 34px; border-radius: 24px; background: #25282b; color: #fff; box-shadow: 0 22px 55px rgba(36,39,42,.16); isolation: isolate; }
.equipment-showcase::before { content: ""; position: absolute; width: 430px; height: 430px; right: -170px; top: -230px; z-index: -1; border-radius: 50%; background: rgba(227,22,32,.18); filter: blur(2px); }
.equipment-showcase-topline { display: grid; grid-template-columns: 1fr minmax(280px, .48fr); gap: 40px; align-items: end; margin-bottom: 22px; }
.equipment-showcase .kicker { margin-bottom: 9px; color: #ff4f58; }
.equipment-showcase h3 { margin: 0; color: #fff; font-size: clamp(28px, 3vw, 42px); line-height: 1.06; letter-spacing: -.04em; }
.equipment-showcase-topline p { max-width: 430px; margin: 0 0 4px; color: #c4c8cb; font-size: 13px; line-height: 1.65; }
.equipment-stage { position: relative; height: clamp(250px, 32vw, 390px); overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 18px 18px 8px 8px; background: #ececed; }
.equipment-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(18,19,21,.22)); pointer-events: none; }
.equipment-stage img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .5s; }
.equipment-showcase:hover .equipment-stage img { transform: scale(1.018); filter: contrast(1.02); }
.equipment-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: #4a4d50; }
.equipment-product { position: relative; min-width: 0; height: 100%; overflow: hidden; margin: 0; background: #eef0f1; cursor: zoom-in; }
.equipment-product:focus-visible { z-index: 4; outline: 3px solid #fff; outline-offset: -5px; }
.equipment-product:hover img, .equipment-product:focus-visible img { transform: scale(1.045); filter: contrast(1.04); }
.equipment-product::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(22,24,26,.82) 100%); pointer-events: none; }
.equipment-product img { object-position: center; }
.equipment-product-contain img { object-fit: contain; object-position: center 42%; background: #c8d7df; }
.equipment-product figcaption { position: absolute; left: 18px; right: 18px; bottom: 17px; z-index: 2; display: flex; flex-direction: column; gap: 3px; color: #fff; }
.equipment-product figcaption small { color: #ff747b; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.equipment-product figcaption strong { font-size: 15px; line-height: 1.2; }
.equipment-glow { position: absolute; top: 0; bottom: 0; left: -18%; width: 14%; z-index: 2; opacity: .5; transform: skewX(-16deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); animation: equipment-light 7s 1.2s ease-in-out infinite; pointer-events: none; }
@keyframes equipment-light { 0%, 58% { left: -18%; opacity: 0; } 65% { opacity: .45; } 82% { left: 112%; opacity: .18; } 100% { left: 112%; opacity: 0; } }
.equipment-selector { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; border-radius: 8px 8px 17px 17px; background: #44484b; }
.equipment-selector button { min-width: 0; min-height: 92px; display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; align-content: center; column-gap: 11px; padding: 17px 18px; border: 0; background: #303336; color: #fff; text-align: left; transition: background .25s, transform .25s; }
.equipment-selector button:hover, .equipment-selector button:focus-visible { background: #e31620; outline: none; }
.equipment-selector button > span { grid-row: 1 / 3; width: 32px; height: 32px; display: grid; place-items: center; align-self: center; border-radius: 9px; background: rgba(227,22,32,.18); color: #ff5d65; font-size: 10px; font-weight: 900; transition: background .25s, color .25s; }
.equipment-selector button:hover > span, .equipment-selector button:focus-visible > span { background: #fff; color: #d4141e; }
.equipment-selector strong { min-width: 0; align-self: end; overflow: hidden; color: inherit; font-size: 13px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.equipment-selector small { align-self: start; margin-top: 4px; color: #aeb4b7; font-size: 9px; line-height: 1.25; }
.equipment-selector button:hover small, .equipment-selector button:focus-visible small { color: rgba(255,255,255,.78); }
.equipment-selector b { grid-column: 3; grid-row: 1 / 3; align-self: center; font-size: 17px; transition: transform .2s; }
.equipment-selector button:hover b, .equipment-selector button:focus-visible b { transform: translateX(4px); }

.sales-gallery { max-width: 1220px; margin: 26px auto 0; padding: 34px; border: 1px solid #e1e4e6; border-radius: 24px; background: linear-gradient(145deg, #fff 0%, #f5f6f7 68%, #fff0f1 100%); box-shadow: 0 22px 55px rgba(36,39,42,.1); }
.sales-gallery-heading { display: grid; grid-template-columns: 1fr minmax(280px, .48fr); gap: 40px; align-items: end; margin-bottom: 24px; }
.sales-gallery-heading h3 { max-width: 720px; margin: 7px 0 0; color: #25282b; font-size: clamp(28px, 3vw, 42px); line-height: 1.06; letter-spacing: -.04em; }
.sales-gallery-heading p { max-width: 440px; margin: 0 0 3px; color: #687076; font-size: 13px; line-height: 1.65; }
.sales-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.sales-price-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid #dfe3e5; border-radius: 18px; background: #fff; box-shadow: 0 12px 32px rgba(30,34,37,.07); transition: transform .25s, box-shadow .25s, border-color .25s; }
.sales-price-card:hover { transform: translateY(-4px); border-color: #efafb3; box-shadow: 0 20px 42px rgba(30,34,37,.12); }
.sales-price-copy { flex: 1; padding: 20px 18px 17px; }
.sales-price-copy > small { color: #d4141e; font-size: 14px; font-weight: 900; line-height: 1.25; letter-spacing: .1em; text-transform: uppercase; }
.sales-price-copy h4 { margin: 6px 0 10px; color: #25282b; font-size: 20px; letter-spacing: -.03em; }
.sales-price { display: flex; align-items: baseline; gap: 7px; padding-bottom: 12px; border-bottom: 1px solid #eceeef; }
.sales-price strong { color: #e31620; font-size: clamp(25px, 2.2vw, 34px); line-height: 1; letter-spacing: -.05em; }
.sales-price span { color: #747c81; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.sales-price-copy p { min-height: 64px; margin: 13px 0; color: #677076; font-size: 11px; line-height: 1.55; }
.sales-price-copy p strong { color: #25282b; font-size: 12px; line-height: 1.5; }
.sales-price-copy ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.sales-price-copy li { position: relative; padding-left: 17px; color: #3e4549; font-size: 10px; line-height: 1.35; }
.sales-price-copy li::before { content: "✓"; position: absolute; left: 0; color: #e31620; font-weight: 900; }
.sales-product-actions { display: grid; grid-template-columns: 1fr auto; border-top: 1px solid #e6e8e9; }
.sales-product-actions button, .sales-product-actions a { min-height: 48px; display: flex; align-items: center; justify-content: center; padding: 11px 13px; border: 0; background: #fff; color: #25282b; font-size: 10px; font-weight: 900; text-decoration: none; transition: background .2s, color .2s; }
.sales-product-actions button { background: #e31620; color: #fff; }
.sales-product-actions a { border-left: 1px solid #e6e8e9; }
.sales-product-actions button:hover, .sales-product-actions button:focus-visible { background: #bd0e17; }
.sales-product-actions a:hover, .sales-product-actions a:focus-visible { background: #25282b; color: #fff; }
.sales-price-premium { border-color: #373b3e; background: #25282b; }
.sales-price-premium .sales-price-copy h4, .sales-price-premium .sales-price-copy li { color: #fff; }
.sales-price-premium .sales-price-copy p { color: #bdc2c5; }
.sales-price-premium .sales-price-copy p strong { color: #fff; }
.sales-price-premium .sales-price { border-color: rgba(255,255,255,.12); }
.sales-price-premium .sales-product-actions { border-color: rgba(255,255,255,.14); }
.sales-gallery-note { margin-top: 15px; display: flex; justify-content: space-between; gap: 24px; padding: 15px 18px; border-radius: 13px; background: #25282b; color: #fff; }
.sales-gallery-note strong { color: #ff555e; font-size: 11px; }
.sales-gallery-note span { color: #c7cbce; font-size: 10px; text-align: right; }
.sales-form-notice { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; border: 1px solid #f0c6c9; border-radius: 13px; background: #fff1f2; }
.sales-form-notice strong { color: #d4141e; font-size: 12px; }
.sales-form-notice span { color: #60686d; font-size: 10px; text-align: right; }
.sales-tier-products { min-height: 334px; display: flex; flex-direction: column; gap: 10px; margin: 15px 0 19px; padding-bottom: 18px; border-bottom: 1px solid #eceeef; }
.sales-tier-products > span { color: #858c91; font-size: 11px; font-weight: 800; text-align: center; }
.sales-tier-product { width: 100%; min-height: 76px; display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 13px; padding: 8px 12px 8px 8px; border: 1px solid #d9dddf; border-radius: 14px; background: #fafbfb; color: #25282b; text-align: left; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.sales-tier-product:hover { border-color: #e31620; box-shadow: 0 10px 24px rgba(38,42,45,.10); transform: translateY(-1px); }
.sales-tier-product img { width: 72px; height: 58px; object-fit: contain; border-radius: 10px; background: #fff; }
.sales-tier-product strong, .sales-tier-product small { display: block; }
.sales-tier-product strong { display: -webkit-box; overflow: hidden; font-size: 13px; line-height: 1.25; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.sales-tier-product small { margin-top: 4px; color: #6f777c; font-size: 10px; line-height: 1.35; }
.sales-tier-product b { color: #e31620; font-size: 19px; }
.sales-price-premium .sales-tier-products { border-color: rgba(255,255,255,.12); }
.sales-price-premium .sales-tier-products > span { color: #9fa5a9; }
.sales-price-premium .sales-tier-product { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: #fff; }
.sales-price-premium .sales-tier-product img { background: #fff; }

.catalog-dialog { width: min(94vw, 1120px); max-height: 92vh; overflow: hidden; padding: 0; border: 0; border-radius: 24px; background: #fff; box-shadow: 0 36px 100px rgba(0,0,0,.4); }
.catalog-dialog::backdrop { background: rgba(18,20,22,.82); backdrop-filter: blur(10px); }
.catalog-dialog-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.94); color: #25282b; font-size: 26px; box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.catalog-dialog-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); min-height: 630px; }
.catalog-dialog-media { position: sticky; top: 0; align-self: start; min-width: 0; display: flex; flex-direction: column; padding: 0 24px 24px; background: #eef1f2; }
.catalog-dialog-media > img { width: 100%; min-height: 440px; flex: 1; object-fit: contain; object-position: center top; border-radius: 0 0 17px 17px; background: #fff; }
.catalog-thumbnails { display: flex; gap: 9px; margin-top: 12px; overflow-x: auto; }
.catalog-thumbnails button { flex: 0 0 72px; height: 58px; padding: 3px; border: 2px solid transparent; border-radius: 10px; background: #fff; }
.catalog-thumbnails button.is-active { border-color: #e31620; }
.catalog-thumbnails img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }
.catalog-dialog-copy { overflow-y: auto; padding: 52px 38px 34px; }
.catalog-dialog-copy > span { color: #d4141e; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.catalog-dialog-copy h2 { margin: 9px 0 14px; color: #25282b; font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -.04em; }
.catalog-dialog-copy > p { margin: 0; color: #687076; font-size: 13px; line-height: 1.7; }
.catalog-video { margin-top: 22px; }
.catalog-video > strong { display: block; margin-bottom: 9px; color: #25282b; font-size: 13px; }
.catalog-video-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 14px; background: #181a1c; box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.catalog-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.catalog-video > a { display: inline-flex; margin-top: 9px; color: #d4141e; font-size: 11px; font-weight: 900; text-decoration: none; }
.catalog-specifications { display: grid; gap: 0; margin: 24px 0; border-top: 1px solid #e2e5e6; }
.catalog-spec-group { padding-top: 17px; }
.catalog-spec-group h3 { margin: 0 0 9px; color: #25282b; font-size: 12px; }
.catalog-spec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 8px 0; border-bottom: 1px solid #edf0f1; font-size: 10px; }
.catalog-spec-row span { color: #737b80; }
.catalog-spec-row strong { color: #303539; text-align: right; }
.catalog-sheet-link { display: inline-flex; margin-bottom: 18px; color: #d4141e; font-size: 11px; font-weight: 900; text-decoration: none; }
.catalog-dialog-copy .button { width: 100%; }
.information-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1220px; margin: 22px auto 0; }
.information-strip a { min-height: 190px; display: flex; flex-direction: column; align-items: flex-start; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #f9fcfa; color: inherit; text-decoration: none; transition: transform .2s, border-color .2s, box-shadow .2s; }
.information-strip a:hover { transform: translateY(-4px); border-color: #b4ce7d; box-shadow: 0 16px 34px rgba(8,43,58,.08); }
.information-strip span { color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.information-strip strong { margin-top: 10px; color: var(--navy); font-size: 15px; line-height: 1.35; }
.information-strip small { margin: 9px 0 18px; color: var(--muted); font-size: 10px; line-height: 1.6; }
.information-strip b { margin-top: auto; color: var(--navy); font-size: 10px; }
.official-centre { display: grid; grid-template-columns: .75fr 1.25fr; gap: 38px; align-items: center; max-width: 1220px; margin: 22px auto 0; padding: 38px; border-radius: 22px; background: radial-gradient(circle at 12% 15%, rgba(227,22,32,.18), transparent 35%), #25282b; color: #fff; box-shadow: 0 20px 50px rgba(31,34,37,.15); }
.official-centre-copy > span { color: #ff4a53; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.official-centre-copy h3 { margin: 9px 0 12px; color: #fff; font-size: 25px; line-height: 1.16; letter-spacing: -.03em; }
.official-centre-copy p { color: #b7bdc1; font-size: 10px; line-height: 1.65; }
.official-centre-copy .button { margin-top: 10px; }
.official-promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 19px 0 17px; }
.official-promises span { min-height: 58px; display: flex; flex-direction: column; justify-content: center; padding: 10px; border: 1px solid rgba(255,255,255,.11); border-radius: 11px; background: rgba(255,255,255,.045); color: #aeb8bc; font-size: 7px; line-height: 1.35; }
.official-promises b { display: block; margin-bottom: 3px; color: #fff; font-size: 11px; }
.official-credentials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-bottom: 15px; }
.official-credentials > div { min-width: 0; min-height: 67px; display: grid; align-items: center; gap: 7px; padding: 9px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(255,255,255,.07); }
.official-award { grid-template-columns: 38px 1fr; grid-template-rows: auto auto; }
.official-award > span { grid-row: 1 / 3; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,#ffd65a,#f2a900); color: #4c3310; }
.official-award svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.official-award b, .official-certif b { align-self: end; color: #fff; font-size: 10px; line-height: 1.1; }
.official-award small { align-self: start; color: #c3c9cc; font-size: 7px; line-height: 1.2; }
.official-certif { grid-template-columns: 46px 1fr; }
.official-certif > span { width: 44px; height: 44px; display: grid; place-items: center; border: 2px solid #77a995; border-radius: 50%; box-shadow: inset 0 0 0 3px #25282b, inset 0 0 0 4px #77a995; color: #9ac3b3; font-size: 7px; font-weight: 900; letter-spacing: -.02em; }
.official-partner { grid-template-columns: 1fr; grid-template-rows: 32px auto; justify-items: center; background: #fff !important; }
.official-partner img { width: 100%; height: 29px; object-fit: contain; mix-blend-mode: multiply; }
.official-partner small { color: #697176; font-size: 7px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.official-brand-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.official-brand-item { min-width: 0; height: 66px; display: flex; align-items: center; justify-content: center; padding: 11px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: #fff; box-shadow: 0 8px 16px rgba(0,0,0,.1); }
.official-brand-item img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.official-brand-name { color: #2c3033; font-size: 11px; font-weight: 900; line-height: 1.05; text-align: center; letter-spacing: -.02em; }
.solution-card { position: relative; min-height: 470px; overflow: hidden; padding: 40px; border-radius: var(--radius); color: #fff; isolation: isolate; }
.solution-card::before, .solution-card::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; }
.solution-card::before { width: 420px; height: 420px; right: -160px; top: -130px; border: 1px solid rgba(255,255,255,.13); box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.02); }
.solution-card::after { width: 240px; height: 240px; right: -60px; bottom: -100px; background: rgba(255,255,255,.05); }
.solution-card.cooling { background: linear-gradient(145deg, #0d4256, #062c3c); }
.solution-card.heating { background: linear-gradient(145deg, #355f30, #143d35); }
.solution-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
.solution-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--green); stroke-width: 1.5; }
.heating .solution-icon svg { stroke: #ffc26f; }
.solution-number { position: absolute; top: 46px; right: 46px; color: rgba(255,255,255,.2); font-size: 56px; font-weight: 800; line-height: 1; }
.solution-text { position: absolute; left: 40px; right: 40px; bottom: 37px; }
.solution-text > span { color: #9ac9d3; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.heating .solution-text > span { color: #b7d59d; }
.solution-text h3 { margin: 7px 0 12px; font-size: 30px; letter-spacing: -.03em; }
.solution-text p { max-width: 470px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.65; }
.solution-text ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 0; margin: 19px 0 24px; list-style: none; }
.solution-text li { min-width: 0; min-height: 76px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px; padding: 9px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); font-size: 9px; font-weight: 700; line-height: 1.25; }
.solution-tag-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: rgba(227,22,32,.18); color: #ff5f67; }
.solution-tag-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.solution-text li:hover .solution-tag-icon { background: #e31620; color: #fff; }
.text-link { padding: 0; border: 0; background: transparent; color: var(--green); font-size: 12px; font-weight: 800; }
.heating .text-link { color: #ffc26f; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.work-gallery-section { padding: 96px max(7vw, 36px); background: #24272a; }
.work-gallery-heading { max-width: 1220px; display: grid; grid-template-columns: 1fr minmax(280px, .5fr); align-items: end; gap: 48px; margin: 0 auto 30px; }
.work-gallery-heading h2 { max-width: 760px; margin: 0; color: #fff; font-size: clamp(34px, 4vw, 54px); line-height: 1.06; letter-spacing: -.045em; }
.work-gallery-heading p { margin: 0 0 14px; color: #c4c9cc; font-size: 14px; line-height: 1.7; }
.work-gallery-heading a { color: #ff4a53; font-size: 13px; font-weight: 900; text-decoration: none; }
.work-gallery-grid { max-width: 1220px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 210px; gap: 12px; margin: 0 auto; }
.work-gallery-item { position: relative; min-width: 0; overflow: hidden; padding: 0; border: 0; border-radius: 17px; background: #34383b; color: #fff; text-align: left; isolation: isolate; }
.work-gallery-featured { grid-column: span 2; grid-row: span 2; }
.work-gallery-item::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 38%, rgba(13,15,16,.86) 100%); transition: background .25s; }
.work-gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.work-gallery-item:hover img { transform: scale(1.045); }
.work-gallery-item:hover::after { background: linear-gradient(180deg, rgba(227,22,32,.05), rgba(13,15,16,.9) 100%); }
.work-gallery-item > span { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; display: flex; flex-direction: column; gap: 3px; }
.work-gallery-item small { color: #ff5961; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.work-gallery-item strong { color: #fff; font-size: 16px; }
.gallery-lightbox { position: fixed; inset: 0; z-index: 1100; display: grid; place-content: center; justify-items: center; gap: 14px; padding: 64px 24px 28px; background: rgba(17,19,21,.94); backdrop-filter: blur(14px); }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; display: block; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: #1c1e20; box-shadow: 0 30px 80px rgba(0,0,0,.48), 0 0 70px rgba(227,22,32,.08); }
.gallery-lightbox > strong { color: #fff; font-size: 14px; text-align: center; }
.gallery-lightbox-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 28px; line-height: 1; }
.coverage-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; max-width: 1220px; margin: 0 auto; padding: 100px max(4vw, 24px); }
.coverage-copy h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(38px, 4.5vw, 60px); line-height: 1.02; letter-spacing: -.05em; }
.coverage-copy > p { max-width: 510px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.coverage-count { display: flex; align-items: center; gap: 14px; margin: 24px 0 22px; }
.coverage-count > strong { color: var(--red); font-size: 46px; line-height: 1; letter-spacing: -.05em; }
.coverage-count > span { color: var(--navy); font-size: 11px; font-weight: 800; line-height: 1.25; text-transform: uppercase; letter-spacing: .06em; }
.coverage-count small { display: block; margin-top: 5px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .03em; }
.coverage-copy h3 { margin: 0 0 10px; color: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.coverage-districts { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 30px; }
.coverage-districts span { padding: 8px 11px; border: 1px solid rgba(227,22,32,.28); border-radius: 999px; background: #fff6f6; color: #b70f17; font-size: 8px; font-weight: 800; }
.coverage-map-card { position: relative; min-height: 700px; overflow: hidden; padding: 28px; border-radius: 28px; background: radial-gradient(circle at 80% 14%, rgba(227,22,32,.22), transparent 30%), #24272a; box-shadow: 0 28px 70px rgba(31,34,37,.2); }
.coverage-map-heading { position: relative; z-index: 2; }
.coverage-map-heading span, .coverage-map-heading strong { display: block; }
.coverage-map-heading span { color: #ff626a; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.coverage-map-heading strong { margin-top: 6px; color: #fff; font-size: 17px; }
.portugal-map-figure { margin: 20px 0 12px; }
.portugal-map-frame { display: grid; place-items: center; min-height: 530px; padding: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: #f6f7f7; }
.portugal-map { width: 100%; height: 515px; display: block; object-fit: contain; }
.portugal-map-figure figcaption { margin-top: 8px; color: #c9ced1; font-size: 8px; line-height: 1.4; text-align: center; }
.coverage-legend { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 24px; color: #fff; }
.coverage-legend span { display: flex; align-items: center; gap: 7px; font-size: 9px; font-weight: 800; }
.coverage-legend i { width: 9px; height: 9px; border-radius: 50%; background: #e31620; box-shadow: 0 0 0 4px rgba(227,22,32,.2); }
.coverage-legend .coverage-reference i { background: #dfe3e5; box-shadow: 0 0 0 4px rgba(223,227,229,.12); }
.coverage-note { display: block; max-width: 430px; margin: 12px auto 0; color: #98a2a7; font-size: 7px; line-height: 1.5; text-align: center; }

.trust-section { display: grid; grid-template-columns: 1.1fr .9fr; max-width: 1360px; margin: 0 auto; padding: 72px max(7vw, 36px) 110px; }
.trust-panel { padding: 64px; border-radius: 28px 0 0 28px; background: var(--navy); color: #fff; }
.kicker-light { color: var(--green); }
.trust-panel h2 { color: #fff; }
.trust-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.trust-steps > div { padding-top: 17px; border-top: 1px solid rgba(255,255,255,.17); }
.trust-steps span { display: block; margin-bottom: 24px; color: var(--green); font-size: 10px; font-weight: 800; }
.trust-steps strong, .trust-steps small { display: block; }
.trust-steps strong { margin-bottom: 8px; font-size: 12px; }
.trust-steps small { color: #96abb2; font-size: 9px; line-height: 1.55; }
.review-link { display: inline-block; margin-top: 30px; color: var(--green); font-size: 10px; font-weight: 800; text-decoration: none; }
.review-link:hover { color: #c3e65f; }
.review-proof { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin-top: 30px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.06); color: #fff; text-decoration: none; transition: background .2s, transform .2s; }
.review-proof:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.review-stars { color: #ff313b; font-size: 14px; letter-spacing: 2px; white-space: nowrap; }
.review-proof strong, .review-proof small { display: block; }
.review-proof strong { font-size: 10px; }
.review-proof small { margin-top: 4px; color: #9fadb2; font-size: 8px; line-height: 1.45; }
.review-proof b { color: #ff4a53; font-size: 9px; white-space: nowrap; }
.rating-proof { margin-top: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.055); }
.rating-proof-head { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; padding: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.rating-score { width: 70px; height: 70px; display: flex; align-items: baseline; justify-content: center; padding-top: 19px; border-radius: 17px; background: #e31620; color: #fff; box-shadow: 0 12px 25px rgba(227,22,32,.22); }
.rating-score strong { font-size: 24px; line-height: 1; }
.rating-score small { font-size: 9px; font-weight: 800; }
.rating-proof-head > span:last-child strong, .rating-proof-head > span:last-child small { display: block; }
.rating-proof-head > span:last-child strong { font-size: 13px; }
.rating-proof-head > span:last-child small { margin-top: 6px; color: #aeb9bd; font-size: 8px; line-height: 1.5; }
.rating-platforms { display: grid; grid-template-columns: repeat(3, 1fr); }
.rating-platforms a { min-width: 0; display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; align-items: center; gap: 9px; padding: 15px 13px; color: #fff; text-decoration: none; border-right: 1px solid rgba(255,255,255,.09); transition: background .2s; }
.rating-platforms a:last-child { border-right: 0; }
.rating-platforms a:hover { background: rgba(255,255,255,.07); }
.platform-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: #e31620; color: #fff; font-size: 11px; font-weight: 900; }
.rating-platforms a > span:nth-child(2) { min-width: 0; }
.rating-platforms strong, .rating-platforms small { display: block; }
.rating-platforms strong { font-size: 9px; }
.rating-platforms small { margin-top: 3px; overflow: hidden; color: #9fadb2; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.rating-platforms b { color: #ff4a53; font-size: 8px; white-space: nowrap; }
.rating-platforms .verified { background: rgba(227,22,32,.08); }
.rating-note { margin: 0; padding: 9px 16px 11px; border-top: 1px solid rgba(255,255,255,.08); color: #89999f; font-size: 7px; line-height: 1.5; }
.contact-panel { padding: 58px 54px; border: 1px solid #dce6e2; border-left: 0; border-radius: 0 28px 28px 0; background: #fff; }
.contact-panel h3 { margin-bottom: 13px; color: var(--navy); font-size: 28px; letter-spacing: -.03em; }
.contact-panel > p { margin-bottom: 26px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.choice-button { width: 100%; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; padding: 13px; margin-top: 10px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdfc; text-align: left; transition: border .2s, transform .2s, box-shadow .2s; }
.choice-button:hover { transform: translateX(3px); border-color: #abc978; box-shadow: 0 10px 24px rgba(8,43,58,.07); }
.choice-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #edf5e2; }
.choice-icon svg { width: 21px; height: 21px; fill: none; stroke: var(--green-dark); stroke-width: 1.7; }
.choice-button strong, .choice-button small { display: block; }
.choice-button strong { color: var(--navy); font-size: 11px; }
.choice-button small { margin-top: 4px; color: #819097; font-size: 8px; }
.choice-arrow { color: var(--green-dark); font-weight: 800; }

footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; padding: 34px max(7vw, 36px); border-top: 1px solid var(--line); background: #fff; }
footer > p { margin: 0; color: #7b8b91; font-size: 10px; }
.brand-footer { min-width: 0; }
.copyright { text-align: right; }
.footer-full { grid-template-columns: 1.25fr repeat(3, 1fr); align-items: start; gap: 50px; padding-top: 58px; padding-bottom: 28px; background: #061f2a; border: 0; color: #fff; }
.footer-full .brand { color: #fff; }
.footer-brand-block > p { max-width: 230px; margin-top: 18px; color: #91a8b0; font-size: 10px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links strong { margin-bottom: 4px; color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a, .footer-links span { color: #91a8b0; font-size: 9px; line-height: 1.5; text-decoration: none; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #6e8992; font-size: 8px; letter-spacing: .04em; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; padding: 20px; overflow-y: auto; background: rgba(3, 25, 34, .72); backdrop-filter: blur(12px); }
.modal-backdrop[hidden] { display: none; }
.modal { position: relative; width: min(100%, 820px); min-height: 640px; margin: 2vh auto; padding: 34px 40px 32px; border-radius: 26px; background: #fff; box-shadow: 0 40px 100px rgba(1,20,27,.35); animation: modalIn .25s ease-out; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.985); } }
.modal-close { position: absolute; z-index: 2; top: 18px; right: 18px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #eef3f1; color: var(--navy); font-size: 24px; line-height: 1; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding-right: 48px; }
.modal-kicker { display: block; margin-bottom: 6px; color: var(--green-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.modal-header h2 { margin: 0; color: var(--navy); font-size: 27px; letter-spacing: -.03em; }
.step-counter { display: flex; align-items: baseline; gap: 3px; color: #9aa9ae; }
.step-counter strong { color: var(--navy); font-size: 21px; }
.step-counter span { font-size: 11px; }
.progress { height: 4px; overflow: hidden; margin: 22px 0 30px; border-radius: 4px; background: #edf2f0; }
.progress span { display: block; width: 33.333%; height: 100%; border-radius: inherit; background: var(--green); transition: width .3s ease; }
.form-step { display: none; min-height: 395px; }
.form-step.is-active { display: block; animation: stepIn .23s ease-out; }
@keyframes stepIn { from { opacity: 0; transform: translateX(8px); } }
.form-intro h3 { margin-bottom: 6px; color: var(--navy); font-size: 18px; }
.form-intro p { margin-bottom: 22px; color: #7b8b91; font-size: 11px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; display: flex; flex-direction: column; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field > span { color: #3d5660; font-size: 10px; font-weight: 800; }
.field > span small { color: #97a5aa; font-size: 8px; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d7e2de; border-radius: 11px; outline: none; background: #fbfdfc; color: var(--navy); font-size: 12px; transition: border .2s, box-shadow .2s; }
.field input, .field select { height: 45px; padding: 0 13px; }
.field textarea { padding: 12px 13px; resize: vertical; min-height: 92px; }
.file-upload { position: relative; min-height: 92px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 17px; overflow: hidden; border: 1.5px dashed #c8d0d3; border-radius: 13px; background: #f8faf9; text-align: center; transition: border-color .2s, background .2s; }
.file-upload:hover { border-color: #e31620; background: #fff7f7; }
.file-field:has(input.invalid) .file-upload { border-color: #d85a54; background: #fff5f5; }
.file-upload input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; opacity: 0; cursor: pointer; }
.file-upload b { color: #d4141e; font-size: 11px; }
.file-upload small { margin-top: 5px; color: #879196; font-size: 8px; }
.file-help { color: #7b868b; font-size: 8px; line-height: 1.5; }
.file-preview { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 7px; }
.file-preview:empty { display: none; }
.file-preview-item { min-width: 0; overflow: hidden; border: 1px solid #e0e4e5; border-radius: 9px; background: #fff; }
.file-preview-item img { width: 100%; height: 62px; display: block; object-fit: cover; }
.file-preview-item small { display: block; overflow: hidden; padding: 5px; color: #6f797e; font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(166,212,49,.13); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #d85a54; background: #fffafa; }
.char-count { position: absolute; right: 10px; bottom: 8px; color: #9caaae; font-size: 8px; background: #fbfdfc; padding-left: 5px; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; padding-top: 22px; margin-top: 20px; border-top: 1px solid #edf1f0; }
.form-actions .button:last-child { margin-left: auto; }
.review-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; overflow: hidden; padding: 7px 19px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdfc; }
.review-item { padding: 11px 0; border-bottom: 1px solid #e8eeeb; }
.review-item span, .review-item strong { display: block; }
.review-item span { margin-bottom: 3px; color: #8a999e; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.review-item strong { color: var(--navy); font-size: 10px; word-break: break-word; }
.consent { display: flex; gap: 9px; align-items: flex-start; margin-top: 16px; color: #64777f; font-size: 9px; line-height: 1.5; }
.consent input { accent-color: var(--green-dark); margin-top: 1px; }
.test-notice { display: flex; gap: 10px; align-items: center; padding: 11px 13px; margin-top: 14px; border-radius: 10px; background: #fff8e8; color: #725d32; font-size: 8px; }
.test-notice strong { color: #513f1e; }
.form-success { min-height: 485px; padding: 62px 20px 20px; text-align: center; }
.success-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: #edf7d6; }
.success-icon svg { width: 36px; height: 36px; fill: none; stroke: var(--green-dark); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.form-success > span { color: var(--green-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.form-success h3 { margin: 10px 0; color: var(--navy); font-size: 25px; }
.form-success p { max-width: 470px; margin: 0 auto; color: #708188; font-size: 11px; line-height: 1.65; }
.reference { width: min(100%, 350px); margin: 23px auto; padding: 13px; border: 1px dashed #b5c5c0; border-radius: 12px; background: #f9fbfa; }
.reference span, .reference strong { display: block; }
.reference span { color: #8a9a9f; font-size: 8px; text-transform: uppercase; letter-spacing: .09em; }
.reference strong { margin-top: 4px; color: var(--navy); font-size: 15px; letter-spacing: .06em; }

@media (max-width: 1400px) {
  .hero { grid-template-columns: 1fr; }
  .hero-side-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1200px) {
  .site-header nav { position: absolute; top: 82px; left: 18px; right: 18px; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; border: 1px solid #e4e6e8; border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 22px 50px rgba(36,39,42,.15); opacity: 0; visibility: hidden; transform: translateY(-12px) scale(.98); transform-origin: top; transition: opacity .22s ease, transform .22s ease, visibility .22s; }
  .site-header.is-scrolled nav { top: 68px; }
  .site-header nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-header nav a { padding: 14px 16px; border-radius: 11px; font-size: 14px; }
  .site-header nav a:hover, .site-header nav a.is-active { background: #f7e8e9; }
  .site-header nav a::after { display: none; }
  .site-header > .button { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
}

@media (max-width: 1080px) {
  .site-header nav { gap: 18px; }
  .hero { grid-template-columns: 1fr; gap: 35px; padding-left: 5vw; padding-right: 5vw; }
  .hero-visual { min-height: 470px; }
  .hero-side-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-side-cards .proof-card-parts { grid-column: 1 / -1; }
  .service-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .floating-card.efficiency { left: -3%; }
  .floating-card.support { right: -2%; }
  .hero-official-card { width: 350px; }
  .hero-review-stack { left: -3%; width: 310px; }
  .priority-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .priority-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-section { grid-template-columns: 1fr; }
  .trust-panel { border-radius: 28px 28px 0 0; }
  .contact-panel { border: 1px solid #dce6e2; border-top: 0; border-radius: 0 0 28px 28px; }
}

@media (max-width: 840px) {
  .site-header { height: 72px; padding: 0 22px; }
  .site-header nav { position: absolute; top: 72px; left: 14px; right: 14px; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; border: 1px solid #e4e6e8; border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 22px 50px rgba(36,39,42,.15); opacity: 0; visibility: hidden; transform: translateY(-12px) scale(.98); transform-origin: top; transition: opacity .22s ease, transform .22s ease, visibility .22s; }
  .site-header.is-scrolled nav { top: 68px; }
  .site-header nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-header nav a { padding: 14px 16px; border-radius: 11px; font-size: 14px; }
  .site-header nav a:hover, .site-header nav a.is-active { background: #f7e8e9; }
  .site-header nav a::after { display: none; }
  .site-header > .button { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding: 72px 28px 80px; }
  .hero-content { max-width: 720px; }
  .hero-visual { width: min(100%, 620px); min-height: 0; display: grid; padding-top: 0; margin: 0 auto; }
  .hero-map-card { width: 100%; }
  .hero-side-cards { grid-template-columns: 1fr; }
  .hero-side-cards .proof-card-parts { grid-column: auto; }
  .service-proof-heading { grid-template-columns: 1fr; }
  .service-proof-heading .kicker, .service-proof-heading h2, .service-proof-heading > p { grid-column: 1; grid-row: auto; }
  .service-proof-heading > p { text-align: left; }
  .priority-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading { align-items: start; flex-direction: column; }
  .solution-grid { grid-template-columns: 1fr; }
  .service-types-heading { grid-template-columns: 1fr; gap: 14px; }
  .service-types-grid { grid-template-columns: 1fr; }
  .service-type-card { min-height: 0; }
  .equipment-showcase-topline { grid-template-columns: 1fr; gap: 12px; }
  .equipment-selector { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .information-strip { grid-template-columns: 1fr; }
  .official-centre { grid-template-columns: 1fr; }
  .official-brand-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .coverage-section { grid-template-columns: 1fr; padding-top: 75px; }
  .work-gallery-heading { grid-template-columns: 1fr; gap: 16px; }
  .work-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 190px; }
  .work-gallery-featured { grid-column: span 2; grid-row: span 2; }
  .coverage-map-card { width: min(100%, 620px); margin: 0 auto; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p:first-of-type { display: none; }
  .footer-full { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .dev-ribbon { font-size: 9px; letter-spacing: .08em; }
  .brand { min-width: 0; }
  .brand-image { width: 200px; height: 48px; }
  .header-logo-window { width: 200px; height: 47px; }
  .header-logo-window img { top: -27px; left: -40px; width: 278px; }
  .brand strong { font-size: 15px; }
  h1 { font-size: 49px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-copy { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-stats-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-grid article { min-height: 76px; }
  .hero-visual { min-height: 0; padding-top: 0; }
  .hero-map-card { padding: 18px; border-radius: 24px; }
  .hero-map-canvas { height: 430px; padding: 8px; }
  .service-proof-section { padding: 58px 20px 70px; }
  .service-proof-grid { grid-template-columns: 1fr; gap: 18px; }
  .proof-card { min-height: auto; padding: 20px; }
  .proof-card-ratings, .proof-card-coverage, .proof-card-brands, .proof-card-parts { min-height: 660px; }
  .service-rating { grid-template-columns: minmax(78px, 1fr) auto; }
  .service-rating strong { grid-column: 1 / -1; text-align: left; }
  .proof-card-ratings .rating-list { grid-template-columns: 1fr; }
  .coverage-service-list { grid-template-columns: 1fr 1fr; }
  .visual-card { border-radius: 30px; }
  .unit { height: 88px; }
  .unit::before { top: 23px; left: 24px; font-size: 7px; }
  .unit-display { top: 21px; right: 42px; }
  .unit-led { top: 26px; }
  .unit-slot { bottom: 14px; }
  .floating-card { padding: 10px 12px; }
  .hero-review-stack { top: 0; left: 0; width: min(100%, 320px); }
  .hero-review-heading { display: none; }
  .hero-review-card { min-height: 68px; grid-template-columns: 44px 1fr auto; padding: 11px 13px; gap: 10px; }
  .hero-review-card > span:first-child { width: 44px; height: 44px; }
  .floating-card.support { right: 0; bottom: 0; }
  .floating-card.efficiency > span { width: 39px; height: 39px; }
  .hero-official-card { width: 330px; }
  .hero-brand-logos img, .hero-brand-wordmark { height: 29px; }
  .priority-section { padding: 66px 20px 20px; }
  .priority-heading { margin-bottom: 26px; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority-card { min-height: 250px; }
  .priority-grid-six .priority-card { min-height: 220px; }
  .priority-actions { grid-template-columns: 1fr; }
  .priority-actions a, .priority-actions button { min-height: 72px; }
  .solutions { padding: 80px 20px; }
  .equipment-showcase { padding: 22px; }
  .equipment-stage { height: 330px; }
  .equipment-stage img { object-position: center; }
  .equipment-selector { grid-template-columns: 1fr; }
  .equipment-selector button { min-height: 76px; }
  .official-centre { padding: 28px 22px; }
  .official-promises { grid-template-columns: 1fr; }
  .official-promises span { min-height: 0; }
  .official-brand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coverage-section { padding: 70px 20px; gap: 42px; }
  .work-gallery-section { padding: 70px 20px; }
  .work-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .work-gallery-featured { grid-column: auto; grid-row: span 2; }
  .work-gallery-item > span { left: 16px; right: 16px; bottom: 15px; }
  .coverage-map-card { min-height: 620px; padding: 20px; }
  .portugal-map-frame { min-height: 460px; padding: 10px; }
  .portugal-map { height: 445px; }
  .coverage-legend { align-items: flex-start; flex-direction: column; gap: 7px; }
  .solution-card { min-height: 500px; padding: 28px; }
  .solution-text { left: 28px; right: 28px; bottom: 29px; }
  .solution-number { right: 28px; }
  .trust-section { padding: 55px 20px 80px; }
  .trust-panel, .contact-panel { padding: 38px 26px; }
  .trust-steps { grid-template-columns: 1fr; gap: 10px; margin-top: 35px; }
  .trust-steps > div { display: grid; grid-template-columns: 28px 1fr; column-gap: 10px; }
  .trust-steps span { grid-row: 1 / 3; margin: 0; }
  .review-proof { grid-template-columns: 1fr; }
  .rating-platforms { grid-template-columns: 1fr; }
  .rating-platforms a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .rating-platforms a:last-child { border-bottom: 0; }
  footer { grid-template-columns: 1fr; padding: 28px 20px; }
  .footer-full { grid-template-columns: 1fr; gap: 30px; padding-top: 44px; }
  .footer-bottom { grid-column: 1; flex-direction: column; }
  .copyright { text-align: left; }
  .modal-backdrop { padding: 0; }
  .modal { min-height: 100vh; margin: 0; padding: 28px 20px; border-radius: 0; }
  .modal-header { padding-right: 38px; }
  .form-grid, .review-card { grid-template-columns: 1fr; }
  .file-preview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .form-step { min-height: 0; }
  .review-item { padding: 9px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Eletrovac Service — vermelho vivo, cinza técnico e branco */
.dev-ribbon { background: #222528; color: #d9dcde; }
.dev-ribbon span { background: var(--green); box-shadow: 0 0 0 4px rgba(227,22,32,.15); }
.site-header { background: rgba(255,255,255,.94); border-bottom-color: rgba(36,39,42,.1); }
.brand { min-width: 190px; color: #25282b; }
.brand-logo { width: 48px; height: 48px; overflow: hidden; border: 1px solid #e5e6e8; border-radius: 50%; background: #f6f6f6; }
.brand-logo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand strong { color: #e31620; }
.brand small { color: #656a6e; font-weight: 800; }
.site-header nav a { color: #555b60; }
.site-header nav a:hover { color: #e31620; }
.button-primary { color: #fff; background: #e31620; box-shadow: 0 12px 28px rgba(227,22,32,.2); }
.button-primary:hover { color: #fff; background: #c9111a; box-shadow: 0 14px 34px rgba(227,22,32,.27); }
.button-ghost { color: #303438; border-color: #c9cdd0; }
.button-ghost:hover { border-color: #e31620; color: #bd0f18; }
.hero { background: linear-gradient(135deg, #ffffff 0%, #f5f6f7 60%, #eceeef 100%); }
.hero::before { background-image: radial-gradient(rgba(36,39,42,.1) .7px, transparent .7px); }
.hero-glow-one { background: rgba(227,22,32,.09); }
.hero-glow-two { background: rgba(108,114,119,.1); }
.eyebrow { color: #62686d; }
.eyebrow span { background: #e31620; }
h1, .section-heading h2 { color: #24272a; }
h1 em { color: #e31620; }
.hero-copy { color: #61676c; }
.hero-assurance { border-top-color: #dadde0; }
.hero-assurance strong { color: #25282b; }
.visual-card { background: linear-gradient(145deg, #4b5055, #202326 72%); box-shadow: 0 35px 80px rgba(31,34,37,.3); }
.visual-card::before { background: radial-gradient(circle at 78% 15%, rgba(227,22,32,.34), transparent 35%), linear-gradient(25deg, transparent 40%, rgba(255,255,255,.05)); }
.visual-card::after { background: linear-gradient(155deg, #e31620, #7c1016); opacity: .9; }
.unit-led { background: #e31620; box-shadow: 0 0 8px #e31620; }
.airflow { border-color: rgba(238,242,244,.5); border-left: 0; border-right: 0; border-bottom-color: transparent; }
.comfort-orb { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.24); }
.comfort-orb svg { stroke: #f1f3f4; }
.leaf { background: linear-gradient(135deg, #f2464f, #9d0c14); }
.pulse-dot { background: #e31620; box-shadow: 0 0 0 5px rgba(227,22,32,.15); }
.floating-card.efficiency > span { color: #fff; background: #e31620; }
.floating-card.support svg { background: #f5e8e9; stroke: #d41620; }
.kicker, .modal-kicker { color: #d4141e; }
.solution-card.cooling { background: linear-gradient(145deg, #393d41, #202326); }
.solution-card.heating { background: linear-gradient(145deg, #64696d, #34383c); }
.solution-icon svg, .heating .solution-icon svg { stroke: #ff303a; }
.solution-text > span, .heating .solution-text > span { color: #ff8a90; }
.text-link, .heating .text-link { color: #ff4a53; }
.information-strip a { background: #fff; }
.information-strip a:hover { border-color: #e67b80; box-shadow: 0 16px 34px rgba(36,39,42,.09); }
.information-strip span { color: #d4141e; }
.trust-panel { background: #26292c; }
.kicker-light, .trust-steps span, .review-link { color: #ff313b; }
.review-link:hover { color: #ff737a; }
.choice-button:hover { border-color: #e37278; }
.choice-icon { background: #f8e7e8; }
.choice-icon svg { stroke: #d4141e; }
.choice-arrow { color: #d4141e; }
.footer-full { background: #202326; }
.footer-links a:hover { color: #ff3b44; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #e31620; box-shadow: 0 0 0 3px rgba(227,22,32,.12); }
.consent input { accent-color: #e31620; }
.success-icon { background: #f8e7e8; }
.success-icon svg { stroke: #d4141e; }
.form-success > span { color: #d4141e; }
.test-notice { background: #f1f2f3; color: #5f656a; }
.test-notice strong { color: #303438; }

/* Mais cor, sem perder a identidade técnica */
.service-proof-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(227,22,32,.09), transparent 24%),
    linear-gradient(180deg, #f0f1f2 0%, #f7f7f8 100%);
}
.proof-card { border-color: #d8dadd; box-shadow: 0 18px 44px rgba(36,39,42,.09); }
.proof-card-ratings { background: linear-gradient(155deg, #fff 60%, #f9e7e8); }
.proof-card-coverage { background: linear-gradient(155deg, #fff 58%, #eceeef); }
.proof-card-brands { background: linear-gradient(155deg, #fff 62%, #f7e9ea); }
.priority-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(227,22,32,.1), transparent 25%),
    #eef0f1;
}
.priority-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/eletrovac-compromisso-cliente.webp") center 44% / cover no-repeat;
  transform: scale(1.02);
}
.priority-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(241,243,244,.94) 0%, rgba(241,243,244,.84) 48%, rgba(241,243,244,.58) 100%),
    linear-gradient(180deg, rgba(255,255,255,.25), rgba(227,22,32,.08));
}
.priority-heading,
.priority-grid,
.priority-actions { position: relative; z-index: 1; }
.priority-card { border-color: #d7dade; background: #fff; box-shadow: 0 15px 35px rgba(36,39,42,.08); }
.priority-card { background: rgba(255,255,255,.9); backdrop-filter: blur(9px); }
.priority-card:nth-child(2), .priority-card:nth-child(5) { background: rgba(249,237,237,.91); }
.priority-card:nth-child(3), .priority-card:nth-child(6) { background: rgba(233,235,237,.9); }
.solutions {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 32%, rgba(227,22,32,.08), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f3f4f5 48%, #fff 100%);
}
.solutions::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 780px;
  z-index: -2;
  background: url("/assets/eletrovac-areas-principais.webp") center / cover no-repeat;
  transform: scale(1.015);
}
.solutions::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 780px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,.7) 48%, rgba(255,255,255,.78)),
    linear-gradient(180deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.34) 72%, #f5f6f7 100%);
}
.solutions > * { position: relative; z-index: 1; }
.service-type-card:nth-child(1) { background: linear-gradient(180deg, #fff, #fff7f7); }
.service-type-card:nth-child(2) { background: linear-gradient(180deg, #fff, #f2faf7); }
.service-type-card:nth-child(3) { background: linear-gradient(180deg, #fff, #fff8f0); }
.information-strip a:nth-child(1) { background: #f9e9ea; }
.information-strip a:nth-child(2) { background: #eef0f1; }
.information-strip a:nth-child(3) { background: #fff; }
.coverage-section {
  padding-left: clamp(24px, 4vw, 58px);
  padding-right: clamp(24px, 4vw, 58px);
  border: 1px solid #dde0e2;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 12%, rgba(227,22,32,.1), transparent 28%),
    linear-gradient(145deg, #fff, #eceeef);
  box-shadow: 0 22px 60px rgba(36,39,42,.08);
}
.trust-section { margin-top: 70px; border-radius: 30px; background: #e9ebed; }
.contact-panel { background: linear-gradient(145deg, #fff, #f9eded); }

@media (max-width: 1080px) {
  .sales-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sales-tier-products { min-height: 334px; }
}

@media (max-width: 840px) {
  .sales-gallery-heading { grid-template-columns: 1fr; gap: 12px; }
  .catalog-dialog-layout { grid-template-columns: 1fr; }
  .catalog-dialog-media { position: static; padding: 0 16px 18px; }
  .catalog-dialog-media > img { min-height: 300px; object-position: center top; border-radius: 0 0 15px 15px; }
  .catalog-dialog-copy { padding: 30px 24px; }
}

@media (max-width: 600px) {
  .sales-gallery { padding: 22px; }
  .sales-gallery-grid { grid-template-columns: 1fr; }
  .sales-tier-products { min-height: 0; }
  .sales-gallery-note { align-items: flex-start; flex-direction: column; gap: 7px; }
  .sales-gallery-note span { text-align: left; }
}

/* Eletrovac no terreno — fundo dinâmico do início */
.hero { background: #e9ebed; }
.hero-photo-rotator { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #e8eaec; }
.hero-photo-rotator::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 32%, rgba(255,255,255,.55) 53%, rgba(255,255,255,.12) 100%), linear-gradient(180deg, rgba(255,255,255,.12), rgba(36,39,42,.08)); }
.hero-photo-rotator img { position: absolute; inset: -2%; width: 104%; height: 104%; display: block; object-fit: cover; object-position: center; opacity: 0; transform: scale(1.035); animation: hero-terreno 24s infinite; }
.hero-photo-rotator img:nth-child(1) { animation-delay: 0s; object-position: center 56%; }
.hero-photo-rotator img:nth-child(2) { animation-delay: 8s; object-position: center 52%; }
.hero-photo-rotator img:nth-child(3) { animation-delay: 16s; object-position: center; }
@keyframes hero-terreno {
  0% { opacity: 0; transform: scale(1.035); }
  5%, 30% { opacity: 1; }
  36%, 100% { opacity: 0; transform: scale(1.095); }
}
.hero-content { padding: 30px; border: 1px solid rgba(255,255,255,.72); border-radius: 28px; background: rgba(255,255,255,.82); box-shadow: 0 24px 70px rgba(36,39,42,.12); backdrop-filter: blur(14px); }
.hero-side-cards > .proof-card { background-color: rgba(255,255,255,.94); backdrop-filter: blur(8px); }
.hero-side-cards > .proof-card-parts { background-color: rgba(36,39,42,.96); }

@media (max-width: 840px) {
  .coverage-section, .trust-section { border-radius: 0; }
  .hero-photo-rotator::after { background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.7) 38%, rgba(255,255,255,.45) 100%); }
  .hero-content { padding: 24px; }
  .priority-section::before { background-position: 38% center; }
  .priority-section::after { background: rgba(241,243,244,.84); }
  .solutions::before,
  .solutions::after { height: 1280px; }
  .solutions::before { background-position: 42% center; }
  .solutions::after { background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.66) 65%, #f5f6f7 100%); }
  .equipment-product-grid { height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .equipment-product { height: 230px; }
  .equipment-product figcaption { left: 13px; right: 13px; bottom: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-rotator img { animation: none; opacity: 0; transform: none; }
  .hero-photo-rotator img:first-child { opacity: 1; }
}
