:root {
  --yellow: #f0d020;
  --yellow-light: #faec8a;
  --yellow-pale: #fbf7df;
  --ink: #202828;
  --ink-2: #2b3333;
  --ink-3: #485050;
  --muted: #69706b;
  --paper: #fffdf5;
  --surface: #f5f2e3;
  --white: #fff;
  --yellow-dark: #8a6d0a;
  --green: #25d366;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 30px rgba(32, 40, 40, .07);
  --shadow-md: 0 22px 60px rgba(32, 40, 40, .11);
  --shadow-lg: 0 36px 90px rgba(12, 18, 18, .2);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--yellow); color: var(--ink); }
.container { width: min(1220px, 80%); margin-inline: auto; }
.hero .container { width: min(1220px, calc(100% - 48px)); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  transform: translateY(-140%);
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(240, 208, 32, .5);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 3px;
  pointer-events: none;
  background: var(--ink) 0 0 / var(--scroll-progress, 0%) 100% no-repeat;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 82px;
  background: rgba(240, 208, 32, .8);
  box-shadow: 0 12px 35px rgba(32, 40, 40, .08);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: height .3s var(--ease), box-shadow .3s ease, background .3s ease;
}
.header.scrolled {
  background: rgba(240, 208, 32, .45);
  box-shadow: 0 16px 45px rgba(32, 40, 40, .1);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 24px; position: relative; }
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 154px;
  height: auto;
}
.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav a {
  position: relative;
  padding-block: 31px 28px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .35px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-mobile-actions { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: rgba(32, 40, 40, .08);
  cursor: pointer;
}
.menu-toggle svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

/* Buttons */
.btn {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 21px;
  border: 0;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .28), transparent 70%);
  transform: translateX(-110%);
  transition: transform .65s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(110%); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn:focus-visible, .menu-toggle:focus-visible, .portfolio-filter:focus-visible, .modal-close:focus-visible {
  outline: 3px solid rgba(240, 208, 32, .5);
  outline-offset: 3px;
}
.btn-icon { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-icon-circle { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; margin-left: -6px; border-radius: 50%; background: rgba(32, 40, 40, .14); }
.btn-icon-circle .btn-icon { width: 14px; height: 14px; }
.btn-primary { background: var(--ink); color: var(--yellow); box-shadow: 0 12px 28px rgba(32, 40, 40, .2); }
.btn-primary:hover { box-shadow: 0 18px 36px rgba(32, 40, 40, .28); }
.btn-outline { background: rgba(32, 40, 40, .08); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(32, 40, 40, .14); }
.btn-outline:hover { background: rgba(32, 40, 40, .13); }
.btn.compact { min-height: 44px; padding-inline: 14px; font-size: 9px; border-radius: 12px; }
.header-budget-cta { animation: header-cta-pulse 2.1s ease-in-out infinite; }
@keyframes header-cta-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(32, 40, 40, .2), 0 0 0 0 rgba(32, 40, 40, .18); }
  50% { box-shadow: 0 16px 34px rgba(32, 40, 40, .3), 0 0 0 7px rgba(32, 40, 40, 0); }
}
.full { width: 100%; }

/* Hero */
.hero { position: relative; width: 100%; height: min(760px, calc(100svh - 82px)); max-height: calc(100svh - 82px); overflow: hidden; background: var(--paper); }
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('assets/hero-galpao.webp') 62% 40% / cover no-repeat;
  transform: scale(1.10);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 48%, rgba(240, 208, 32, .12), transparent 30%),
    linear-gradient(90deg, rgba(255, 253, 245, .72) 0%, rgba(255, 253, 245, .58) 38%, rgba(255, 253, 245, .14) 60%, rgba(255, 253, 245, .02) 82%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(255, 253, 245, .2));
}
.hero-signature {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: clamp(24px, 4vw, 64px);
  color: rgba(32, 40, 40, .45);
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  text-align: right;
  transform: rotate(-4deg);
}
.hero-content { position: relative; height: 100%; display: flex; align-items: stretch; padding-block: clamp(28px, 6vh, 56px); }
.hero-copy { display: flex; flex-direction: column; justify-content: space-between; height: 100%; max-width: 760px; color: var(--ink); }
.hero-main { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; border-radius: 99px; background: currentColor; }
.eyebrow.dark { color: var(--ink); }
.hero-copy .eyebrow { margin-top: clamp(10px, 2.5vh, 26px); color: var(--yellow); }
.hero h1 {
  max-width: 620px;
  margin: clamp(14px, 3.2vh, 26px) 0 clamp(24px, 4.4vh, 40px);
  font-size: clamp(32px, min(5.8vw, 7.4vh), 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -4px;
  text-wrap: balance;
}
.hero h1 span { color: var(--yellow); }
.hero p { max-width: 610px; margin: 0; color: var(--ink-3); font-size: clamp(14px, 2.2vh, 17px); line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: clamp(26px, 4.6vh, 44px); }
.hero .btn { min-height: 58px; padding-inline: 28px; font-size: 12.5px; border-radius: 16px; }
.hero .btn-icon { width: 20px; height: 20px; }
.hero .btn-primary { background: var(--ink); color: var(--yellow); box-shadow: 0 16px 38px rgba(32, 40, 40, .22); }
.hero .btn-primary .btn-icon-circle { background: rgba(240, 208, 32, .18); }
.hero .btn-outline.light { color: var(--ink); background: rgba(32, 40, 40, .06); box-shadow: inset 0 0 0 1px rgba(32, 40, 40, .18); backdrop-filter: blur(12px); }
.hero .btn-outline.light:hover { background: rgba(32, 40, 40, .1); }
.hero-proofs { display: flex; flex-wrap: wrap; gap: 18px 36px; margin: clamp(16px, 3vh, 30px) 0 0; padding: 0; list-style: none; }
.hero-proofs li { display: flex; align-items: center; gap: 14px; }
.proof-icon { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border-radius: 50%; background: transparent; box-shadow: inset 0 0 0 1.5px rgba(32, 40, 40, .38); }
.proof-icon svg { width: 19px; height: 19px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-proofs li > span:last-child { color: var(--ink); font-size: 12px; font-weight: 700; line-height: 1.55; }


/* Shared sections */
.section { padding-block: 108px; }
.section-light { background: var(--surface); }
.section-dark { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.section-dark::before { content: ''; position: absolute; width: 500px; height: 500px; right: -180px; top: -300px; border-radius: 50%; background: rgba(240, 208, 32, .08); filter: blur(1px); }
.section-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-head h2, .stores-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2.5px;
  text-transform: uppercase;
}
.section-head h2 span, .stores-head h2 span { color: var(--yellow); }
.section-head p { max-width: 630px; margin: 18px auto 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.compact-head { margin-bottom: 36px; }

/* Products */
.product-section { position: relative; overflow: hidden; padding-top: clamp(24px, 4vh, 56px); padding-bottom: 108px; background: linear-gradient(180deg, #f4f1e1 0%, #faf8ee 100%); color: var(--ink); }
.product-intro { display: flex; flex-direction: column; justify-content: flex-start; }
.product-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: clamp(20px, 3vh, 48px); }
.product-header-title .eyebrow { color: var(--yellow-dark); }
.product-header-title h2 { margin: 14px 0 0; color: var(--ink); font-size: clamp(26px, 2.8vw, 38px); font-weight: 800; line-height: 1.08; letter-spacing: -1.6px; text-transform: uppercase; }
.product-header-title h2 span { color: var(--yellow-dark); }
.product-header-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; text-align: right; }
.product-header-meta p { margin: 0; max-width: 380px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.btn-outline-yellow { position: relative; display: inline-flex; align-items: center; padding: 15px 58px 15px 24px; border-radius: 999px; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; white-space: nowrap; transition: background .25s ease, color .25s ease; }
.btn-outline-yellow .featured-badge { position: absolute; right: 4px; top: 50%; width: 40px; height: 40px; margin: 0; transform: translateY(-50%); background: var(--yellow); color: var(--ink); transition: transform .25s var(--ease); }
.btn-outline-yellow:hover .featured-badge { transform: translateY(-50%) translateX(3px); }

.product-showcase { display: grid; grid-template-columns: 1fr 1.7fr; gap: 18px; }
.featured-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(280px, 42vh, 420px);
  border-radius: 20px;
  background: #0d1212 var(--card-image) center / cover no-repeat;
  box-shadow: 0 0 0 2px rgba(240, 208, 32, .55), 0 20px 50px rgba(240, 208, 32, .16), var(--shadow-sm);
  transition: transform .35s var(--ease);
}
.featured-card::before { content: ''; position: absolute; z-index: 1; inset: 0 0 auto; height: 45%; background: linear-gradient(180deg, rgba(0, 0, 0, .4), transparent); }
.featured-tag { position: relative; z-index: 2; display: block; padding: 20px 20px 0 22px; color: rgba(255, 255, 255, .92); font-size: 9px; font-weight: 800; letter-spacing: .8px; line-height: 1.5; text-transform: uppercase; text-shadow: 0 2px 6px rgba(0, 0, 0, .4); }
.featured-tag::before { content: ''; display: block; width: 20px; height: 2px; margin-bottom: 8px; background: currentColor; border-radius: 99px; }
.featured-panel {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 0 0 20px 20px;
  background: rgba(8, 11, 11, .58);
  backdrop-filter: blur(6px);
}
.featured-panel-main { min-width: 0; }
.featured-panel-main h3 { margin: 0 0 5px; color: var(--white); font-size: clamp(16px, 1.7vw, 19px); font-weight: 800; letter-spacing: -.5px; text-shadow: 0 2px 10px rgba(0, 0, 0, .6); }
.featured-panel-main p { margin: 0 0 12px; color: rgba(255, 255, 255, .78); font-size: 10.5px; line-height: 1.4; text-shadow: 0 2px 8px rgba(0, 0, 0, .5); }
.featured-cta { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: 9.5px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }
.featured-cta-icon { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); transition: transform .25s var(--ease); }
.featured-cta-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.featured-cta:hover .featured-cta-icon { transform: translateX(3px); }
.featured-panel-features { display: flex; flex-direction: column; justify-content: center; gap: 9px; margin: 0; padding: 0; list-style: none; }
.featured-panel-features li { display: flex; align-items: center; gap: 7px; white-space: nowrap; color: var(--white); font-size: 7.5px; font-weight: 700; letter-spacing: .2px; line-height: 1.3; text-transform: uppercase; text-shadow: 0 2px 8px rgba(0, 0, 0, .5); }
.featured-panel-features svg { width: 14px; height: 14px; flex: 0 0 auto; fill: none; stroke: var(--yellow); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.product-mini-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.mini-card.wide { grid-column: span 3; }
.mini-card.narrow { grid-column: span 2; }
.mini-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(96px, 15vh, 148px);
  border-radius: 18px;
  background: #111717 var(--card-image) center / cover no-repeat;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease);
}
.mini-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4, 7, 7, .95) 0%, rgba(4, 7, 7, .72) 45%, rgba(4, 7, 7, .2) 78%, rgba(4, 7, 7, .04) 100%); }
.mini-card:hover, .featured-card:hover { transform: translateY(-4px); }

.mini-card-body { position: relative; z-index: 1; padding: 18px 20px; }
.mini-card h3 { margin: 0; color: var(--white); font-size: 12px; font-weight: 800; line-height: 1.25; letter-spacing: -.2px; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0, 0, 0, .5); }

.mini-card-arrow { position: absolute; z-index: 2; right: 14px; bottom: 14px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35); color: var(--white); transition: background .25s ease, color .25s ease, transform .25s var(--ease); }
.mini-card-arrow svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mini-card-arrow:hover { background: var(--yellow); color: var(--ink); transform: scale(1.08); }
.text-link { display: inline-flex; align-items: center; align-self: flex-start; margin-top: auto; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .45px; text-transform: uppercase; }
.text-link::after { content: ''; display: block; width: 0; height: 2px; margin-left: 8px; border-radius: 9px; background: var(--yellow); transition: width .3s var(--ease); }
.text-link:hover::after { width: 28px; }
.featured { box-shadow: 0 22px 55px rgba(240, 208, 32, .15), var(--shadow-sm); }
.badge { position: absolute; top: 16px; right: 16px; z-index: 3; padding: 8px 12px; border-radius: 999px; background: var(--yellow); color: var(--ink); box-shadow: 0 10px 24px rgba(32, 40, 40, .18); font-size: 8px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }

/* Thermo banner */
.thermo-banner-media { position: relative; isolation: isolate; overflow: hidden; min-height: 260px; background: #0d1212 url('assets/thermo-banner.webp') center 58% / cover no-repeat; }
.thermo-banner-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 11, 11, .94) 0%, rgba(8, 11, 11, .8) 42%, rgba(8, 11, 11, .3) 72%, rgba(8, 11, 11, .05) 100%); }
.thermo-banner-copy { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; max-width: 1220px; margin-inline: auto; padding: 40px min(80px, 8vw); }
.thermo-banner-copy h2 { margin: 0; color: var(--white); font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; letter-spacing: -.5px; text-transform: uppercase; }
.thermo-banner-copy p { margin: 12px 0 22px; max-width: 400px; color: rgba(255, 255, 255, .78); font-size: 15px; font-weight: 700; letter-spacing: .3px; line-height: 1.6; text-transform: uppercase; }
.thermo-banner-copy .btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 16px 34px rgba(240, 208, 32, .2); }
.thermo-benefits { background: var(--paper); }
.thermo-benefits-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding-block: 32px; }
.thermo-benefit { display: flex; align-items: flex-start; gap: 14px; }
.thermo-benefit:not(:first-child) { padding-left: 22px; border-left: 1px solid rgba(32, 40, 40, .1); }
.thermo-benefit svg { width: 38px; height: 38px; flex: 0 0 auto; fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.thermo-benefit b { display: block; margin-bottom: 5px; color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }
.thermo-benefit small { display: block; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Portfolio */
.portfolio { position: relative; scroll-margin-top: 100px; }
.portfolio-section { padding-block: clamp(32px, 6vh, 108px); background: #eef0ee; }
.portfolio-head { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 24px; margin-bottom: clamp(20px, 4vh, 44px); }
.portfolio-side-note { justify-self: start; padding-top: 6px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .8px; line-height: 1.6; text-transform: uppercase; }
.portfolio-side-note::after { content: ''; display: block; width: 28px; height: 2px; margin-top: 10px; background: var(--yellow); border-radius: 99px; }
.portfolio-head-center { max-width: 560px; text-align: center; }
.portfolio-dash { display: block; width: 40px; height: 2px; margin: 0 auto 14px; background: var(--yellow); border-radius: 99px; }
.portfolio-head-center h2 { margin: 0; font-size: clamp(28px, min(4vw, 6vh), 52px); font-weight: 800; letter-spacing: -2px; color: var(--ink); }
.portfolio-head-center h2 span { color: var(--yellow); }
.portfolio-head-center p { margin: clamp(8px, 1.6vh, 14px) 0 0; color: var(--muted); font-size: 14px; }
.portfolio-note { justify-self: end; padding-top: 6px; max-width: 200px; color: var(--muted); font-family: 'Caveat', cursive; font-size: 20px; font-weight: 600; line-height: 1.3; text-align: right; transform: rotate(-2deg); }

.portfolio-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: clamp(18px, 3.5vh, 40px); }
.portfolio-filter { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border: 0; border-radius: 999px; background: rgba(32, 40, 40, .06); color: var(--ink-3); font-size: 11px; font-weight: 700; cursor: pointer; transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.portfolio-filter svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.portfolio-filter:hover { background: rgba(32, 40, 40, .1); }
.portfolio-filter.active { background: var(--ink); color: var(--yellow); box-shadow: 0 10px 24px rgba(32, 40, 40, .18); }

.portfolio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.portfolio-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 20px; background: var(--paper); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s ease; }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-card[hidden] { display: none; }
.portfolio-card-photo { position: relative; isolation: isolate; height: clamp(120px, 22vh, 200px); background: #111 var(--card-image) center / cover no-repeat; }
.portfolio-card-badge { position: absolute; z-index: 1; top: 14px; left: 14px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 12px; background: rgba(8, 11, 11, .82); backdrop-filter: blur(4px); color: var(--white); font-size: 8px; font-weight: 800; letter-spacing: .3px; line-height: 1.3; text-transform: uppercase; }
.portfolio-card-badge svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: var(--yellow); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.portfolio-card-body { display: flex; flex: 1; flex-direction: column; padding: clamp(14px, 2.6vh, 22px) 22px clamp(16px, 2.8vh, 24px); }
.portfolio-card-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.portfolio-dash.small { width: 26px; margin: 0 0 10px; }
.portfolio-card-title h3 { margin: 0; color: var(--ink); font-size: 22px; font-weight: 800; letter-spacing: -.6px; }
.portfolio-card-title p { margin: 6px 0 0; max-width: 190px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.portfolio-card-icon { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(32, 40, 40, .18); color: var(--ink-3); }
.portfolio-card-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.portfolio-card-list { display: flex; flex: 1; flex-direction: column; gap: clamp(6px, 1.4vh, 9px); margin: clamp(10px, 2.2vh, 18px) 0 clamp(12px, 2.6vh, 22px); padding: 0; list-style: none; }
.portfolio-card-list li { position: relative; padding-left: 24px; color: var(--ink-3); font-size: 11px; line-height: 1.4; }
.portfolio-card-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 9px; font-weight: 900; line-height: 1; }
.portfolio-card-cta { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px; border-radius: 12px; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; transition: background .25s ease; }
.portfolio-card-cta:hover { background: #000; }
.portfolio-card-cta span { display: inline-block; transition: transform .25s var(--ease); }
.portfolio-card-cta:hover span { transform: translateX(3px); }

.portfolio-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: clamp(20px, 4vh, 44px); padding-top: clamp(16px, 3vh, 32px); box-shadow: inset 0 1px rgba(32, 40, 40, .12); }
.portfolio-bottom-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.portfolio-bottom-item svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: var(--ink-3); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.portfolio-cta { display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; box-shadow: 0 14px 30px rgba(240, 208, 32, .25); transition: transform .25s var(--ease); }
.portfolio-cta:hover { transform: translateY(-2px); }
.portfolio-cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Segments */
.segments-section { background: #fff; }
.segments-head { margin-bottom: clamp(20px, 3.5vh, 36px); }
.segments-head h2 { margin: 0; color: var(--ink); font-size: clamp(26px, 2.8vw, 36px); font-weight: 800; letter-spacing: -1px; }
.segments-head h2 span { color: var(--yellow); }
.segments-head p { margin: 8px 0 0; max-width: 480px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.segments-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.segment-card { position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; min-height: clamp(120px, 20vh, 170px); padding: 14px; border-radius: 14px; background: #111 var(--card-image) center / cover no-repeat; transition: transform .3s var(--ease); }
.segment-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(4, 7, 7, .92) 0%, rgba(4, 7, 7, .4) 55%, rgba(4, 7, 7, .05) 100%); }
.segment-card:hover { transform: translateY(-4px); }
.segment-card svg { width: 20px; height: 20px; margin-bottom: 8px; fill: none; stroke: var(--yellow); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.segment-card span { color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .2px; text-shadow: 0 2px 8px rgba(0, 0, 0, .5); }

/* Benefits */
.benefits-section { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(28px, 5vh, 100px); background: linear-gradient(160deg, #0d1512 0%, #0f1a15 60%, #111d17 100%); color: var(--white); }
.benefits-section::before { content: ''; position: absolute; z-index: -1; top: -180px; right: -180px; width: 560px; height: 560px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(240, 208, 32, .16); background: radial-gradient(circle at 42% 42%, rgba(240, 208, 32, .14), transparent 62%); }
.benefits-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(24px, 4vh, 56px); align-items: start; }
.benefits-intro h2 { margin: clamp(8px, 1.6vh, 16px) 0 clamp(10px, 1.8vh, 18px); font-size: clamp(24px, min(3.6vw, 4.6vh), 50px); font-weight: 800; line-height: 1.02; letter-spacing: -2px; text-transform: uppercase; color: var(--white); }
.benefits-intro h2 span { display: block; color: var(--yellow); }
.benefits-intro > p { margin: 0 0 clamp(14px, 2.4vh, 28px); max-width: 420px; color: rgba(255, 255, 255, .65); font-size: clamp(12px, 1.6vh, 13px); line-height: 1.7; }
.benefits-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-bottom: clamp(16px, 2.8vh, 34px); }
.benefits-actions .btn-primary { background: var(--yellow); color: var(--ink); }
.benefits-actions .text-link { margin-top: 0; align-self: center; }
.text-link.light { color: var(--white); }
.text-link.light::after { background: #fff; }
.benefits-photo { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: flex-end; min-height: clamp(70px, 13vh, 190px); border-radius: 18px; background: #0d1212 var(--card-image) center 65% / cover no-repeat; }
.benefits-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4, 7, 7, .85) 0%, rgba(4, 7, 7, .35) 50%, rgba(4, 7, 7, .1) 100%); }
.benefits-photo-tag { position: relative; z-index: 1; margin: 14px 18px; padding-left: 14px; border-left: 2px solid var(--yellow); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: .6px; line-height: 1.6; text-transform: uppercase; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 1.6vh, 16px); }
.benefit-card { position: relative; isolation: isolate; padding: clamp(12px, 2vh, 26px) 18px; border-radius: 18px; background: rgba(255, 255, 255, .04); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); backdrop-filter: blur(6px); transition: background .3s ease, transform .3s var(--ease); }
.benefit-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .065); }
.benefit-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: clamp(8px, 1.8vh, 22px); }
.benefit-icon { width: clamp(32px, 5.5vh, 44px); height: clamp(32px, 5.5vh, 44px); display: grid; place-items: center; border-radius: 12px; box-shadow: inset 0 0 0 1.5px rgba(240, 208, 32, .5); color: var(--yellow); }
.benefit-icon svg { width: 45%; height: 45%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-num { color: rgba(255, 255, 255, .14); font-size: clamp(17px, 3vh, 26px); font-weight: 800; line-height: 1; }
.benefit-card h3 { margin: 0 0 clamp(3px, .8vh, 8px); color: var(--white); font-size: clamp(13px, 1.9vh, 16px); font-weight: 800; letter-spacing: -.2px; text-transform: none; }
.benefit-card p { margin: 0 0 clamp(8px, 1.6vh, 18px); color: rgba(255, 255, 255, .6); font-size: clamp(10px, 1.4vh, 11.5px); line-height: 1.55; }
.benefit-tag { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .78); font-size: 8.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.benefit-tag::before { content: ''; width: 16px; height: 2px; flex: 0 0 auto; background: var(--yellow); border-radius: 99px; }

.benefits-stats { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 2.5vh, 30px); margin-top: clamp(14px, 3vh, 56px); padding-top: clamp(10px, 2vh, 26px); box-shadow: inset 0 1px rgba(255, 255, 255, .12); }
.benefits-stat { padding-right: 30px; border-right: 1px solid rgba(255, 255, 255, .14); }
.benefits-stat strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 15px; font-weight: 800; letter-spacing: .2px; }
.benefits-stat small { display: block; color: rgba(255, 255, 255, .55); font-size: 9.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; line-height: 1.5; }
.benefits-stats-tag { position: relative; margin-left: auto; padding-left: 24px; color: rgba(255, 255, 255, .55); font-size: 9.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }
.benefits-stats-tag::before { content: ''; position: absolute; left: 0; top: 50%; width: 16px; height: 2px; transform: translateY(-50%); background: var(--yellow); border-radius: 99px; }

/* Company */


/* Local SEO and frequently asked questions */
.seo-local-section { padding: 96px 0; background: var(--paper); scroll-margin-top: 90px; }
.seo-local-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(44px, 7vw, 100px); align-items: start; }
.seo-local-intro { position: sticky; top: 116px; }
.seo-local-intro h2 { max-width: 500px; margin: 12px 0 20px; font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -2.2px; text-transform: uppercase; }
.seo-local-intro p { max-width: 530px; margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; border: 1px solid rgba(32, 40, 40, .1); border-radius: 18px; background: #f8f6e9; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-list details[open] { border-color: rgba(166, 141, 8, .4); box-shadow: var(--shadow-sm); }
.faq-list summary { position: relative; padding: 22px 58px 22px 24px; font-size: 13px; font-weight: 800; line-height: 1.45; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; top: 50%; right: 23px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--yellow); font-size: 20px; font-weight: 500; transform: translateY(-50%); transition: transform .25s var(--ease); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 12px; line-height: 1.75; }

/* About */
.about-section { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; min-height: clamp(320px, 52vh, 460px); background: var(--ink); color: var(--white); }
.about-media { position: absolute; inset: 0; left: 36%; z-index: -1; background: var(--card-image) center / cover no-repeat; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); }
.about-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23, 30, 30, .55) 0%, rgba(23, 30, 30, .1) 40%, transparent 70%), linear-gradient(0deg, rgba(15, 20, 20, .5), transparent 40%); }
.about-layout { position: relative; display: grid; grid-template-columns: 1.3fr auto; gap: 40px; align-items: center; }
.about-copy { max-width: 480px; }
.about-copy h2 { margin: 14px 0 18px; font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; text-transform: uppercase; }
.about-copy p { margin: 0 0 26px; max-width: 420px; color: rgba(255, 255, 255, .68); font-size: 13px; line-height: 1.7; }
.about-copy p .highlight { color: var(--yellow); font-weight: 700; }
.about-copy .btn-primary .btn-icon-circle { background: rgba(240, 208, 32, .18); }
.about-stats { display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 20px 18px; border-radius: 14px; background: rgba(8, 11, 11, .55); backdrop-filter: blur(6px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); list-style: none; }
.about-stats li { display: flex; align-items: center; gap: 12px; }
.about-stats svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: var(--yellow); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.about-stats span { max-width: 130px; color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .3px; line-height: 1.45; text-transform: uppercase; text-shadow: 0 2px 6px rgba(0, 0, 0, .5); }

/* Stores */
.stores-section { padding-block: clamp(60px, 8vh, 100px); background: #fff; color: var(--ink); scroll-margin-top: 90px; }
.stores-section .container { width: min(1400px, 92%); }
.stores-layout { display: flex; align-items: center; gap: 20px; }
.stores-head { flex: 0 0 auto; max-width: 230px; }
.stores-head h2 { margin: 8px 0 0; font-size: clamp(22px, 2vw, 30px); letter-spacing: -1px; line-height: 1.1; white-space: nowrap; }
.stores-nav-btn { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(32, 40, 40, .06); color: var(--ink); cursor: pointer; transition: background .25s ease, color .25s ease; }
.stores-nav-btn:hover { background: var(--yellow); color: var(--ink); }
.stores-nav-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stores-track { flex: 1; min-width: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.store-card { position: relative; isolation: isolate; overflow: hidden; display: flex; aspect-ratio: 1 / 1; flex-direction: column; justify-content: space-between; border-radius: 18px; background: #111717 var(--card-image) center / cover no-repeat; box-shadow: 0 0 0 2px rgba(240, 208, 32, .55); transition: transform .3s var(--ease); }
.store-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(4, 7, 7, .92) 0%, rgba(4, 7, 7, .3) 55%, rgba(4, 7, 7, .05) 100%); }
.store-card:hover { transform: translateY(-6px); }
.store-card-top { padding: 14px; color: var(--white); font-size: 8.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.store-card-body { padding: 14px; }
.store-card-body h3 { margin: 0; color: var(--white); font-size: 14px; font-weight: 800; letter-spacing: -.2px; text-transform: uppercase; }
.store-card-body small { color: rgba(255, 255, 255, .68); font-size: 10px; }
.store-item { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.store-info { display: flex; flex-direction: column; gap: 4px; padding: 0 2px; }
.store-info address { color: var(--muted); font-size: 10px; font-style: normal; line-height: 1.5; }
.store-info a { display: inline-flex; align-self: flex-start; color: var(--ink); font-size: 10.5px; font-weight: 800; box-shadow: inset 0 -1px rgba(32, 40, 40, .25); }
.store-info a:hover { box-shadow: inset 0 -1px var(--ink); }

/* CTA */

/* Footer */
.footer { padding: 60px 0 24px; background: var(--yellow); color: var(--ink); scroll-margin-top: 90px; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 55px; }
.footer-brand { margin-bottom: 24px; }
.footer-brand img { width: 250px; }
.footer p { max-width: 330px; margin: 0; color: var(--ink); font-size: 11px; line-height: 1.7; }
.footer h4 { margin: 0 0 7px; font-size: 10px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a, .footer-grid span { color: var(--ink); font-size: 10px; line-height: 1.5; transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover { color: var(--ink); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 20px; box-shadow: inset 0 1px rgba(32, 40, 40, .15); }
.footer-bottom span { font-size: 9px; color: var(--ink); }

/* Modal and forms */
.modal { display: none; position: fixed; inset: 0; z-index: 110; align-items: center; justify-content: center; padding: 22px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 20, 20, .74); backdrop-filter: blur(10px); }
.modal-card { position: relative; width: min(480px, 100%); max-height: calc(100dvh - 44px); overflow-y: auto; padding: 38px; border-radius: 28px; background: var(--paper); box-shadow: 0 38px 100px rgba(0, 0, 0, .28); }
.order-modal-card { width: min(700px, 100%); padding: 38px 42px 32px; background: linear-gradient(145deg, #fffdf7, #f8f5e8); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 13px; background: rgba(32, 40, 40, .06); font-size: 24px; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s var(--ease); }
.modal-close:hover { background: var(--ink); color: var(--yellow); transform: rotate(5deg); }
.modal-card h2 { margin: 10px 0 10px; padding-right: 30px; font-size: 32px; line-height: 1.05; letter-spacing: -1.4px; }
.modal-card > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.order-modal-intro { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 17px; padding-right: 45px; }
.order-modal-intro h2 { margin: 7px 0 5px; padding: 0; font-size: clamp(30px, 5vw, 38px); }
.order-modal-intro p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.order-modal-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--ink); color: var(--yellow); box-shadow: 0 15px 30px rgba(32, 40, 40, .16); }
.order-modal-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.modal form { display: grid; gap: 15px; margin: 24px 0 8px; }
.modal .order-form { grid-template-columns: minmax(0, 1fr) 210px; align-items: end; margin-top: 27px; }
.modal label { color: var(--ink-3); font-size: 10px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; }
.modal input, .modal select { width: 100%; margin-top: 8px; padding: 15px 16px; border: 0; border-radius: 13px; outline: 0; background: #f1efe3; color: var(--ink); box-shadow: inset 0 0 0 1px transparent; transition: background .2s ease, box-shadow .2s ease; }
.modal input:focus, .modal select:focus { background: #fff; box-shadow: inset 0 0 0 2px var(--yellow), 0 0 0 4px rgba(240, 208, 32, .14); }
.order-input-wrap { position: relative; display: block; margin-top: 8px; }
.order-input-wrap svg { position: absolute; z-index: 1; top: 50%; left: 16px; width: 20px; height: 20px; transform: translateY(-50%); fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.modal .order-input-wrap input { min-height: 52px; margin: 0; padding-left: 48px; background: rgba(32, 40, 40, .055); font-size: 14px; font-weight: 700; letter-spacing: .3px; }
.order-form .btn { min-height: 52px; justify-content: center; }
.form-note { display: block; margin-top: 14px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.forgot { color: var(--ink); font-size: 10px; font-weight: 800; }
#pedidoForm button:disabled { cursor: wait; opacity: .7; transform: none; }
.order-result { margin-top: 20px; border-radius: 22px; font-size: 11px; line-height: 1.5; animation: result-in .4s var(--ease) both; }
.order-result.error { padding: 17px 18px; background: #fff0ed; color: #8b2720; box-shadow: 0 12px 30px rgba(139, 39, 32, .08); }
.order-result.error strong, .order-result.error span { display: block; }
.order-result.error span { margin-top: 3px; color: #76504d; }
.order-result.success { padding: 20px; background: rgba(255, 255, 255, .78); color: var(--ink); box-shadow: 0 18px 45px rgba(32, 40, 40, .09); }
.order-result-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; }
.order-number { display: flex; align-items: baseline; gap: 7px; }
.order-number > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.order-number > strong { font-size: 17px; letter-spacing: -.4px; }
.order-deadline { justify-self: end; display: flex; align-items: center; gap: 9px; padding: 7px 11px; border-radius: 12px; background: rgba(32, 40, 40, .045); }
.order-deadline > svg { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.order-deadline > span { display: grid; gap: 1px; }
.order-deadline small { color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .35px; line-height: 1.2; text-transform: uppercase; }
.order-deadline strong { font-size: 11px; line-height: 1.2; }
.order-result-head b { width: max-content; max-width: none; display: inline-flex; align-items: center; justify-content: center; justify-self: end; padding: 7px 12px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 8px; line-height: 1.3; text-align: center; text-transform: uppercase; white-space: nowrap; box-shadow: 0 7px 18px rgba(240, 208, 32, .28); }
.order-progress { margin-top: 19px; padding: 17px 13px 15px; border-radius: 17px; background: rgba(32, 40, 40, .035); }
.timeline-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.timeline-heading > span { color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .65px; text-transform: uppercase; }
.timeline-heading small { color: var(--muted); font-size: 8px; font-weight: 700; }
.timeline-shell { position: relative; }
.timeline-track { position: absolute; top: 20px; right: 8.33%; left: 8.33%; height: 3px; overflow: hidden; border-radius: 99px; background: #dcded7; }
.timeline-track span { position: relative; display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--ink), var(--yellow)); animation: timeline-progress-x var(--timeline-duration) var(--ease) forwards; }
.timeline-track span::after { content: ''; position: absolute; top: 50%; right: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(240, 208, 32, .15), 0 0 14px rgba(240, 208, 32, .8); transform: translateY(-50%); }
.order-progress.unknown .timeline-track span::after { display: none; }
.order-timeline { position: relative; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.timeline-step { display: grid; justify-items: center; gap: 8px; min-width: 0; text-align: center; }
.timeline-node { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: #e7e8e1; color: #979d97; box-shadow: 0 0 0 5px rgba(255, 255, 255, .82); transition: transform .3s var(--ease), color .3s ease, background .3s ease; }
.timeline-node svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.timeline-step.completed .timeline-node { background: var(--ink); color: var(--yellow); }
.timeline-step.current .timeline-node { background: var(--yellow); color: var(--ink); transform: translateY(-2px) scale(1.08); box-shadow: 0 0 0 5px rgba(240, 208, 32, .2), 0 10px 22px rgba(32, 40, 40, .16); }
.timeline-step.completed, .timeline-step.current { animation: timeline-step-arrive .42s var(--ease) both; animation-delay: var(--step-delay); }
.timeline-step.current .timeline-node { position: relative; }
.timeline-step.current .timeline-node::after { content: ''; position: absolute; inset: -6px; border-radius: 18px; box-shadow: 0 0 0 0 rgba(240, 208, 32, .42); animation: timeline-current-pulse 1.7s ease-out infinite; animation-delay: calc(var(--step-delay) + 300ms); }
.timeline-label { max-width: 76px; color: var(--muted); font-size: 9px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.timeline-step.completed .timeline-label { color: var(--ink-3); }
.timeline-step.current .timeline-label { color: var(--ink); font-weight: 800; }
@keyframes result-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes timeline-progress-x { from { width: 0; } to { width: var(--timeline-progress); } }
@keyframes timeline-progress-y { from { height: 0; } to { height: var(--timeline-progress); } }
@keyframes timeline-step-arrive { from { opacity: .28; transform: translateY(7px) scale(.9); } to { opacity: 1; transform: none; } }
@keyframes timeline-current-pulse { 0% { box-shadow: 0 0 0 0 rgba(240, 208, 32, .42); } 70%, 100% { box-shadow: 0 0 0 12px rgba(240, 208, 32, 0); } }

/* WhatsApp */
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 75; isolation: isolate; display: grid; grid-template-columns: 50px auto; align-items: center; gap: 13px; min-height: 66px; padding: 8px 20px 8px 8px; border-radius: 999px; background: var(--ink); color: var(--white); box-shadow: 0 18px 45px rgba(0, 0, 0, .3), inset 0 0 0 1px rgba(255, 255, 255, .08); transition: transform .3s var(--ease), box-shadow .3s ease; }
.whatsapp-float:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(0, 0, 0, .38), inset 0 0 0 1px rgba(255, 255, 255, .08); }
.whatsapp-float svg { width: 50px; height: 50px; padding: 13px; border-radius: 50%; background: var(--green); fill: var(--white); }
.whatsapp-copy { display: flex; flex-direction: column; gap: 3px; white-space: nowrap; }
.whatsapp-copy small { color: rgba(255, 255, 255, .6); font-size: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.whatsapp-copy strong { font-size: 12px; font-weight: 800; }
.whatsapp-float::before { content: ''; position: absolute; z-index: 1; top: 5px; left: 50px; width: 11px; height: 11px; border: 2.5px solid var(--ink); border-radius: 50%; background: #58e887; }
.whatsapp-float.attn { animation: whatsapp-attn .9s var(--ease); }
@keyframes whatsapp-attn {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-7px) scale(1.05); }
  55% { transform: translateY(0) scale(.97); }
  78% { transform: translateY(-2px) scale(1.02); }
}

/* Motion */
.hero-copy > * { opacity: 0; transform: translateY(22px); }
.page-loaded .hero-copy > * { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s var(--ease); }
.page-loaded .hero-copy > :nth-child(2) { transition-delay: .08s; }
.page-loaded .hero-copy > :nth-child(3) { transition-delay: .16s; }
.page-loaded .hero-copy > :nth-child(4) { transition-delay: .24s; }
.page-loaded .hero-copy > :nth-child(5) { transition-delay: .32s; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s var(--ease) var(--reveal-delay, 0ms); }
.reveal.revealed { opacity: 1; transform: none; }
.portfolio-card.filter-in { animation: filter-in .4s var(--ease) both; }
.portfolio-card.filter-out { animation: filter-out .26s var(--ease) both; pointer-events: none; }
@keyframes filter-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(8px) scale(.97); } }
.modal.open .modal-backdrop { animation: fade-in .22s ease both; }
.modal.open .modal-card { animation: modal-in .36s var(--ease) both; }
@keyframes filter-in { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 1260px) {
  .nav { display: none; }
  .menu-toggle { display: grid; order: 3; }
  .header-actions { margin-left: auto; order: 2; }
  .header-actions .btn-outline { display: none; }
  .nav.open { position: absolute; top: calc(100% + 12px); right: 0; width: min(370px, calc(100vw - 32px)); max-height: calc(100dvh - 110px); display: flex; flex-direction: column; align-items: stretch; gap: 4px; overflow-y: auto; margin: 0; padding: 12px; border-radius: 20px; background: rgba(240, 208, 32, .98); box-shadow: 0 28px 75px rgba(32, 40, 40, .25); backdrop-filter: blur(18px); }
  .nav.open a { min-height: 47px; display: flex; align-items: center; padding: 0 14px; border-radius: 12px; font-size: 12px; }
  .nav.open a::after { display: none; }
  .nav.open a:hover, .nav.open a.active { background: rgba(32, 40, 40, .09); }
  .nav-mobile-actions { display: grid; gap: 7px; margin-top: 6px; padding-top: 10px; box-shadow: inset 0 1px rgba(32, 40, 40, .14); }
  .nav-mobile-actions button, .nav-mobile-actions a { min-height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 0; border-radius: 12px; background: rgba(32, 40, 40, .08); color: var(--ink); font-size: 10px; font-weight: 800; text-align: left; text-transform: uppercase; cursor: pointer; }
  .nav-mobile-actions a:last-child { justify-content: space-between; background: var(--ink); color: var(--yellow); }
  .nav-mobile-actions svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .benefits-layout { grid-template-columns: 1fr; gap: 40px; }
  .segments-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-layout { grid-template-columns: 1fr; gap: 30px; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .about-stats li { flex: 1 1 45%; }
  .about-stats span { max-width: none; }
  .stores-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .section { padding-block: 82px; }
  .hero { height: min(680px, calc(100svh - 70px)); max-height: calc(100svh - 70px); }
  .hero h1 { font-size: clamp(46px, 8vw, 64px); }
  .hero-signature { display: none; }
  .product-header { grid-template-columns: 1fr; gap: 20px; }
  .product-header-meta { align-items: flex-start; text-align: left; }
  .product-showcase { grid-template-columns: 1fr; }
  .featured-card { min-height: 240px; }
  .product-mini-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mini-card.wide { grid-column: span 2; }
  .mini-card.narrow { grid-column: span 2; }
  .portfolio-head { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .portfolio-side-note, .portfolio-note { justify-self: center; text-align: center; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .thermo-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 16px; }
  .thermo-benefit:nth-child(3) { padding-left: 0; border-left: 0; }
  .segments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-local-grid { grid-template-columns: 1fr; gap: 38px; }
  .seo-local-intro { position: static; }
  .stores-layout { flex-wrap: wrap; }
  .stores-head { flex: 1 1 100%; max-width: none; margin-bottom: 6px; }
  .stores-head h2 { white-space: normal; }
  .stores-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 80px; }
  .container { width: min(100% - 30px, 1220px); }
  .header { height: 70px; }
  .brand img { width: 138px; }
  .footer-brand img { width: 220px; }
  .header-actions { display: none; }
  .menu-toggle { margin-left: auto; }
  .hero { height: min(650px, calc(100svh - 70px)); max-height: calc(100svh - 70px); }
  .hero-image { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(255, 253, 245, .78), rgba(255, 253, 245, .55)); }
  .hero-content { padding-block: clamp(20px, 4vh, 40px); }
  .hero h1 { font-size: clamp(39px, 11vw, 54px); letter-spacing: -2.7px; }
  .hero p { font-size: 14px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-proofs { display: grid; gap: 10px; }  .section { padding-block: 68px; }
  .section-head { margin-bottom: 36px; }
  .product-section { padding-block: 68px; }
  .product-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-card.wide, .mini-card.narrow { grid-column: span 1; }
  .portfolio-head-center h2 { font-size: 31px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .thermo-banner-media { min-height: 0; }
  .thermo-banner-copy { padding: 32px 20px; text-align: center; align-items: center; }
  .thermo-banner-copy p { max-width: none; }
  .thermo-benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .thermo-benefit:not(:first-child), .thermo-benefit:nth-child(3) { padding-left: 0; border-left: 0; padding-top: 18px; border-top: 1px solid rgba(32, 40, 40, .1); }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-actions { gap: 18px; }
  .benefits-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .benefits-stat { padding-right: 0; border-right: 0; }
  .benefits-stats-tag { margin-left: 0; }
  .segments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .seo-local-section { padding: 68px 0; }
  .seo-local-intro h2 { font-size: 34px; letter-spacing: -1.6px; }
  .faq-list summary { padding: 19px 54px 19px 19px; }
  .faq-list details p { padding: 0 19px 19px; }
  .about-section { min-height: 0; padding-block: 60px; }
  .about-media { position: absolute; inset: 0; left: 0; clip-path: none; opacity: .28; }
  .stores-section { padding-block: 60px; }
  .stores-head { margin-bottom: 16px; }
  .stores-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 24px, 1220px); }
  .hero h1 { font-size: 38px; }
  .section-head h2 { font-size: 32px; letter-spacing: -1.7px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .modal { padding: 12px; }
  .modal-card { max-height: calc(100dvh - 24px); padding: 30px 21px; border-radius: 22px; }
  .order-modal-card { padding: 26px 18px 22px; }
  .order-modal-intro { grid-template-columns: 44px 1fr; gap: 12px; padding-right: 34px; }
  .order-modal-icon { width: 44px; height: 44px; border-radius: 14px; }
  .order-modal-icon svg { width: 21px; height: 21px; }
  .order-modal-intro h2 { margin-top: 5px; font-size: 27px; }
  .order-modal-intro p { font-size: 10px; }
  .modal .order-form { grid-template-columns: 1fr; margin-top: 22px; }
  .order-result.success { padding: 16px; }
  .order-result-head { grid-template-columns: 1fr auto; align-items: center; gap: 10px; }
  .order-number { grid-column: 1; grid-row: 1; }
  .order-result-head b { grid-column: 2; grid-row: 1; text-align: center; }
  .order-deadline { grid-column: 1 / 3; grid-row: 2; justify-self: stretch; }
  .order-progress { padding: 15px; }
  .timeline-shell { padding-block: 2px; }
  .timeline-track { top: 21px; right: auto; bottom: 21px; left: 20px; width: 3px; height: auto; }
  .timeline-track span { width: 100%; height: 0; animation-name: timeline-progress-y; }
  .timeline-track span::after { top: auto; right: 50%; bottom: -3px; transform: translateX(50%); }
  .order-timeline { grid-template-columns: 1fr; gap: 12px; }
  .timeline-step { grid-template-columns: 42px 1fr; align-items: center; justify-items: start; gap: 13px; text-align: left; }
  .timeline-label { max-width: none; font-size: 8px; }
  .whatsapp-float { right: max(13px, env(safe-area-inset-right)); bottom: max(13px, env(safe-area-inset-bottom)); width: 60px; height: 60px; min-height: 60px; grid-template-columns: 1fr; padding: 5px; border-radius: 50%; }
  .whatsapp-copy { display: none; }
  .whatsapp-float svg { width: 50px; height: 50px; }
  .whatsapp-float::before { top: 3px; right: 3px; left: auto; }
}

@media (max-height: 620px) and (orientation: landscape) and (max-width: 900px) {
  .hero { height: calc(100svh - 70px); max-height: calc(100svh - 70px); }
  .hero-content { padding-block: clamp(16px, 4vh, 32px); }
  .nav.open { max-height: calc(100dvh - 86px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-copy > *, .reveal { opacity: 1; transform: none; }
}

/* Primeira dobra: header + hero = uma tela */
@media (min-width: 1001px) and (min-height: 700px) {
  .hero { height: calc(100svh - 82px); min-height: 0; max-height: none; }
  .hero-content { height: 100%; min-height: 0; padding-block: 48px; }
}

/* Telas bem largas: recentraliza o foco da foto do hero, evitando a área borrada à esquerda */
@media (min-width: 1600px) {
  .hero-image { background-position: 74% 42%; }
}
@media (min-width: 1900px) {
  .hero-image { background-position: 82% 44%; }
}
