:root {
  --bg: #f3f5f2;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #171b18;
  --muted: #626b66;
  --line: rgba(24, 32, 28, 0.12);
  --coal: #111214;
  --coal-soft: #202124;
  --brand: #c98510;
  --brand-dark: #895100;
  --green: #1f9d55;
  --shadow: 0 22px 70px rgba(25, 21, 18, 0.12);
  --radius: 8px;
  --header-height: 62px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(17, 18, 20, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(17, 18, 20, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 100%;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(217, 145, 28, 0.5);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-size: 0.9rem;
  letter-spacing: 0;
}

.brand small {
  color: #d8d0c4;
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a {
  border-radius: 999px;
  color: #e9e2d8;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(217, 145, 28, 0.18);
  color: #ffd98f;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn {
  min-height: 38px;
  gap: 8px;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0 14px;
  white-space: nowrap;
}

.btn:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 157, 85, 0.24);
}

.btn--primary:hover {
  background: #168347;
  box-shadow: 0 18px 36px rgba(31, 157, 85, 0.3);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--ghost:hover {
  border-color: rgba(255, 217, 143, 0.65);
  background: rgba(217, 145, 28, 0.2);
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-toggle {
  display: none;
}

main {
  overflow: hidden;
}

section {
  padding: 82px 0;
}

.section--dark {
  background: var(--coal);
  color: #fff;
}

.section--soft {
  background: #e7ede8;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-heading h2,
.store__copy h2,
.cta-band h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  margin-top: 8px;
}

.hero {
  min-height: min(700px, 100svh);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 44px) 0 52px;
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.96) 0%, rgba(17, 18, 20, 0.78) 47%, rgba(17, 18, 20, 0.28) 100%),
    url("assets/frenteLoja2.jpg") center / cover;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.hero__content {
  max-width: 650px;
}

.hero h1 {
  max-width: 760px;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(2.55rem, 5.6vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.hero__lead {
  max-width: 560px;
  margin-top: 22px;
  color: #e7ded1;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__panel {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 14px;
}

.hero__photo {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.trust-strip span {
  display: grid;
  gap: 8px;
  min-height: 96px;
  align-content: center;
  justify-items: center;
  padding: 15px 10px;
  background: rgba(17, 18, 20, 0.72);
  color: #f6efe4;
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip i {
  color: #ffd38a;
  font-size: 1.25rem;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 18px auto 1fr auto 18px;
  grid-template-rows: auto auto auto 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  text-align: left;
  box-shadow: 0 8px 28px rgba(25, 21, 18, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card img {
  grid-column: 1 / -1;
  width: 100%;
  height: clamp(260px, 25vw, 310px);
  display: block;
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.product-card__icon {
  grid-column: 2;
  grid-row: 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: -23px 0 0;
  border: 1px solid rgba(217, 145, 28, 0.28);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 10px 28px rgba(25, 21, 18, 0.12);
}

.product-card__cta {
  grid-column: 4;
  grid-row: 2;
  align-self: start;
  justify-self: end;
  min-height: 32px;
  margin-top: 10px;
  padding: 7px 11px;
  border: 1px solid rgba(217, 145, 28, 0.36);
  border-radius: 6px;
  background: rgba(217, 145, 28, 0.09);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-card strong {
  grid-column: 2 / -2;
  padding: 14px 0 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

.product-card small {
  grid-column: 2 / -2;
  padding: 10px 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(217, 145, 28, 0.6);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-6px);
}

.product-card:hover .product-card__cta,
.product-card:focus-visible .product-card__cta {
  border-color: rgba(217, 145, 28, 0.58);
  background: rgba(217, 145, 28, 0.16);
  transform: translateY(-1px);
}

.store__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.store__copy {
  max-width: 500px;
}

.store__copy p:not(.eyebrow),
.cta-band p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
}

.store__facts {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.store__facts > span {
  display: grid;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid rgba(28, 23, 18, 0.14);
  color: var(--muted);
}

.store__facts > span strong {
  color: var(--ink);
}

.address-link {
  display: inline-grid;
  justify-self: start;
  gap: 2px;
  color: inherit;
  text-decoration: none;
}

.address-link:hover {
  color: var(--brand-dark);
}

.address-link--footer {
  color: #bfb7ab;
}

.address-link--footer:hover {
  color: #ffd38a;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.map-links--footer {
  margin-top: 14px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(201, 133, 16, 0.3);
  border-radius: 6px;
  background: rgba(201, 133, 16, 0.09);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.map-link:hover {
  border-color: rgba(201, 133, 16, 0.58);
  background: rgba(201, 133, 16, 0.15);
  transform: translateY(-1px);
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 176px;
  gap: 12px;
}

.gallery__item {
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--coal);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 10px 34px rgba(25, 21, 18, 0.12);
}

.gallery__item--large {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: filter 0.24s ease, transform 0.24s ease;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.04);
}

.advantages {
  background: var(--surface);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advantage {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.advantage:last-child {
  border-right: 0;
}

.advantage i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(217, 145, 28, 0.12);
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.advantage h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.advantage p {
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-band {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.93), rgba(17, 18, 20, 0.68)),
    url("assets/frenteLoja3.jpg") center / cover;
  color: #fff;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-band h2 {
  max-width: 720px;
  color: #fff;
}

.cta-band p:not(.eyebrow) {
  color: #e7ded1;
}

.site-footer {
  background: var(--coal);
  color: #fff;
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 46px;
}

.footer-brand {
  margin-bottom: 14px;
  font-weight: 900;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #e8dfd2;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  color: #bfb7ab;
  font-size: 0.94rem;
}

.site-footer .map-link {
  border-color: rgba(255, 211, 138, 0.26);
  background: rgba(255, 211, 138, 0.09);
  color: #ffd38a;
}

.contact-link {
  color: #ffd38a;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #8d867b;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 20, 0.82);
  backdrop-filter: blur(10px);
}

.image-modal__dialog {
  position: relative;
  width: min(1120px, 94vw);
  max-height: 90svh;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #151618;
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.image-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 10px 14px 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.image-modal__header h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.image-modal__header i {
  color: #ffd38a;
}

.image-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 14px;
  padding: 14px;
}

.image-modal__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #08090a;
}

.image-modal__stage img {
  width: 100%;
  height: min(64svh, 620px);
  display: block;
  object-fit: contain;
}

.image-modal__nav {
  position: absolute;
  top: 50%;
  background: rgba(8, 9, 10, 0.68);
  transform: translateY(-50%);
}

.image-modal__nav:hover {
  background: rgba(217, 145, 28, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.image-modal__nav--prev {
  left: 14px;
}

.image-modal__nav--next {
  right: 14px;
}

.image-modal__thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: min(64svh, 620px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-color: rgba(217, 145, 28, 0.72) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.image-modal__thumbs button {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.image-modal__thumbs button.is-active {
  border-color: #ffd38a;
}

.image-modal__thumbs img {
  width: 100%;
  height: 96px;
  display: block;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    gap: 14px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .hero__grid,
  .store__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 760px;
  }

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

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .advantage {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 58px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(17, 18, 20, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 6px;
    padding: 13px 14px;
  }

  section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 34px) 0 38px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12.8vw, 3.6rem);
    line-height: 1;
  }

  .hero__photo {
    min-height: 310px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 64px;
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-card img {
    height: clamp(235px, 74vw, 330px);
  }

  .store__copy {
    max-width: none;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .gallery__item--large {
    grid-row: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-modal {
    padding: 12px;
  }

  .image-modal__dialog {
    width: 100%;
    max-height: 92svh;
  }

  .image-modal__content {
    grid-template-columns: 1fr;
  }

  .image-modal__stage {
    min-height: 300px;
  }

  .image-modal__stage img {
    height: 48svh;
  }

  .image-modal__thumbs {
    grid-template-columns: repeat(4, minmax(74px, 1fr));
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px;
  }

  .image-modal__thumbs img {
    height: 78px;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .hero__actions,
  .hero__actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .gallery {
    grid-auto-rows: 180px;
  }
}
