/* Inove3D - Landing page */
:root {
  --black: #0a0d0f;
  --black-2: #111518;
  --surface: #171b1e;
  --yellow: #ffc400;
  --yellow-2: #ffd84a;
  --white: #f7f7f5;
  --gray: #a8adb0;
  --line: rgba(255,255,255,.12);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0,0,0,.20);
}


/* Aplicacao final do fundo geometrico no cabecalho */
.header {
  overflow: visible;
  isolation: isolate;
  background:
    linear-gradient(135deg, transparent 0 87%, rgba(255,196,0,.96) 87% 100%),
    linear-gradient(45deg, #111416 0 22%, transparent 22% 100%),
    linear-gradient(132deg, #25292b 0 34%, #181b1d 34% 58%, #090b0d 58% 100%);
  border-bottom: 1px solid rgba(255,196,0,.18);
  box-shadow: 0 8px 28px rgba(0,0,0,.24);
}
.header::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:linear-gradient(112deg,transparent 0 57%,rgba(255,255,255,.035) 57% 72%,transparent 72%);
}
.header .nav { position:relative; z-index:1; }
@media (max-width:680px) {
  .header {
    background:
      linear-gradient(135deg, transparent 0 92%, rgba(255,196,0,.96) 92% 100%),
      linear-gradient(45deg, #111416 0 27%, transparent 27% 100%),
      linear-gradient(132deg, #25292b 0 42%, #171a1c 42% 70%, #090b0d 70% 100%);
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], .benefits[id] { scroll-margin-top: 100px; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--yellow); color: #111; padding: 12px 18px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(8,11,13,.85);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 68px; height: 58px; object-fit: cover; border-radius: 8px;
  border: 1px solid rgba(255,196,0,.25);
}
.brand div { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: var(--yellow); font-size: 22px; font-weight: 900; font-style: italic; letter-spacing: -.7px; }
.brand span { font-size: 11px; margin-top: 6px; color: #d8d8d8; }
.menu { display: flex; align-items: center; gap: 28px; }
.menu a { font-size: 13px; font-weight: 700; color: #e8e8e8; position: relative; }
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: -10px; width: 0; height: 2px;
  background: var(--yellow); transition: .25s;
}
.menu a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; padding: 5px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px; background: white; }

.btn {
  min-height: 48px; padding: 0 24px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .2px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn-yellow { color: #101010; background: linear-gradient(135deg, var(--yellow), var(--yellow-2)); box-shadow: 0 10px 30px rgba(255,196,0,.18); }
.btn-outline { border: 1px solid rgba(255,255,255,.45); background: rgba(8,8,8,.45); }
.btn-dark { background: #111518; color: white; border: 1px solid rgba(255,255,255,.12); }

.hero {
  min-height: 800px; position: relative; padding-top: 84px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,196,0,.08), transparent 25%),
    linear-gradient(105deg, #090c0e 0%, #111619 55%, #080a0b 100%);
}
.hero-texture {
  position: absolute; inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(120deg, transparent 0 48%, rgba(255,255,255,.025) 49% 51%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 5px);
}
.hero-grid {
  min-height: 610px; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 50px; position: relative; z-index: 2;
}
.hero-copy { max-width: 600px; }
.eyebrow {
  color: var(--yellow); text-transform: uppercase; letter-spacing: 1.7px;
  font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::after { content: ""; width: 36px; height: 2px; background: var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(46px, 5.5vw, 72px); line-height: .98; letter-spacing: -3px; margin: 26px 0 25px; text-transform: uppercase; text-wrap: balance; }
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero-copy p { color: #c4c7c8; max-width: 520px; line-height: 1.8; font-size: 17px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-art { height: 540px; position: relative; margin-right: calc((100vw - min(1180px, calc(100vw - 40px))) / -2); overflow: hidden; border-radius: 28px 0 0 28px; box-shadow: var(--shadow); }
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #0e1215 0%, transparent 30%), linear-gradient(0deg, rgba(0,0,0,.28), transparent 45%); pointer-events: none; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; }
.hero-badge { position: absolute; z-index: 2; right: 28px; bottom: 26px; padding: 13px 16px; border-radius: 10px; background: rgba(8,11,13,.82); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.15); color: #d9dcdd; font-size: 12px; }
.hero-badge b { color: var(--yellow); }
.concrete-block {
  position: absolute;
  color: rgba(30,30,30,.6);
  font-weight: 900;
  text-shadow: 1px 1px rgba(255,255,255,.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.35) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,.25) 0 1px, transparent 2px),
    linear-gradient(145deg, #b9b9b5, #7d7f7d);
  background-size: 13px 13px, 17px 17px, auto;
  box-shadow: 0 45px 70px rgba(0,0,0,.5), inset 0 0 45px rgba(255,255,255,.15);
}
.block-one {
  width: 380px; height: 185px; top: 52px; right: 2px; border-radius: 5px;
  transform: rotateY(-10deg); display: flex; align-items: center; justify-content: center;
  font-size: 46px; letter-spacing: -2px;
}
.block-two {
  width: 490px; height: 230px; right: 12px; top: 225px; padding: 34px 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; border-radius: 5px;
  transform: rotateY(-8deg);
}
.block-two span {
  display: block; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: linear-gradient(145deg, #2b2b2a, #72736f);
  box-shadow: inset 10px 10px 20px rgba(0,0,0,.5);
}

.benefits {
  position: relative; z-index: 3; margin-top: -25px; min-height: 104px;
  border-radius: 18px; background: rgba(18,22,25,.96); border: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: repeat(4, 1fr); box-shadow: var(--shadow);
}
.benefits article { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 20px; }
.benefits article + article { border-left: 1px solid rgba(255,255,255,.08); }
.benefits article > span { color: var(--yellow); font-size: 12px; font-weight: 900; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,196,0,.38); border-radius: 10px; }
.benefits strong, .benefits small { display: block; }
.benefits strong { font-size: 14px; }
.benefits small { color: var(--gray); margin-top: 5px; font-size: 11px; }

.section { padding: 100px 0; }
.products-section { background: #f6f5f2; color: #121518; }
.products-layout { display: grid; grid-template-columns: .72fr 1.48fr; gap: 65px; align-items: center; }
.section-copy h2, .about-copy h2 {
  font-size: clamp(36px, 4vw, 54px); line-height: 1.08; letter-spacing: -2px; margin: 20px 0;
}
.section-copy p, .about-copy p { line-height: 1.8; color: #666; font-size: 15px; }
.section-copy .btn { margin-top: 22px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
  overflow: hidden; border-radius: 16px; background: #121619; color: white;
  box-shadow: 0 16px 38px rgba(0,0,0,.12); transition: transform .28s, box-shadow .28s;
}
.product-card:focus-within { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,.2); }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,.2); }
.product-visual { height: 210px; transition: transform .5s; }
.product-card:hover .product-visual { transform: scale(1.05); }
.product-info { padding: 18px; }
.product-info h3 { font-size: 16px; margin-bottom: 10px; }
.product-info a { color: var(--yellow); font-size: 12px; font-weight: 700; }

.wall { background: linear-gradient(135deg, rgba(235,235,235,.15), transparent), repeating-linear-gradient(0deg,#c8c8c4 0 28px,#9c9e9c 29px 31px); }
.tactile { background: linear-gradient(90deg, transparent 0 45%, #ffca16 45% 58%, transparent 58%), linear-gradient(0deg, transparent 0 45%, #ffca16 45% 58%, transparent 58%), #34393b; }
.sink { background: radial-gradient(ellipse at center, #202427 0 35%, #8b8d8a 36% 46%, #c8c7c2 47% 67%, #676965 68%); }
.mortar { background: linear-gradient(145deg, #ece8df, #bfb9ac); position: relative; }
.mortar::after { content: "COBOGÓS"; display: grid; place-items: center; height: 100%; color: #1a1d1f; font-size: 20px; font-weight: 900; letter-spacing: 2px; }
.draining { background: repeating-linear-gradient(90deg,#6d726e 0 14px,#1e2422 14px 23px), linear-gradient(#4d8c32,#4d8c32); }
.coating { background: linear-gradient(140deg,#d6d1c4 0 49%,#a48969 50% 55%,#ece8dd 56%); }

.about { padding: 0; display: grid; grid-template-columns: 1fr 1fr; background: white; color: #111518; }
.about-image { min-height: 570px; overflow: hidden; background: #d6d6d1; }
.garden-wall {
  width: 100%; height: 100%;
  background:
    linear-gradient(to top, rgba(8,18,10,.42), transparent 44%),
    repeating-linear-gradient(0deg,#cac9c1 0 24px,#a5a59f 25px 27px);
  position: relative;
}
.garden-wall::after {
  content: ""; position: absolute; inset: 45% 5% 0;
  background:
    radial-gradient(ellipse at bottom, #174416 0 22%, transparent 23%) 0 0/80px 160px repeat-x,
    linear-gradient(90deg, #6f746e 0 10%, #40732b 10% 17%, #6f746e 17% 27%, #40732b 27% 34%, #6f746e 34% 100%);
}
.about-copy { padding: 90px clamp(40px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.stats article { border-top: 3px solid var(--yellow); padding-top: 16px; }
.stats strong { display: block; font-size: 28px; }
.stats span { display: block; color: #666; font-size: 12px; margin-top: 5px; }

.cta-section { background: #f6f5f2; padding: 55px 0; }
.cta {
  min-height: 150px; border-radius: 20px; background: linear-gradient(110deg, var(--yellow), #ffe36d);
  color: #111; display: flex; justify-content: space-between; align-items: center; padding: 35px 48px; gap: 30px;
}
.cta > div { display: flex; align-items: center; gap: 24px; }
.cta-icon { width: 68px; height: 68px; border-radius: 50%; background: #111; color: var(--yellow); display: grid; place-items: center; font-size: 28px; }
.cta h2 { margin: 0 0 7px; font-size: 28px; }
.cta p { margin: 0; color: #403c2b; font-size: 14px; }

.footer { padding: 65px 0 22px; background: #0a0d0f; color: #d6d7d7; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 80px; }
.footer p { max-width: 320px; color: #8f9496; line-height: 1.7; margin-top: 22px; }
.footer h3 { color: white; font-size: 13px; text-transform: uppercase; margin: 0 0 20px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 13px; }
.footer-grid a, .footer-grid span { font-size: 13px; color: #aeb2b4; }
.footer-grid a:hover { color: var(--yellow); }
.copyright { border-top: 1px solid var(--line); margin-top: 42px; padding-top: 20px; display:flex; justify-content:center; align-items:center; gap:10px 26px; flex-wrap:wrap; text-align: center; color: #73787a; font-size: 12px; }
.developer-credit strong { color:var(--yellow); font-weight:900; letter-spacing:.4px; }

.floating-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--yellow); color: #111; font-size: 25px; box-shadow: 0 15px 40px rgba(0,0,0,.35);
  animation: pulse 2.2s infinite;
}
.floating-whatsapp span { font-size: 13px; font-weight: 900; letter-spacing: -.5px; }
@keyframes pulse { 50% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(255,196,0,0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
  .nav-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle { position: relative; z-index: 2; }
  .menu-toggle span { transition: transform .25s, opacity .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu {
    position: absolute; top: 84px; left: 20px; right: 20px;
    padding: 22px; border-radius: 15px; background: #111518;
    flex-direction: column; align-items: flex-start;
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s;
  }
  .menu.open { opacity: 1; visibility: visible; transform: none; }
  .hero-grid { grid-template-columns: 1fr; padding: 80px 0 40px; }
  .hero-grid { min-height: auto; }
  .hero-art { display: block; height: 390px; margin: 0; border-radius: 22px; order: 2; }
  .hero-art::after { background: linear-gradient(0deg, rgba(0,0,0,.4), transparent 55%); }
  .benefits { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .benefits article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .benefits article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .products-layout { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 420px; }
}

/* Marca tipográfica inspirada no desenho oficial */
.brand,
.footer-brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0; line-height: 1; }
.brand-word {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 31px;
  font-weight: 900;
  font-style: italic;
  line-height: .82;
  letter-spacing: -2.8px;
  transform: skewX(-5deg);
  filter: drop-shadow(1px 2px 0 rgba(0,0,0,.8));
}
.brand-inove { color: #fff; -webkit-text-stroke: .45px #fff; }
.brand-3d {
  margin-left: 3px;
  color: var(--yellow);
  letter-spacing: -2px;
  -webkit-text-stroke: 1px #7a5c00;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 rgba(0,0,0,.9);
}
.brand-tagline {
  margin-top: 6px;
  padding-left: 2px;
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.2px;
  white-space: nowrap;
}
.brand img,
.footer-brand img { display: none; }
.brand img.brand-logo,
.footer-brand img.brand-logo {
  display: block;
  width: 174px;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  -webkit-mask-image: none;
  mask-image: none;
}
@media (max-width: 680px) {
  .brand-word { font-size: 26px; }
  .brand-tagline { font-size: 7px; margin-top: 5px; }
  .brand img.brand-logo,
  .footer-brand img.brand-logo { width: 142px; height: auto; }
}

/* Fundo geometrico inspirado no cartao digital da Inove3D */
.header {
  overflow: visible;
  isolation: isolate;
  background:
    linear-gradient(135deg, transparent 0 87%, rgba(255,196,0,.96) 87% 100%),
    linear-gradient(45deg, #111416 0 22%, transparent 22% 100%),
    linear-gradient(132deg, #25292b 0 34%, #181b1d 34% 58%, #090b0d 58% 100%);
  border-bottom: 1px solid rgba(255,196,0,.18);
  box-shadow: 0 8px 28px rgba(0,0,0,.24);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0 57%, rgba(255,255,255,.035) 57% 72%, transparent 72%);
}

.header .nav { position: relative; z-index: 1; }

@media (max-width: 680px) {
  .header {
    background:
      linear-gradient(135deg, transparent 0 92%, rgba(255,196,0,.96) 92% 100%),
      linear-gradient(45deg, #111416 0 27%, transparent 27% 100%),
      linear-gradient(132deg, #25292b 0 42%, #171a1c 42% 70%, #090b0d 70% 100%);
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 18px; }
  .menu { top: 72px; }
  .hero { padding-top: 72px; min-height: auto; }
  .hero-grid { min-height: 590px; padding-top: 60px; }
  .hero-grid { padding-bottom: 42px; gap: 36px; }
  .hero-art { height: 310px; border-radius: 18px; }
  .hero-badge { right: 14px; bottom: 14px; }
  h1 { letter-spacing: -2px; }
  .hero-actions .btn { width: 100%; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article { justify-content: flex-start; padding-left: 28px; }
  .benefits article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .section { padding: 75px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { height: 250px; }
  .about-copy { padding: 70px 28px; }
  .stats { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: 32px 25px; }
  .cta > div { align-items: flex-start; }
  .cta-icon { flex: 0 0 auto; width: 54px; height: 54px; }
  .cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
}

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

/* Composição inspirada na referência enviada */
body { background: #080a0c; }
main { display: flex; flex-direction: column; }
.hero { order: 1; min-height: 660px; padding-top: 72px; background: #090c0f; }
.about { order: 2; }
.products-section { order: 3; }
.cta-section { order: 4; }

.header { background: rgba(7,9,11,.96); }
.nav { height: 72px; }
.brand { gap: 9px; }
.brand img {
  width: 72px;
  height: 52px;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
  -webkit-mask-image: radial-gradient(ellipse 74% 68% at center, #000 56%, transparent 100%);
  mask-image: radial-gradient(ellipse 74% 68% at center, #000 56%, transparent 100%);
}
.brand strong { font-size: 20px; }
.brand span { font-size: 9px; }
.menu { gap: 25px; }
.menu a { font-size: 11px; text-transform: uppercase; }
.nav-cta { min-height: 40px; padding-inline: 20px; }

.hero-grid { min-height: 480px; grid-template-columns: .86fr 1.14fr; gap: 25px; }
.hero-copy { padding-left: 28px; }
.hero-copy::before { content: ""; position: absolute; inset: 0 auto 0 calc((100vw - min(1180px, calc(100vw - 40px))) / -2); width: 46vw; background: linear-gradient(90deg, rgba(5,7,9,.85), transparent); z-index: -1; }
.hero-copy { position: relative; z-index: 2; }
h1 { font-size: clamp(52px, 5.5vw, 68px); margin: 18px 0 18px; }
.hero-copy p { max-width: 430px; font-size: 15px; line-height: 1.65; }
.hero-art { height: 480px; align-self: start; margin-right: calc((100vw - min(1180px, calc(100vw - 40px))) / -2); border-radius: 0; box-shadow: none; }
.hero-art::after { background: linear-gradient(90deg, #090c0f 0%, rgba(9,12,15,.15) 42%), linear-gradient(0deg, rgba(0,0,0,.35), transparent 50%); }
.hero-art img { object-position: 63% center; filter: saturate(.72) contrast(1.04); }
.hero-badge { display: none; }

.benefits { min-height: 92px; margin-top: -34px; width: min(1040px, calc(100% - 60px)); border-radius: 9px; background: linear-gradient(110deg,#14181b,#0d1012); }
.benefits article { padding: 17px 15px; }
.benefits article > span { border: 0; font-size: 11px; color: #0b0d0f; background: var(--yellow); width: 30px; height: 30px; border-radius: 50%; }

.about { background: #090c0f; color: var(--white); grid-template-columns: .9fr 1.1fr; padding: 70px max(28px, calc((100vw - 1180px)/2)); gap: 58px; align-items: center; }
.about-image { grid-column: 2; grid-row: 1; min-height: 360px; border-radius: 22px; border-right: 7px solid var(--yellow); border-bottom: 7px solid var(--yellow); }
.about-copy { grid-column: 1; grid-row: 1; padding: 0; }
.about-copy h2 { font-size: clamp(34px, 4vw, 48px); }
.about-copy p { color: #aeb3b6; }
.stats { display: none; }
.garden-wall { background: linear-gradient(to top,rgba(5,10,7,.32),transparent 50%), repeating-linear-gradient(0deg,#c5c4bd 0 23px,#959792 24px 27px); }

.products-section { background: #090c0f; color: var(--white); padding: 0 0 60px; }
.products-layout { display: block; padding: 32px; border-radius: 18px; background: linear-gradient(145deg,#15191d,#101316); border: 1px solid rgba(255,255,255,.04); }
.section-copy { display: grid; grid-template-columns: 1fr auto; align-items: center; margin-bottom: 24px; }
.section-copy .eyebrow { grid-column: 1; }
.section-copy h2 { grid-column: 1; font-size: 36px; margin: 10px 0 0; }
.section-copy p { display: none; }
.section-copy .btn { grid-column: 2; grid-row: 1 / span 2; margin: 0; min-height: 42px; background: transparent; }
.product-grid { grid-template-columns: repeat(3,1fr); gap: 14px; }
.product-card { border-radius: 10px; background: #171b1f; border: 1px solid rgba(255,255,255,.08); box-shadow: none; }
.product-visual { height: 170px; }
.product-info { padding: 14px 16px 16px; }
.product-info h3 { margin-bottom: 8px; }

.cta-section { background: #090c0f; padding: 0 0 55px; }
.cta { border-radius: 16px; min-height: 130px; background: linear-gradient(105deg,#ffd22a,#f4b900); overflow: hidden; position: relative; }
.cta::after { content: ""; position: absolute; inset: 0 0 0 55%; opacity: .12; background: repeating-linear-gradient(135deg,#111 0 18px,transparent 18px 36px); }
.cta > * { position: relative; z-index: 1; }
.cta .btn { min-width: 280px; }

.footer { border-top: 1px solid rgba(255,255,255,.06); }

.footer-map { grid-column: span 2; }
.footer-map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-map-heading h3 { margin: 0; }
.footer-map-heading a { color: var(--yellow); font-size: 11px; font-weight: 700; }
.footer-map iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  filter: grayscale(1) contrast(1.08);
}
.footer-official-links { display:flex; flex-wrap:wrap; gap:9px 18px; margin-top:14px; }
.footer-official-links a { color:#c9cdcf; font-size:10px; }
.footer-official-links a:hover { color:var(--yellow); }
.footer-official-links .sketchup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  margin-top: 3px;
  border: 1px solid var(--yellow);
  border-radius: 9px;
  background: var(--yellow);
  color: #0a0d0f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .25px;
  box-shadow: 0 8px 24px rgba(255,196,0,.16);
  transition: transform .2s ease, background .2s ease;
}
.footer-official-links .sketchup-link:hover {
  color: #0a0d0f;
  background: #ffd43b;
  transform: translateY(-2px);
}
.sketchup-link span { font-size: 17px; }
.sketchup-link strong { font-size: 15px; }

@media (max-width: 980px) {
  .nav { height: 72px; }
  .menu { top: 72px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { padding-left: 0; }
  .hero-copy::before { display: none; }
  .hero-art { margin: 0; border-radius: 18px; }
  .about { grid-template-columns: 1fr; gap: 35px; }
  .about-copy, .about-image { grid-column: 1; }
  .about-copy { grid-row: 1; }
  .about-image { grid-row: 2; }
}

@media (max-width: 680px) {
  .brand div { display: none; }
  .hero { padding-top: 72px; }
  .hero-grid { padding-top: 48px; }
  h1 { font-size: 48px; }
  .benefits { width: calc(100% - 28px); }
  .about { padding: 70px 20px; }
  .about-image { min-height: 300px; }
  .products-layout { padding: 22px 16px; }
  .section-copy { grid-template-columns: 1fr; gap: 18px; }
  .section-copy .btn { grid-column: 1; grid-row: auto; width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { height: 210px; }
  .cta .btn { min-width: 0; }
}

@media (min-width: 681px) {
  .floating-whatsapp { width: 52px; height: 52px; }
}

/* Prévias fotográficas geradas para o catálogo */
.product-visual {
  background-color: #252a2d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Imagens oficiais extraídas do catálogo 2026 */
.wall { background-image: url("assets/produtos-oficiais/revestimento-3d.webp"); }
.tactile { background-image: url("assets/produtos-oficiais/cobogos.webp"); }
.sink { background-image: url("assets/produtos-oficiais/ladrilhos.webp"); }
.mortar { background-image: url("assets/produtos-oficiais/piso-drenante.webp"); }
.draining { background-image: url("assets/produtos-oficiais/piso-tatil.webp"); }
.coating { background-image: url("assets/produtos-oficiais/intertravados.webp"); }
.curb { background-image: url("assets/produtos-oficiais/meio-fio.webp"); }
.hexagonal { background-image: url("assets/produtos-oficiais/concregrama.webp"); }
.garden-plate { background-image: url("assets/produtos-oficiais/tabua-concreto.webp"); }
.channels { background-image: url("assets/produtos-oficiais/chapeu-muro.webp"); }
.bench { background-image: url("assets/produtos-oficiais/cuba-concreto.webp"); }
.cement-tiles { background-image: url("assets/produtos-oficiais/modelo-exclusivo.webp"); }

/* Catálogo compacto */
.product-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product-visual { height: 128px; }
.product-info { padding: 11px 13px 13px; }
.product-info h3 { min-height: 32px; margin-bottom: 5px; font-size: 13px; }
.product-price { display: block; color: #fff; margin-bottom: 7px; font-size: 14px; }
.product-price small { color: #92989b; font-size: 9px; font-weight: 600; }
.product-info a { font-size: 10px; }
.price-note { margin: 16px 2px 0; color: #747a7d; font-size: 10px; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-visual { height: 130px; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { height: 170px; }
}

/* Foto da seção Sobre nós */
.garden-wall {
  background-image: linear-gradient(90deg, rgba(7, 9, 11, .08), transparent 45%), url("assets/sobre-showroom.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.garden-wall::after { display: none; }

.about-photo {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Tema claro no conteúdo; escuro apenas no cabeçalho, hero e rodapé */
.about {
  background: #ffffff;
  color: #121518;
}
.about-copy p { color: #646a6d; }

.products-section {
  background: #ffffff;
  color: #121518;
}
.products-layout {
  background: #f4f4f1;
  border-color: #e3e3de;
  box-shadow: 0 18px 50px rgba(10, 13, 15, .08);
}
.product-card {
  background: #ffffff;
  color: #121518;
  border-color: #deded8;
  box-shadow: 0 8px 24px rgba(10, 13, 15, .07);
}
.product-info h3,
.product-price { color: #121518; }
.product-price small { color: #777d80; }
.product-info a { color: #a87900; }
.section-copy .btn {
  background: #111518;
  color: #ffffff;
}
.price-note { color: #777d80; }

.cta-section { background: #ffffff; }

@media (min-width: 981px) {
  .menu {
    margin-left: auto;
    margin-right: 8px;
  }
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: none;
  fill: currentColor;
  -webkit-mask: none;
  mask: none;
}
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.btn .whatsapp-icon { margin-right: 8px; }
.cta-icon .whatsapp-icon { width: 30px; height: 30px; }
.floating-whatsapp .whatsapp-icon { width: 28px; height: 28px; }

/* Faixa de orçamento escura com desenho de tijolos */
.cta {
  color: #ffffff;
  background:
    linear-gradient(90deg, #0b0e10 0%, #111619 52%, rgba(13, 17, 19, .9) 100%),
    #0b0e10;
  border: 1px solid rgba(255, 196, 0, .22);
  box-shadow: 0 18px 45px rgba(10, 13, 15, .16);
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  z-index: 0;
  opacity: .36;
  background-image: linear-gradient(90deg, rgba(11, 14, 16, .2), transparent), url("assets/padrao-tijolos.svg");
  background-repeat: no-repeat, repeat;
  background-position: left, center;
}
.cta h2 { color: #ffffff; }
.cta h2 em { color: var(--yellow); }
.cta p { color: #c4c8ca; }
.cta-icon { background: var(--yellow); color: #111518; }
.cta .btn {
  background: var(--yellow);
  color: #111518;
  border-color: var(--yellow);
}

/* Vantagens sobre a divisão entre a hero escura e o conteúdo branco */
@media (min-width: 681px) {
  .hero { min-height: 580px; margin-bottom: 0; }
  .benefits {
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-top: 0;
    transform: translate(-50%, 50%);
    z-index: 5;
  }
  .about { padding-top: 116px; }
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: -34px -26px;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image: url("assets/padrao-tijolos.svg");
  background-position: center;
  background-size: 160px 80px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
}

@media (max-width: 680px) {
  .benefits {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
  }
}

/* Responsivo mobile compacto, inspirado na prévia aprovada */
@media (max-width: 680px) {
  html {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }
  main, section, header, footer { max-width: 100%; }
  img, svg { max-width: 100%; }
  .container { width: min(100% - 24px, 560px); }

  .header { height: 64px; }
  .nav { height: 64px; }
  .brand img { width: 96px; height: 48px; object-fit: cover; }
  .menu { top: 64px; left: 12px; right: 12px; padding: 18px; }
  .menu a { width: 100%; padding: 9px 2px; font-size: 12px; }
  .menu-toggle { transform: scale(.86); transform-origin: right center; }

  .hero {
    min-height: 600px;
    padding-top: 64px;
    position: relative;
  }
  .hero-grid {
    min-height: 500px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
  }
  .hero-art {
    position: absolute;
    inset: 0 calc((100vw - 100%) / -2);
    height: 500px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    z-index: 0;
  }
  .hero-art::after {
    background:
      linear-gradient(90deg, rgba(6,8,10,.94) 0%, rgba(6,8,10,.78) 45%, rgba(6,8,10,.2) 100%),
      linear-gradient(0deg, rgba(6,8,10,.55), transparent 55%);
  }
  .hero-art img { object-position: 64% center; }
  .hero-copy {
    width: min(82%, 390px);
    padding: 34px 0 40px;
    z-index: 2;
  }
  .hero-copy::after {
    inset: 5px -30px 5px calc((100vw - 100%) / -2);
    opacity: .32;
    background-size: 128px 64px;
  }
  .hero-copy .eyebrow { font-size: 9px; }
  h1 { margin: 12px 0 14px; font-size: clamp(36px, 11vw, 48px); line-height: .94; letter-spacing: -2px; }
  .hero-copy p { max-width: 330px; font-size: 12px; line-height: 1.55; }
  .hero-actions { gap: 9px; margin-top: 20px; flex-wrap: nowrap; }
  .hero-actions .btn { width: auto; min-height: 40px; padding: 0 14px; font-size: 10px; }

  .benefits {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: calc(100% - 24px);
    min-height: 112px;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    transform: translate(-50%, 50%);
    border-radius: 10px;
    z-index: 5;
  }
  .benefits article { min-height: 56px; padding: 9px 10px; gap: 8px; justify-content: flex-start; }
  .benefits article + article { border-top: 0; }
  .benefits article:nth-child(even) { border-left: 1px solid rgba(255,255,255,.08); }
  .benefits article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.08); }
  .benefits article > span { width: 24px; height: 24px; font-size: 8px; }
  .benefits strong { font-size: 10px; }
  .benefits small { font-size: 8px; }

  .products-section { order: 2; padding: 88px 0 38px; }
  .about { order: 3; }
  .products-layout { padding: 0; background: transparent; border: 0; box-shadow: none; }
  .section-copy { grid-template-columns: 1fr auto; gap: 8px; margin-bottom: 18px; }
  .section-copy .eyebrow { display: none; }
  .section-copy h2 { grid-column: 1; margin: 0; font-size: 26px; }
  .section-copy h2 em { display: block; font-size: 11px; margin-top: 4px; color: #777d80; font-style: normal; font-weight: 500; }
  .section-copy .btn { grid-column: 2; grid-row: 1; width: auto; min-height: 36px; padding: 0 14px; font-size: 9px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .product-grid > *, .product-info, .section-copy > * { min-width: 0; }
  .product-card { border-radius: 8px; }
  .product-visual { height: 112px; }
  .product-info { padding: 9px 10px 10px; }
  .product-info h3 { min-height: 25px; margin-bottom: 4px; font-size: 11px; }
  .product-price { margin-bottom: 5px; font-size: 11px; }
  .product-price small, .product-info a, .price-note { font-size: 8px; }

  .about { padding: 40px 12px; gap: 22px; }
  .about-copy { grid-row: 1; padding: 0; }
  .about-copy h2 { margin: 8px 0 14px; font-size: 27px; }
  .about-copy p { font-size: 11px; line-height: 1.6; }
  .about-image { grid-row: 2; min-height: 220px; border-radius: 14px; border-width: 0 4px 4px 0; }

  .cta-section { padding: 0 12px 32px; }
  .cta { min-height: 0; padding: 22px 18px; gap: 16px; border-radius: 12px; }
  .cta, .about, .products-layout, .footer-grid { width: 100%; max-width: 100%; }
  .cta > div { gap: 11px; }
  .cta-icon { width: 42px; height: 42px; }
  .cta h2 { font-size: 19px; }
  .cta p { font-size: 10px; }
  .cta .btn { min-height: 42px; font-size: 10px; }

  .footer { padding-top: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-map { grid-column: 1 / -1; }
  .footer-map-heading { align-items: flex-start; flex-direction: column; gap: 6px; }
  .footer-map iframe { display: none; }
  .footer-official-links { flex-direction:column; gap:10px; }
  .footer-official-links .sketchup-link { width:100%; min-height:48px; margin-top:4px; }
  .footer-location-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--yellow);
    border-radius: 9px;
    color: #111518 !important;
    background: var(--yellow);
    text-align: center;
  }
  .footer p, .footer a, .footer span { font-size: 10px; }
  .copyright { margin-top: 28px; font-size: 9px; }
  .floating-whatsapp { width: 45px; height: 45px; right: 13px; bottom: 13px; }
}

@media (max-width: 360px) {
  .hero-copy { width: 90%; }
  .hero-actions .btn { padding-inline: 11px; }
  .product-visual { height: 96px; }
}

/* No responsivo, exibe somente o link da localização */
@media (max-width: 980px) {
  .footer-map iframe { display: none !important; }
  .footer-map { grid-column: 1 / -1; }
  .footer-map-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .footer-location-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--yellow);
    border-radius: 9px;
    color: #111518 !important;
    background: var(--yellow);
    text-align: center;
  }
}

/* Refinamento móvel validado visualmente */
@media (max-width: 680px) {
  .section-copy {
    align-items: center;
    column-gap: 16px;
    row-gap: 12px;
  }
  .section-copy h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    line-height: 1;
  }
  .section-copy h2 em {
    display: block;
    margin: 0;
    line-height: 1.35;
  }
  .section-copy .btn {
    align-self: center;
  }
  .product-info h3 { line-height: 1.35; }
  .product-price { line-height: 1.4; }
  .product-info a { display: inline-block; line-height: 1.4; }
  .about-copy .eyebrow { display: inline-block; margin-bottom: 2px; }
  .about-copy h2 { line-height: 1.08; }
  .footer-official-links { gap: 12px; }
  .footer-official-links a { line-height: 1.45; }
}
/* Titulo de produtos no celular: uma unica linha, mantendo o destaque amarelo */
@media (max-width: 680px) {
  .section-copy h2 {
    display: block;
    white-space: nowrap;
    line-height: 1.05;
  }

  .section-copy h2 em {
    display: inline;
    margin: 0 0 0 .16em;
    color: var(--yellow);
    font-size: inherit;
    font-weight: inherit;
    font-style: normal;
    line-height: inherit;
  }
}

/* Fundo geometrico definitivo do cabecalho */
.header {
  overflow: visible;
  isolation: isolate;
  background:
    linear-gradient(135deg, transparent 0 87%, rgba(255,196,0,.96) 87% 100%),
    linear-gradient(45deg, #111416 0 22%, transparent 22% 100%),
    linear-gradient(132deg, #25292b 0 34%, #181b1d 34% 58%, #090b0d 58% 100%);
  border-bottom: 1px solid rgba(255,196,0,.18);
  box-shadow: 0 8px 28px rgba(0,0,0,.24);
}
.header::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:linear-gradient(112deg,transparent 0 57%,rgba(255,255,255,.035) 57% 72%,transparent 72%);
}
.header .nav { position:relative; z-index:1; }
@media (max-width:680px) {
  .header {
    background:
      linear-gradient(135deg, transparent 0 92%, rgba(255,196,0,.96) 92% 100%),
      linear-gradient(45deg, #111416 0 27%, transparent 27% 100%),
      linear-gradient(132deg, #25292b 0 42%, #171a1c 42% 70%, #090b0d 70% 100%);
  }
}

/* Mesmo padrao geometrico no rodape */
.footer {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    linear-gradient(45deg, rgba(255,196,0,.97) 0 7%, transparent 7% 100%),
    linear-gradient(225deg, rgba(255,196,0,.94) 0 6%, transparent 6% 100%),
    linear-gradient(132deg, #232729 0 30%, #171a1c 30% 63%, #090b0d 63% 100%);
}
.footer::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:linear-gradient(112deg,transparent 0 48%,rgba(255,255,255,.025) 48% 67%,transparent 67%);
}
@media (max-width:680px) {
  .footer {
    background:
      linear-gradient(45deg, rgba(255,196,0,.97) 0 4%, transparent 4% 100%),
      linear-gradient(225deg, rgba(255,196,0,.94) 0 3%, transparent 3% 100%),
      linear-gradient(132deg, #232729 0 26%, #171a1c 26% 68%, #090b0d 68% 100%);
  }
}

/* Cores do header na faixa de orcamento; tijolos preservados em ::after */
.cta {
  background:
    linear-gradient(132deg, #25292b 0 32%, #181b1d 32% 61%, #090b0d 61% 100%);
  border-color:rgba(255,196,0,.24);
  box-shadow:0 18px 45px rgba(10,13,15,.18);
}

/* Icones das informacoes do rodape */
.footer-official-links a,
.footer-location-link {
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.footer-link-icon {
  width:16px;
  height:16px;
  flex:0 0 16px;
  fill:currentColor;
  color:var(--yellow);
}
.footer-official-links a:hover .footer-link-icon { color:var(--yellow); }
@media (max-width:680px) {
  .footer-official-links a { min-height:26px; }
  .footer-link-icon { width:17px; height:17px; flex-basis:17px; }
}

/* Fundo geral escuro com a paleta do header e do rodape */
.about,
.products-section,
.cta-section {
  color:#f5f6f6;
  background:
    linear-gradient(135deg,rgba(255,196,0,.025) 0 9%,transparent 9% 100%),
    linear-gradient(132deg,#202426 0 27%,#15191b 27% 64%,#0c0f11 64% 100%);
}
.about-copy p { color:#b7bdc0; }
.products-layout {
  background:linear-gradient(145deg,rgba(37,41,43,.96),rgba(15,18,20,.98));
  border-color:rgba(255,255,255,.08);
  box-shadow:0 20px 54px rgba(0,0,0,.28);
}
.section-copy h2 { color:#f5f6f6; }
.section-copy p,
.price-note { color:#adb3b6; }
.section-copy .btn {
  color:#111518;
  background:var(--yellow);
}
.product-card {
  background:#f8f8f5;
  color:#121518;
  border-color:rgba(255,255,255,.16);
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}
.cta-section { padding-top:0; }
@media (max-width:680px) {
  .about,
  .products-section,
  .cta-section {
    background:
      linear-gradient(132deg,#202426 0 32%,#15191b 32% 72%,#0c0f11 72% 100%);
  }
}

/* Mascote no centro do header e no rodape */
.header-mascot {
  position:absolute;
  left:50%;
  bottom:-10px;
  z-index:2;
  width:88px;
  height:86px;
  object-fit:contain;
  transform:translateX(-50%);
  pointer-events:none;
  filter:drop-shadow(0 7px 10px rgba(0,0,0,.4));
}
@media (min-width:981px) {
  .header .menu {
    padding-left:112px;
    gap:19px;
  }
}
.footer-mascot {
  width:100%;
  height:142px;
  margin:22px auto 4px;
  display:flex;
  justify-content:center;
  overflow:hidden;
  pointer-events:none;
}
.footer-mascot img {
  width:155px;
  height:152px;
  object-fit:contain;
  object-position:center top;
  filter:drop-shadow(0 9px 14px rgba(0,0,0,.38));
}
@media (max-width:980px) {
  .header-mascot { width:70px; height:68px; bottom:-7px; }
  .header .menu { padding-left:0; }
}
@media (max-width:680px) {
  .header-mascot { width:62px; height:61px; bottom:-5px; }
  .footer-mascot { height:118px; margin-top:16px; }
  .footer-mascot img { width:128px; height:126px; }
}

/* Correcao final: busto ampliado e espaco real para o menu */
.header-mascot {
  width:112px;
  height:auto;
  bottom:-20px;
  object-fit:contain;
}
@media (min-width:981px) {
  .header .menu {
    margin-left:auto;
    padding-left:128px;
    gap:18px;
  }
  .header .nav-cta { flex:0 0 auto; }
}
.footer-mascot {
  height:156px;
  margin-top:26px;
}
.footer-mascot img {
  width:190px;
  height:auto;
}
@media (max-width:980px) {
  .header-mascot { width:82px; height:auto; bottom:-12px; }
  .header .menu { padding-left:0; }
}
@media (max-width:680px) {
  .header-mascot { width:76px; height:auto; bottom:-10px; }
  .footer-mascot { height:132px; margin-top:18px; }
  .footer-mascot img { width:158px; height:auto; }
}

/* Mascote totalmente contido dentro do cabecalho */
.header-mascot {
  width:auto;
  height:68px;
  max-height:calc(100% - 4px);
  bottom:0;
}
@media (max-width:980px) {
  .header-mascot {
    width:auto;
    height:60px;
    max-height:calc(100% - 4px);
    bottom:0;
  }
}
@media (max-width:680px) {
  .header-mascot {
    width:auto;
    height:56px;
    max-height:calc(100% - 4px);
    bottom:0;
  }
}

/* Layout final do header: logo a esquerda, menu original e mascote a direita */
.header .nav {
  width:calc(100% - 24px);
  max-width:none;
  padding-right:78px;
}
.header-mascot {
  left:auto;
  right:8px;
  bottom:0;
  height:68px;
  transform:none;
}
@media (min-width:981px) {
  .header .menu {
    margin-left:auto;
    padding-left:0;
    gap:25px;
  }
}
@media (max-width:980px) {
  .header .nav { padding-right:70px; }
  .header-mascot { right:6px; height:60px; }
  .header .menu-toggle { margin-left:auto; }
}
@media (max-width:680px) {
  .header .nav { width:calc(100% - 16px); padding-right:63px; }
  .header-mascot { right:4px; height:56px; }
}

/* Logo de volta a margem original do site */
.header .nav {
  width:min(1180px,calc(100% - 40px));
  max-width:1180px;
}
@media (max-width:680px) {
  .header .nav { width:calc(100% - 24px); }
}

/* Mascote um pouco mais proximo do canto direito */
.header-mascot { right:0; }
@media (max-width:680px) { .header-mascot { right:0; } }

/* Mascote alinhado quase ao limite direito da tela */
.header-mascot {
  right:calc((100vw - min(1180px, calc(100vw - 40px))) / -2 + 36px);
}
@media (max-width:680px) {
  .header-mascot { right:18px; }
}

/* Movimento suave do mascote */
@keyframes mascote-inove-movimento {
  0%,100% { transform:translateY(0) rotate(-1deg); }
  50% { transform:translateY(-4px) rotate(1.2deg); }
}
.header-mascot,
.footer-mascot img {
  transform-origin:50% 85%;
  animation:mascote-inove-movimento 2.8s ease-in-out infinite;
  will-change:transform;
}
.footer-mascot img { animation-delay:.35s; }
@media (max-width:680px) {
  .header-mascot,
  .footer-mascot img { animation-duration:3.2s; }
}
@media (prefers-reduced-motion:reduce) {
  .header-mascot,
  .footer-mascot img { animation:none; transform:none; }
}

/* O movimento agora vem dos quadros do WebP animado */
.header-mascot,
.footer-mascot img {
  animation:none;
  transform:none;
  will-change:auto;
}

/* Retorno ao mascote original com movimento suave */
.header-mascot,
.footer-mascot img {
  animation:mascote-inove-movimento 2.8s ease-in-out infinite;
  transform-origin:50% 85%;
  will-change:transform;
}
@media (prefers-reduced-motion:reduce) {
  .header-mascot,
  .footer-mascot img { animation:none; transform:none; }
}

/* Mascote estatico; corpo inteiro no rodape */
.header-mascot,
.footer-mascot img {
  animation:none;
  transform:none;
  will-change:auto;
}
.footer-mascot {
  height:230px;
  overflow:visible;
  align-items:flex-end;
}
.footer-mascot img {
  width:auto;
  height:220px;
  object-fit:contain;
}
@media (max-width:680px) {
  .footer-mascot { height:190px; }
  .footer-mascot img { width:auto; height:182px; }
}

/* Informacoes ao lado do personagem no rodape */
.footer-with-mascot {
  display:grid;
  grid-template-columns:minmax(0,1fr) 230px;
  align-items:end;
  gap:38px;
}
.footer-with-mascot .footer-grid {
  width:100%;
  grid-template-columns:minmax(210px,.72fr) minmax(0,1.5fr);
  gap:48px;
}
.footer-with-mascot .footer-map { grid-column:2; }
.footer-with-mascot .footer-mascot {
  width:230px;
  height:250px;
  margin:0;
  align-items:flex-end;
}
.footer-with-mascot .footer-mascot img { height:238px; }
@media (max-width:980px) {
  .footer-with-mascot { grid-template-columns:minmax(0,1fr) 190px; gap:24px; }
  .footer-with-mascot .footer-grid { grid-template-columns:1fr; gap:30px; }
  .footer-with-mascot .footer-map { grid-column:1; }
  .footer-with-mascot .footer-mascot { width:190px; height:220px; }
  .footer-with-mascot .footer-mascot img { height:210px; }
}
@media (max-width:680px) {
  .footer-with-mascot { display:block; }
  .footer-with-mascot .footer-grid {
    grid-template-columns:1fr 1fr;
    gap:30px 18px;
  }
  .footer-with-mascot .footer-grid > div:first-child { grid-column:1 / -1; }
  .footer-with-mascot .footer-map { grid-column:1 / -1; }
  .footer-with-mascot .footer-mascot { display:none; }
  .copyright { flex-direction:column; gap:7px; }
}
@media (max-width:680px) {
  .cta {
    background:
      linear-gradient(132deg, #25292b 0 38%, #181b1d 38% 70%, #090b0d 70% 100%);
  }
}

/* Fundo continuo sem faixas ou divisorias entre secoes */
body,
.about,
.products-section,
.cta-section {
  background:#111518;
}
@media (max-width:680px) {
  .about,
  .products-section,
  .cta-section { background:#111518; }
}
/* Enquadramento da foto do showroom: placa inteira e menos corte na base. */
.hero-art { height: 560px; }
.hero-art img { object-position: center 12%; }
@media (max-width:980px) {
  .hero-art { height: 450px; }
}
@media (max-width:680px) {
  .hero-art { height: 360px; }
  .hero-art img { object-position: center 10%; }
}
/* Cards escuros da tela inicial com textos legíveis. */
.products-section .product-card {
  color:#f5f6f6;
  background:linear-gradient(145deg,#202529,#15191c);
  border:1px solid #343a3e;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}
.products-section .product-card:hover,
.products-section .product-card:focus-within {
  border-color:rgba(255,196,0,.68);
  box-shadow:0 20px 44px rgba(0,0,0,.34);
}
.products-section .product-info h3 { color:#ffffff; }
.products-section .product-price { color:#c7cdd0; }
.products-section .product-price small { color:#aeb5b8; }
.products-section .product-info a { color:#ffc400; }
.products-section .product-info a:hover { color:#ffda45; }

/* Remove o texto antigo sobre a foto do piso drenante. */
.products-section .product-visual.mortar::after { content:none; display:none; }

/* Card de chamada para o Instagram abaixo do orçamento. */
.instagram-section { padding:0 0 58px; background:#090c0f; }
.cta-section .instagram-cta { margin-top:18px; }
.instagram-cta {
  min-height:130px;
  padding:26px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,196,0,.3);
  border-radius:16px;
  background:linear-gradient(120deg,#202529,#111518);
  box-shadow:0 18px 44px rgba(0,0,0,.24);
}
.instagram-cta::after {
  content:"";
  position:absolute;
  inset:0 0 0 55%;
  opacity:.1;
  background:repeating-linear-gradient(135deg,#ffc400 0 2px,transparent 2px 24px);
  pointer-events:none;
}
.instagram-cta > * { position:relative; z-index:1; }
.instagram-cta-copy { display:flex; align-items:center; gap:18px; }
.instagram-cta-icon {
  flex:0 0 58px;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,196,0,.45);
  border-radius:14px;
  color:#ffc400;
  background:rgba(255,196,0,.08);
}
.instagram-cta-icon svg { width:30px; height:30px; fill:currentColor; }
.instagram-cta h2 { margin:0 0 7px; color:#fff; font-size:clamp(23px,3vw,31px); line-height:1.1; }
.instagram-cta h2 em { color:#ffc400; font-style:normal; }
.instagram-cta p { margin:0; color:#c1c7ca; font-size:13px; line-height:1.55; }
.instagram-cta-button { min-width:246px; color:#111518; background:#ffc400; }
.instagram-cta-button:hover { color:#111518; background:#ffda45; transform:translateY(-2px); }
.instagram-cta-button svg { width:18px; height:18px; fill:currentColor; }
@media (max-width:680px) {
  .instagram-section { padding:0 0 42px; }
  .instagram-cta { padding:24px 20px; align-items:stretch; flex-direction:column; gap:20px; }
  .instagram-cta::after { inset:48% 0 0; }
  .instagram-cta-copy { align-items:flex-start; gap:13px; }
  .instagram-cta-icon { flex-basis:46px; width:46px; height:46px; border-radius:11px; }
  .instagram-cta-icon svg { width:24px; height:24px; }
  .instagram-cta h2 { font-size:22px; }
  .instagram-cta p { font-size:11px; }
  .instagram-cta-button { width:100%; min-width:0; }
  .cta-section .instagram-cta { margin-top:14px; }
}

/* Instagram com o mesmo visual e estrutura do card de orçamento. */
.cta.instagram-cta {
  margin-top:18px;
  color:#ffffff;
  background:linear-gradient(132deg,#25292b 0 32%,#181b1d 32% 61%,#090b0d 61% 100%);
  border-color:rgba(255,196,0,.24);
  box-shadow:0 18px 45px rgba(10,13,15,.18);
}
.cta.instagram-cta::after {
  inset:0 0 0 48%;
  opacity:.36;
  background-image:linear-gradient(90deg,rgba(11,14,16,.2),transparent),url("assets/padrao-tijolos.svg");
  background-repeat:no-repeat,repeat;
  background-position:left,center;
}
.cta.instagram-cta .cta-icon { border-radius:50%; background:#ffc400; color:#111518; }
.cta.instagram-cta .cta-icon svg { width:30px; height:30px; fill:currentColor; }
.cta.instagram-cta h2 { color:#ffffff; }
.cta.instagram-cta h2 em { color:#ffc400; }
.cta.instagram-cta p { color:#c4c8ca; }
.cta.instagram-cta .instagram-cta-button { color:#111518; background:#ffc400; border-color:#ffc400; }
@media (max-width:680px) {
  .cta.instagram-cta { margin-top:14px; }
}

/* Alinhamento idêntico dos ícones de Instagram e WhatsApp. */
.cta.instagram-cta > div { align-items:center; }
.cta.instagram-cta .cta-icon {
  flex:0 0 68px;
  width:68px;
  height:68px;
  margin:0;
  display:grid;
  place-items:center;
}
.cta.instagram-cta .cta-icon svg { display:block; width:30px; height:30px; }
.cta.instagram-cta {
  min-height:150px;
  padding:35px 48px;
  gap:30px;
}
.cta.instagram-cta .instagram-cta-button { min-width:280px; }
@media (max-width:680px) {
  .cta.instagram-cta {
    min-height:150px;
    padding:32px 25px;
  }
  .cta.instagram-cta .cta-icon {
    flex:0 0 auto;
    width:54px;
    height:54px;
  }
  .cta.instagram-cta .instagram-cta-button { min-width:0; }
}

/* Menu responsivo final: painel limpo, tocavel e sempre acima do mascote. */
@media (max-width:980px) {
  body.menu-open { overflow:hidden; }
  body.menu-open::before {
    content:"";
    position:fixed;
    inset:0;
    z-index:980;
    background:rgba(3,5,7,.72);
    backdrop-filter:blur(4px);
  }
  .header { z-index:1000; }
  .header .nav {
    position:relative;
    padding-right:0;
  }
  .header-mascot {
    z-index:1;
    right:8px;
    transition:opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  body.menu-open .header-mascot {
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
  }
  .menu-toggle {
    position:relative;
    z-index:1010;
    width:44px;
    height:44px;
    margin-left:auto;
    margin-right:72px;
    padding:0;
    border:1px solid rgba(255,196,0,.42);
    border-radius:12px;
    background:#202529;
    box-shadow:0 8px 20px rgba(0,0,0,.24);
  }
  .menu-toggle span {
    width:20px;
    height:2px;
    margin:4px auto;
    border-radius:2px;
    background:#ffc400;
    transition:transform .22s ease, opacity .18s ease;
  }
  .menu-toggle[aria-expanded="true"] {
    border-color:#ffc400;
    background:#ffc400;
  }
  .menu-toggle[aria-expanded="true"] span { background:#111518; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
  .menu {
    position:fixed;
    top:92px;
    left:20px;
    right:20px;
    z-index:1005;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:7px;
    max-height:calc(100dvh - 112px);
    padding:12px;
    overflow-y:auto;
    border:1px solid rgba(255,196,0,.38);
    border-radius:18px;
    background:linear-gradient(145deg,rgba(35,40,44,.98),rgba(13,17,20,.99));
    box-shadow:0 24px 65px rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transform:translateY(-12px) scale(.98);
    transform-origin:top center;
    transition:opacity .2s ease, transform .22s ease, visibility .2s ease;
  }
  .menu.open {
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
  }
  .menu a {
    width:100%;
    min-height:49px;
    display:flex;
    align-items:center;
    padding:0 17px;
    border:1px solid transparent;
    border-radius:11px;
    color:#f6f7f7;
    background:rgba(255,255,255,.035);
    font-size:13px;
    font-weight:800;
    letter-spacing:.035em;
  }
  .menu a::after {
    content:"";
    width:7px;
    height:7px;
    margin-left:auto;
    border-top:2px solid #ffc400;
    border-right:2px solid #ffc400;
    transform:rotate(45deg);
  }
  .menu a:hover,
  .menu a:focus-visible {
    color:#ffc400;
    border-color:rgba(255,196,0,.28);
    background:rgba(255,196,0,.08);
    outline:none;
  }
}

@media (max-width:680px) {
  .header-mascot { right:7px; }
  .menu-toggle {
    margin-right:68px;
    transform:none;
  }
  .menu {
    top:72px;
    left:12px;
    right:12px;
    max-height:calc(100dvh - 84px);
  }
  .menu a {
    min-height:48px;
    padding:0 16px;
    font-size:12px;
  }
}
