:root {
  --color-cream: #fff8ed;
  --color-cream-2: #f5ead9;
  --color-brown-900: #2a1710;
  --color-brown-800: #3b2117;
  --color-brown-700: #573222;
  --color-brown-500: #8a5a3c;
  --color-beige: #e6d0ae;
  --color-terracotta: #b84a2f;
  --color-terracotta-dark: #8f321f;
  --color-green: #1f7a3f;
  --color-white: #ffffff;
  --color-muted: #735f52;
  --color-border: rgba(42, 23, 16, 0.14);
  --shadow-soft: 0 18px 42px rgba(42, 23, 16, 0.12);
  --shadow-card: 0 12px 26px rgba(42, 23, 16, 0.1);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1120px;
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-brown-900);
  background: var(--color-cream);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-compact {
  padding: 44px 0;
}

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

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

h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 7vw, 4.9rem);
  line-height: 0.98;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

p {
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 248, 237, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
}

.site-header.has-scrolled {
  box-shadow: 0 8px 22px rgba(42, 23, 16, 0.08);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: left;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 50px;
  }}

/*
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--color-brown-900);
  color: var(--color-cream);
  font-weight: 900;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  line-height: 1;
}

.brand-text small {
  color: var(--color-muted);
}*/

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-brown-800);
}

.main-nav a:hover {
  color: var(--color-terracotta);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--color-brown-900);
  color: var(--color-cream) !important;
}

.nav-catalog {
  padding: 9px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-brown-900);
}

.hero {
  display: flex;
  align-items: center;
  padding: 96px 0 80px;
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.96), rgba(255, 248, 237, 0.7)),
    linear-gradient(135deg, var(--color-cream), var(--color-cream-2));
}

.hero-photo {
  padding: 0;
  overflow: hidden;
  background: none;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid,
.split-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 64px;
  align-items: center;
}

.hero-content,
.hero-panel,
.product-card,
.segment-card,
.location-card,
.process-step,
.feature-card,
.faq-list details {
  min-width: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions {
  margin-bottom: 26px;
}

.center-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 14px 24px rgba(184, 74, 47, 0.24);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-brown-900);
  border: 1px solid var(--color-border);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-border);
  color: var(--color-brown-700);
  font-size: 0.92rem;
  font-weight: 750;
}

.hero-panel {
  position: relative;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.photo-placeholder {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(42, 23, 16, 0.7), rgba(184, 74, 47, 0.48)),
    repeating-linear-gradient(45deg, rgba(255, 248, 237, 0.22), rgba(255, 248, 237, 0.22) 10px, rgba(255, 248, 237, 0.08) 10px, rgba(255, 248, 237, 0.08) 20px);
  color: var(--color-cream);
  font-weight: 900;
  text-align: center;
}

.photo-placeholder span {
  padding: 16px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.photo-placeholder-large {
  min-height: 430px;
}

.hero-note {
  position: absolute;
  left: -22px;
  right: 28px;
  bottom: 28px;
  max-width: 360px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.hero-note p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.feature-grid,
.product-grid,
.segment-grid,
.process-grid,
.location-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.product-card,
.segment-card,
.process-step,
.location-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(42, 23, 16, 0.06);
}

.feature-card {
  padding: 22px;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-terracotta);
  font-weight: 900;
}

.feature-card p,
.segment-card p,
.process-step p {
  margin-bottom: 0;
}

.about-section,
.locations-section {
  background: var(--color-white);
}

.rich-text p {
  font-size: 1.06rem;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

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

.section-heading p {
  font-size: 1.06rem;
}

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

.product-card {
  overflow: hidden;
}

.product-photo {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(138, 90, 60, 0.36), rgba(214, 167, 86, 0.28)),
    var(--color-cream-2);
  color: var(--color-brown-700);
}

.product-body {
  padding: 22px;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(184, 74, 47, 0.1);
  color: var(--color-terracotta);
  font-size: 0.78rem;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-terracotta);
  font-weight: 850;
  text-decoration: none;
}

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

.clients-section {
  background: linear-gradient(180deg, var(--color-cream), var(--color-cream-2));
}

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

.segment-card {
  display: block;
  min-height: 156px;
  padding: 24px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.segment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(184, 74, 47, 0.4);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  padding: 24px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--color-brown-900);
  color: var(--color-cream);
  font-weight: 900;
}

.process-action {
  margin-top: 28px;
}

.location-grid {
  grid-template-columns: repeat(5, 1fr);
}

.location-card {
  padding: 16px;
}

.location-photo {
  min-height: 140px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(42, 23, 16, 0.58), rgba(138, 90, 60, 0.38)),
    var(--color-beige);
}

.location-card-highlight {
  background: var(--color-brown-900);
  color: var(--color-cream);
}

.location-card-highlight p {
  color: rgba(255, 248, 237, 0.78);
}

.location-card-highlight .text-link {
  color: var(--color-cream);
}

.location-address {
  min-height: 48px;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin-top: 14px;
  margin-bottom: 0;
}

.final-cta {
  text-align: center;
  background: var(--color-cream-2);
}

.final-cta-inner {
  max-width: 790px;
}

.catalog-hero {
  padding: 72px 0 44px;
  text-align: center;
}

.catalog-hero h1 {
  max-width: 860px;
  margin-inline: auto;
}

.catalog-hero .hero-copy {
  margin-inline: auto;
}

.catalog-actions {
  justify-content: center;
  margin-top: 28px;
}

.catalog-viewer-section {
  padding-top: 0;
}

.catalog-viewer {
  overflow: hidden;
  min-height: 760px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.catalog-viewer object {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
}

.catalog-fallback {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.site-footer {
  padding: 38px 0;
  background: var(--color-brown-900);
  color: var(--color-cream);
}

.site-footer p {
  color: rgba(255, 248, 237, 0.72);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--color-cream);
  text-decoration: none;
  font-weight: 750;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(31, 122, 63, 0.28);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-grid,
  .product-grid,
  .segment-grid,
  .process-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }
}

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

  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 64px 0;
  }

  .section-compact {
    padding: 32px 0;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }

  .footer-legal a {
  color: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  opacity: 0.75;
}

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding: 48px 0 64px;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.04;
  }

  .hero-actions,
  .center-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .photo-placeholder-large {
    min-height: 300px;
  }

  .feature-grid,
  .product-grid,
  .segment-grid,
  .process-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .segment-card {
    min-height: auto;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

@media (max-width: 480px) {
  .hero-content,
  .hero-panel,
  .section-heading,
  .rich-text,
  .faq-list,
  .feature-card,
  .product-card,
  .segment-card,
  .process-step,
  .location-card,
  .hero-actions,
  .trust-row {
    width: 100%;
    max-width: 362px;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-copy {
    max-width: 31ch;
  }

  .photo-placeholder span {
    max-width: 24ch;
  }
}
