.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

@media (min-width: 720px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-12);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-copper-text);
}

.hero .eyebrow,
.page-hero .eyebrow,
.bg-graphite .eyebrow,
.section-process .eyebrow {
  color: var(--color-copper);
}

.lead {
  font-size: var(--text-lg);
  color: var(--color-steel);
  max-width: 38rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn:hover {
  color: var(--color-text-invert);
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-cta);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(244, 241, 234, 0.7);
}

.btn-secondary:hover {
  background: #fff;
  color: var(--color-graphite);
}

.btn-ghost {
  background: transparent;
  color: var(--color-graphite);
  border-color: var(--color-line-strong);
}

.btn-ghost:hover {
  border-color: var(--color-graphite);
  color: var(--color-graphite);
  background: var(--color-surface);
}

.site-header .btn-ghost {
  color: var(--color-text-invert);
  border-color: rgba(244, 241, 234, 0.28);
}

.site-header .btn-ghost:hover {
  color: #fff;
  background: rgba(244, 241, 234, 0.08);
  border-color: rgba(244, 241, 234, 0.5);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  min-height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
  font-size: var(--text-sm);
  color: var(--color-steel);
}

.chip {
  appearance: none;
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: 999px;
  min-height: 2.5rem;
  padding: 0 1rem;
  cursor: pointer;
}

.chip.is-active,
.chip[aria-pressed="true"] {
  background: var(--color-graphite);
  color: var(--color-text-invert);
  border-color: var(--color-graphite);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-graphite);
  color: var(--color-text-invert);
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
}

.site-header .container {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--space-16);
  padding-right: 3.25rem;
}

@media (max-width: 959px) {
  .site-header .container {
    width: min(100% - 4rem, var(--container));
  }
}

@media (min-width: 960px) {
  .header-inner {
    padding-right: 0;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  text-decoration: none;
  color: var(--color-text-invert);
}

.brand:hover {
  color: var(--color-text-invert);
}

.brand img {
  height: 2.35rem;
  width: auto;
}

.brand-meta {
  display: none;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.62);
}

.nav-list {
  display: none;
  list-style: none;
  gap: var(--space-8);
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.65rem;
  text-decoration: none;
  color: rgba(244, 241, 234, 0.82);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: #fff;
}

.nav-list a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--color-copper);
}

.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-invert);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-close {
  display: block;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: var(--color-graphite);
  z-index: var(--z-overlay);
  padding: var(--space-32) 2rem;
}

.nav-overlay.is-open {
  display: block;
}

.nav-overlay a:not(.btn) {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  color: var(--color-text-invert);
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
}

.nav-overlay .btn {
  width: 100%;
  margin-top: 1.5rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: border-color var(--dur) var(--ease);
}

a.card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

a.card:hover {
  border-color: var(--color-copper);
  color: inherit;
}

a.card:focus-visible {
  outline: 2px solid var(--color-copper-text);
  outline-offset: 3px;
  box-shadow: none;
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd8ce;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

a.card:hover .card-media img {
  transform: scale(1.035);
}

.card-body {
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  flex: 1;
}

.card-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-copper-text);
  font-weight: 600;
}

.card-link {
  margin-top: auto;
  padding-top: var(--space-12);
  font-weight: 600;
  color: var(--color-cta);
}

.trust-item,
.diff-card,
.audience-card,
.step,
.contact-item {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-copper);
  border-radius: var(--radius-md);
  padding: var(--space-24);
}

.diff-card h3,
.audience-card h3,
.step h3 {
  margin-bottom: var(--space-8);
}

.step-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  color: var(--color-copper);
  font-weight: 600;
  margin-bottom: var(--space-12);
}

.faq {
  max-width: 44rem;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  min-height: 3.25rem;
  padding: var(--space-20, 1.15rem) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-16);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  cursor: pointer;
}

.faq-q {
  flex: 1;
  min-width: 0;
}

.faq-icon {
  flex: 0 0 auto;
  width: 1.5rem;
  text-align: center;
  color: var(--color-copper-text);
  line-height: 1.3;
}

.faq-panel {
  display: none;
  padding: 0 0 var(--space-24);
  color: var(--color-steel);
  max-width: 42rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.field label {
  font-weight: 500;
  font-size: var(--text-sm);
}

.field input,
.field select,
.field textarea {
  min-height: 3rem;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 0.7rem 0.85rem;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: var(--focus);
  border-color: var(--color-copper);
}

.field-optional {
  font-weight: 400;
  color: var(--color-muted);
}

.bg-graphite .field-optional {
  color: rgba(244, 241, 234, 0.72);
}

.field-error {
  color: var(--color-danger);
  font-size: var(--text-sm);
}

.bg-graphite .field-error {
  color: #ffb4b4;
}

.form-note {
  margin: var(--space-24) 0 0;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-muted);
}

.bg-graphite .form-note {
  color: #c8c2b6;
}

.form-success {
  display: none;
  padding: var(--space-24);
  border: 1px solid #b7d7c6;
  background: #eef7f2;
  color: var(--color-success);
  border-radius: var(--radius-md);
}

.form-success.is-visible,
.quote-form.is-sent + .form-success {
  display: block;
}

.quote-form.is-sent {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 22rem;
  display: grid;
  align-items: end;
  color: var(--color-text-invert);
  background: var(--color-graphite) center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 19, 0.18) 0%, rgba(16, 17, 19, 0.72) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: var(--space-64);
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero h1,
.page-hero p,
.page-hero a {
  color: var(--color-text-invert);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  list-style: none;
  margin-bottom: var(--space-16);
  font-size: var(--text-sm);
  color: rgba(244, 241, 234, 0.72);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-8);
  opacity: 0.55;
}

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

.breadcrumb a:hover {
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.gallery-item {
  margin: 0;
  border: 0;
  padding: 0;
  background: #ddd8ce;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--color-copper-text);
  outline-offset: 3px;
  box-shadow: none;
}

.gallery-grid.gallery-home .gallery-item:first-child {
  aspect-ratio: 16 / 10;
}

@media (min-width: 720px) {
  .gallery-grid.gallery-home {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 12rem;
  }

  .gallery-grid.gallery-home .gallery-item {
    aspect-ratio: auto;
    height: 100%;
  }

  .gallery-grid.gallery-home .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    min-height: 18rem;
  }
}

@media (min-width: 960px) {
  .gallery-grid.gallery-home {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 13.5rem;
  }

  .gallery-grid.gallery-home .gallery-item:first-child {
    grid-column: 1 / span 2;
    grid-row: span 2;
    min-height: 0;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(10, 11, 12, 0.92);
  padding: var(--space-24);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 68rem);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-bar);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-16);
  padding-bottom: max(var(--space-8), env(safe-area-inset-bottom));
  background: var(--color-graphite);
  border-top: 1px solid rgba(244, 241, 234, 0.08);
}

.wa-float {
  display: none;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: var(--z-bar);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--color-whatsapp);
  color: #fff;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.wa-float:hover {
  background: var(--color-whatsapp-hover);
  color: #fff;
}

.site-footer {
  background: var(--color-graphite);
  color: rgba(244, 241, 234, 0.78);
  padding: var(--space-64) 0 var(--space-32);
}

.footer-grid {
  display: grid;
  gap: var(--space-32);
}

.site-footer h2 {
  color: #fff;
  font-size: var(--text-md);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-16);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links,
.footer-contacts {
  list-style: none;
  display: grid;
  gap: var(--space-8);
}

.footer-bottom {
  margin-top: var(--space-48);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: space-between;
  font-size: var(--text-sm);
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-meta {
    display: block;
  }
}

@media (min-width: 960px) {
  .nav-list,
  .header-actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-bar {
    display: none;
  }

  .wa-float {
    display: flex;
  }

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

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

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 959px) {
  body {
    padding-bottom: var(--bar-h);
  }
}
