:root {
  --ink: #0c0d0f;
  --panel: #171512;
  --cream: #fff7e8;
  --paper: #fffdf7;
  --muted: #665f54;
  --line: #e6ddd0;
  --yellow: #f5aa00;
  --red: #bd201b;
  --green: #2e7d55;
  --blue: #2867a8;
  --shadow: 0 18px 50px rgba(12, 13, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

main,
section,
.site-header,
.hero,
.section {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(12, 13, 15, 0.94);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 150px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.94rem;
  color: rgba(255, 247, 232, 0.78);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--yellow);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta,
.btn-primary {
  background: var(--yellow);
  color: #16110a;
}

.header-cta:hover,
.btn-primary:hover {
  background: #ffc145;
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 64px);
  background:
    linear-gradient(100deg, rgba(12, 13, 15, 0.92), rgba(12, 13, 15, 0.82)),
    radial-gradient(circle at 18% 14%, rgba(189, 32, 27, 0.35), transparent 26%),
    linear-gradient(135deg, #171512 0%, #252019 48%, #0c0d0f 100%);
  color: var(--cream);
}

.hero-content {
  min-width: 0;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.8vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 247, 232, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-secondary {
  color: var(--cream);
  border: 1px solid rgba(255, 247, 232, 0.35);
}

.btn-secondary:hover {
  border-color: var(--yellow);
}

.hero-panel {
  min-width: 0;
  align-self: stretch;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: end;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.04), rgba(255, 247, 232, 0.12)),
    #050505;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  max-height: 250px;
  margin: auto 0;
  object-fit: contain;
}

.color-rack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 26px 0 18px;
}

.swatch {
  min-height: 58px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.red {
  background: var(--red);
}

.yellow {
  background: var(--yellow);
}

.charcoal {
  background: #413b31;
}

.green {
  background: var(--green);
}

.blue {
  background: var(--blue);
}

.quick-info {
  display: grid;
  gap: 8px;
  color: rgba(255, 247, 232, 0.78);
  font-size: 0.96rem;
}

.quick-info p {
  margin: 0;
}

.section {
  max-width: 100%;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.intro-band p:last-child {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.products {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-grid article {
  min-height: 242px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(12, 13, 15, 0.06);
}

.product-grid p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
}

.card-icon {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 0 0 1px var(--line), inset 0 0 0 16px var(--yellow);
}

.card-icon.auto {
  background: var(--red);
}

.card-icon.house {
  background: var(--green);
}

.card-icon.finish {
  background: var(--blue);
}

.card-icon.tools {
  background: #413b31;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: #111;
  color: var(--cream);
}

.split-copy {
  position: sticky;
  top: 110px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 247, 232, 0.08);
}

.feature-list span {
  color: rgba(255, 247, 232, 0.72);
}

.brands {
  background: #f3efe6;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid #d7cbbb;
  border-radius: 8px;
  background: #fffdf8;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 170, 0, 0.72);
  box-shadow: 0 12px 26px rgba(12, 13, 15, 0.1);
}

.brand-card img {
  width: 100%;
  max-width: 180px;
  max-height: 62px;
  object-fit: contain;
}

.brand-card-dark {
  background: #121212;
  border-color: #292722;
}

.brand-card-dark img {
  max-width: 190px;
  max-height: 70px;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
  background: var(--yellow);
}

.offer .section-kicker {
  color: #5d210d;
}

.offer-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-items span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: 34px;
  background: var(--ink);
  color: var(--cream);
}

.contact-card {
  display: grid;
  gap: 12px;
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card a,
.contact-card p,
.store-info {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card a {
  color: var(--yellow);
  font-weight: 800;
}

.contact-card p,
.store-info address {
  border-bottom: 0;
  color: rgba(255, 247, 232, 0.78);
}

.store-info {
  display: grid;
  gap: 8px;
}

.store-info strong {
  color: var(--cream);
  font-size: 1.05rem;
}

.store-info address {
  font-style: normal;
}

.store-info a {
  padding: 0;
  border-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #063d1a;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: #050505;
  color: rgba(255, 247, 232, 0.72);
}

.footer img {
  width: 126px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero,
  .intro-band,
  .split-section,
  .offer,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 360px;
  }

  .split-copy {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand img {
    width: 122px;
    height: 44px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2rem, 10.5vw, 2.72rem);
    line-height: 1.06;
    max-width: 100%;
  }

  .hero {
    padding: 42px 24px 34px;
    overflow: hidden;
  }

  .hero-content,
  .hero-panel {
    max-width: calc(100vw - 48px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 310px;
  }

  .hero-logo {
    width: 100%;
    max-height: 190px;
  }

  .swatch {
    min-height: 44px;
  }

  .product-grid,
  .brand-grid,
  .offer-items {
    grid-template-columns: 1fr;
  }

  .product-grid article {
    min-height: 210px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
