:root {
  --pink: #f9008e;
  --pink-dark: #c60070;
  --blue: #00a8df;
  --blue-dark: #087ca7;
  --yellow: #ffd21e;
  --green: #35b76f;
  --red: #f13c4e;
  --purple: #8756d7;
  --orange: #ff8b34;
  --ink: #18243a;
  --muted: #667085;
  --soft: #f7f8fc;
  --line: #e7e9f0;
  --white: #fff;
  --shadow: 0 20px 55px rgba(24, 36, 58, .12);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 96px 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); padding: 10px 14px; border-radius: 10px; background: #111; color: #fff; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(231,233,240,.85);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; width: 220px; min-width: 180px; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; font-weight: 750; font-size: .94rem; }
.site-nav > a:not(.nav-whatsapp) { position: relative; }
.site-nav > a:not(.nav-whatsapp)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 3px; border-radius: 3px; background: var(--pink); transform: scaleX(0); transition: transform .25s ease; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); }
.nav-whatsapp { padding: 12px 20px; border-radius: 999px; color: #fff; background: var(--green); box-shadow: 0 10px 20px rgba(53,183,111,.25); }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 9px; border: 0; border-radius: 13px; background: var(--soft); cursor: pointer; }
.menu-toggle span { display: block; height: 3px; margin: 5px 0; border-radius: 3px; background: var(--ink); transition: .25s ease; }

.hero { position: relative; overflow: hidden; padding-top: 76px; background: radial-gradient(circle at 92% 5%, rgba(255,210,30,.22), transparent 30%), radial-gradient(circle at 3% 70%, rgba(0,168,223,.14), transparent 30%), linear-gradient(135deg, #fff 0%, #fff7fc 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; min-height: 570px; }
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.hero-shape-a { width: 220px; height: 220px; top: 65px; right: -85px; background: rgba(249,0,142,.10); }
.hero-shape-b { width: 90px; height: 90px; bottom: 60px; left: 4%; background: rgba(53,183,111,.18); }
.hero-shape-c { width: 34px; height: 34px; top: 130px; left: 48%; background: var(--yellow); box-shadow: 40px 28px 0 rgba(0,168,223,.55), -38px 40px 0 rgba(249,0,142,.35); }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; color: var(--pink-dark); }
.eyebrow .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(53,183,111,.14); }
.hero h1 { max-width: 680px; margin: 20px 0; font-size: clamp(3rem, 6vw, 5.65rem); line-height: .98; letter-spacing: -.055em; }
.hero-lead { max-width: 630px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.hero-lead strong { color: var(--pink-dark); }
.hero-person { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.person-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: linear-gradient(135deg, var(--blue), #7ad7f4); color: #fff; font-weight: 900; }
.hero-person strong, .hero-person span { display: block; }
.hero-person div span { color: var(--muted); font-size: .92rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border: 1px solid transparent; border-radius: 15px; font-weight: 850; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; box-shadow: 0 14px 28px rgba(249,0,142,.24); }
.btn-light { background: #fff; border-color: var(--line); box-shadow: 0 10px 25px rgba(24,36,58,.08); }
.btn-outline { background: #fff; border-color: #dcdfe8; }
.btn-download { color: #fff; background: var(--blue-dark); }
.hero-visual { position: relative; min-height: 440px; display: grid; place-items: center; }
.hero-logo-card { position: relative; width: min(100%, 580px); padding: 38px 30px; border-radius: 40px; background: #fff; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-logo-card::after { content: ""; position: absolute; inset: 16px; border: 2px dashed rgba(0,168,223,.22); border-radius: 28px; pointer-events: none; }
.hero-logo-card img { position: relative; z-index: 1; width: 100%; height: auto; }
.tape { position: absolute; z-index: 3; top: -13px; width: 86px; height: 30px; background: rgba(255,210,30,.72); transform: rotate(-5deg); }
.tape-left { left: 56px; }
.tape-right { right: 56px; transform: rotate(6deg); }
.floating-card { position: absolute; z-index: 4; width: 170px; padding: 17px 18px; border-radius: 20px; background: #fff; box-shadow: 0 16px 38px rgba(24,36,58,.14); }
.floating-card span { display: block; font-size: 1.45rem; font-weight: 950; color: var(--pink); }
.floating-card small { color: var(--muted); }
.floating-card-one { left: -12px; bottom: 36px; transform: rotate(-4deg); }
.floating-card-two { right: -12px; top: 35px; transform: rotate(5deg); }

.quick-info { position: relative; z-index: 5; margin-top: -28px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.quick-card { min-height: 124px; padding: 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.quick-card:last-child { border-right: 0; }
.quick-number { font-size: 1.65rem; font-weight: 950; letter-spacing: -.03em; color: var(--ink); }
.quick-card:nth-child(1) .quick-number { color: var(--pink); }
.quick-card:nth-child(2) .quick-number { color: var(--blue-dark); }
.quick-card:nth-child(3) .quick-number { color: var(--green); }
.quick-card:nth-child(4) .quick-number { color: var(--purple); }
.quick-card p { margin: 3px 0 0; color: var(--muted); }

.intro-section { padding-top: 120px; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.section-heading h2 { margin: 12px 0 15px; font-size: clamp(2.15rem, 4vw, 3.65rem); line-height: 1.08; letter-spacing: -.04em; }
.section-heading p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-heading.centered { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading.centered p { margin-inline: auto; }
.intro-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.intro-cards article { min-height: 220px; padding: 25px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 12px 32px rgba(24,36,58,.07); }
.intro-cards article:nth-child(2) { transform: translateY(-18px); }
.intro-cards span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: #fff0f8; color: var(--pink); font-weight: 950; }
.intro-cards h3 { margin: 24px 0 8px; font-size: 1.24rem; }
.intro-cards p { margin: 0; color: var(--muted); font-size: .94rem; }

.categories-section { background: var(--soft); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { position: relative; overflow: hidden; min-height: 178px; padding: 25px; border-radius: 24px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 13px 30px rgba(24,36,58,.10); transition: transform .25s ease; }
.category-card:hover { transform: translateY(-7px) rotate(-.4deg); }
.category-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -35px; bottom: -35px; border-radius: 50%; background: rgba(255,255,255,.14); }
.category-icon { position: relative; z-index: 2; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 17px; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); font-weight: 950; font-size: 1.25rem; }
.category-card h3 { position: relative; z-index: 2; max-width: 210px; margin: 25px 0 0; font-size: 1.08rem; line-height: 1.25; }
.c1 { background: linear-gradient(135deg, #ff397b, #d9026d); }
.c2 { background: linear-gradient(135deg, #8559dd, #6133b8); }
.c3 { background: linear-gradient(135deg, #ffc51c, #f29b10); }
.c4 { background: linear-gradient(135deg, #1bb7be, #008aa4); }
.c5 { background: linear-gradient(135deg, #00a5e4, #1679b6); }
.c6 { background: linear-gradient(135deg, #ff9d43, #ed6d20); }
.c7 { background: linear-gradient(135deg, #41c979, #168f59); }
.c8 { background: linear-gradient(135deg, #7f60db, #f05fa4); }
.c9 { background: linear-gradient(135deg, #00b0dd, #36c2aa); }
.c10 { background: linear-gradient(135deg, #b3a620, #7e8215); }
.c11 { background: linear-gradient(135deg, #e33737, #a91f30); }
.c12 { background: linear-gradient(135deg, #ff9b42, #f55663); }

.catalog-section { background: #fff; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 45px; }
.split-heading p { max-width: 500px; padding-bottom: 10px; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.catalog-card { display: grid; grid-template-columns: 42% 58%; min-height: 430px; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; background: #fff; box-shadow: 0 18px 48px rgba(24,36,58,.09); }
.catalog-cover { position: relative; display: grid; place-items: center; min-height: 410px; padding: 28px; }
.pink-cover { background: linear-gradient(160deg, #fff0f8, #ffcae7); }
.blue-cover { background: linear-gradient(160deg, #e6f8ff, #b9ebfa); }
.catalog-cover img { width: 100%; max-height: 350px; object-fit: contain; border-radius: 14px; box-shadow: 0 13px 28px rgba(24,36,58,.16); }
.catalog-badge { position: absolute; top: 18px; left: 18px; padding: 7px 11px; border-radius: 999px; background: rgba(24,36,58,.86); color: #fff; font-size: .78rem; font-weight: 850; }
.catalog-body { padding: 38px 34px; display: flex; flex-direction: column; justify-content: center; }
.catalog-label { color: var(--pink-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.catalog-body h3 { margin: 10px 0 12px; font-size: 1.8rem; line-height: 1.15; }
.catalog-body p { margin: 0; color: var(--muted); }
.catalog-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.document-note { margin: 24px auto 0; max-width: 760px; text-align: center; color: var(--muted); font-size: .92rem; }

.prices-section { background: linear-gradient(180deg, #fff 0, #f6fbff 100%); }
.price-panel { overflow: hidden; border: 1px solid #dceaf1; border-radius: 32px; background: #fff; box-shadow: var(--shadow); }
.price-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 36px 38px 26px; }
.price-top h2 { margin: 8px 0 5px; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.04em; }
.price-top p { margin: 0; color: var(--muted); }
.price-tools { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfcfe; }
.search-box { display: flex; align-items: center; gap: 10px; width: min(100%, 460px); padding: 0 15px; border: 1px solid #d7dce6; border-radius: 14px; background: #fff; }
.search-box span { color: var(--blue-dark); font-size: 1.35rem; }
.search-box input { width: 100%; min-height: 48px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.price-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.price-tab { padding: 9px 14px; border: 1px solid #d8dce5; border-radius: 999px; background: #fff; font-size: .86rem; font-weight: 800; cursor: pointer; }
.price-tab.active { color: #fff; border-color: var(--pink); background: var(--pink); }
.results-summary { min-height: 52px; padding: 14px 38px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .9rem; }
#furniture-note { color: var(--pink-dark); font-weight: 800; }
.table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; min-width: 820px; }
.price-table th { padding: 14px 20px; text-align: left; background: var(--ink); color: #fff; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.price-table td { padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table tbody tr:hover { background: #fff9fc; }
.price-code { font-weight: 900; color: var(--blue-dark); white-space: nowrap; }
.price-name { min-width: 300px; }
.price-name strong { display: block; line-height: 1.35; }
.price-name small { display: block; margin-top: 5px; color: var(--muted); max-width: 520px; }
.line-pill { display: inline-flex; padding: 5px 10px; border-radius: 999px; background: #eef6fb; color: var(--blue-dark); font-size: .78rem; font-weight: 850; white-space: nowrap; }
.price-value { font-weight: 950; white-space: nowrap; }
.ask-product { padding: 8px 12px; border: 0; border-radius: 10px; background: #eaf8ef; color: #16733f; font-weight: 850; cursor: pointer; white-space: nowrap; }
.loading-row, .empty-row { padding: 45px !important; text-align: center; color: var(--muted); }
.pagination { min-height: 74px; padding: 18px 30px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.page-btn { min-width: 38px; height: 38px; border: 1px solid #d8dce5; border-radius: 11px; background: #fff; font-weight: 850; cursor: pointer; }
.page-btn.active { color: #fff; border-color: var(--blue-dark); background: var(--blue-dark); }
.page-btn:disabled { opacity: .45; cursor: not-allowed; }

.furniture-section { background: var(--ink); color: #fff; }
.furniture-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.furniture-copy h2 { margin: 12px 0 18px; font-size: clamp(2.35rem, 4.5vw, 4rem); line-height: 1.05; letter-spacing: -.045em; }
.furniture-copy p { color: #c9cfda; font-size: 1.05rem; }
.furniture-note { display: inline-flex; margin-top: 16px; padding: 11px 15px; border-radius: 12px; background: rgba(255,210,30,.15); color: #ffe36d; }
.furniture-section .btn-outline { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.furniture-collage { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 14px; min-height: 510px; }
.furniture-collage button { overflow: hidden; padding: 0; border: 0; border-radius: 24px; background: #fff; cursor: zoom-in; }
.furniture-collage img { width: 100%; height: 100%; object-fit: contain; background: #fff; transition: transform .35s ease; }
.furniture-collage button:hover img { transform: scale(1.04); }
.collage-main { grid-row: 1 / 3; }

.gallery-section { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 235px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 22px; background: #eef0f5; cursor: zoom-in; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; background: #fff; transition: transform .35s ease; }
.gallery-item span { position: absolute; left: 13px; bottom: 13px; padding: 7px 11px; border-radius: 999px; background: rgba(24,36,58,.78); color: #fff; font-size: .78rem; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item:hover span { opacity: 1; transform: translateY(0); }

.contact-section { background: var(--soft); }
.contact-card { position: relative; overflow: hidden; min-height: 390px; padding: 58px; border-radius: 36px; background: linear-gradient(135deg, var(--pink-dark), var(--pink) 52%, #ff58b8); color: #fff; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; box-shadow: 0 25px 60px rgba(198,0,112,.27); }
.contact-card::before { content: ""; position: absolute; width: 460px; height: 460px; right: -150px; top: -210px; border-radius: 50%; border: 70px solid rgba(255,255,255,.08); }
.section-kicker.light { color: #ffe7f4; }
.contact-copy { position: relative; z-index: 2; }
.contact-copy h2 { margin: 10px 0 10px; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.05em; }
.contact-copy > p { margin: 0 0 28px; font-size: 1.08rem; color: #ffe2f2; }
.contact-data { display: flex; flex-wrap: wrap; gap: 14px 32px; margin: 0; }
.contact-data div { min-width: 150px; }
.contact-data dt { color: #ffc9e6; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.contact-data dd { margin: 3px 0 0; font-weight: 900; }
.contact-button { position: relative; z-index: 2; display: flex; align-items: center; gap: 15px; min-width: 250px; padding: 18px 22px; border-radius: 22px; background: #fff; color: var(--ink); box-shadow: 0 17px 35px rgba(92,0,53,.2); transition: transform .2s ease; }
.contact-button:hover { transform: translateY(-4px); }
.wa-circle { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: var(--green); color: #fff; font-weight: 950; }
.contact-button small, .contact-button strong { display: block; }
.contact-button small { color: var(--muted); }
.contact-button strong { font-size: 1.25rem; }
.contact-decoration { position: absolute; right: 26%; bottom: -35px; display: flex; gap: 8px; opacity: .13; transform: rotate(-8deg); }
.contact-decoration span { display: grid; place-items: center; width: 90px; height: 110px; border-radius: 18px; background: #fff; color: var(--pink); font-size: 3rem; font-weight: 950; }

.site-footer { padding: 65px 0 20px; background: #10192b; color: #e6e9ef; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 60px; }
.footer-brand img { width: 220px; height: auto; padding: 12px; border-radius: 16px; background: #fff; }
.footer-brand p { color: #aeb7c6; }
.site-footer h2 { margin: 0 0 16px; font-size: 1rem; color: #fff; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: #aeb7c6; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #8f9bad; font-size: .9rem; }
.footer-bottom a { margin: 0; }

.floating-whatsapp { position: fixed; z-index: 900; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 9px; padding: 10px 15px 10px 9px; border-radius: 999px; background: #24b864; color: #fff; box-shadow: 0 14px 30px rgba(36,184,100,.34); }
.floating-whatsapp span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18); font-size: .78rem; font-weight: 950; }
.floating-whatsapp strong { font-size: .9rem; }

.media-modal, .pdf-modal { padding: 0; border: 0; border-radius: 24px; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.media-modal::backdrop, .pdf-modal::backdrop { background: rgba(8,13,24,.85); backdrop-filter: blur(6px); }
.media-modal { width: min(1000px, calc(100% - 24px)); max-height: calc(100vh - 24px); background: #101725; color: #fff; }
.media-modal figure { margin: 0; min-height: 72vh; padding: 45px 70px 28px; display: grid; place-items: center; }
.media-modal img { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 12px; background: #fff; }
.media-modal figcaption { margin-top: 13px; color: #c9d0dc; }
.modal-close, .pdf-close { border: 0; background: transparent; cursor: pointer; }
.modal-close { position: absolute; top: 12px; right: 15px; z-index: 5; color: #fff; font-size: 2rem; }
.modal-nav { position: absolute; top: 50%; z-index: 4; width: 48px; height: 56px; border: 0; border-radius: 14px; background: rgba(255,255,255,.12); color: #fff; font-size: 2.4rem; cursor: pointer; transform: translateY(-50%); }
.modal-prev { left: 14px; }
.modal-next { right: 14px; }
.pdf-modal { width: min(1180px, calc(100% - 22px)); height: min(90vh, 860px); background: #fff; }
.pdf-modal-head { min-height: 62px; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.pdf-modal-head > div { display: flex; align-items: center; gap: 12px; }
.pdf-modal-head a { color: var(--blue-dark); font-weight: 800; font-size: .9rem; }
.pdf-close { font-size: 2rem; color: var(--ink); }
.pdf-modal iframe { width: 100%; height: calc(100% - 63px); border: 0; background: #f3f4f7; }
.noscript { padding: 16px; background: #fff4c1; color: #4f4300; text-align: center; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .hero-grid { gap: 36px; }
  .floating-card { width: 145px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-card { grid-template-columns: 40% 60%; }
  .catalog-body { padding: 28px 24px; }
  .price-tools { align-items: flex-start; flex-direction: column; }
  .price-tabs { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .section-pad { padding: 74px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 20px; right: 20px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .22s ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 12px 13px; }
  .site-nav > a:not(.nav-whatsapp)::after { display: none; }
  .nav-whatsapp { margin-top: 6px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-grid, .intro-grid, .furniture-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-person, .hero-actions { justify-content: center; }
  .hero-visual { min-height: 390px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-card:nth-child(2) { border-right: 0; }
  .quick-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-grid { gap: 45px; }
  .section-heading { text-align: center; }
  .section-heading p { margin-inline: auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading { display: block; text-align: center; }
  .split-heading p { margin: 0 auto; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card { max-width: 760px; margin-inline: auto; }
  .price-top { align-items: flex-start; }
  .furniture-copy { text-align: center; }
  .furniture-copy .hero-actions { justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-card { grid-template-columns: 1fr; text-align: center; }
  .contact-data { justify-content: center; }
  .contact-button { justify-self: center; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand { width: 180px; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
  .hero-logo-card { padding: 28px 18px; border-radius: 28px; }
  .floating-card-one { left: 0; }
  .floating-card-two { right: 0; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--line); text-align: center; }
  .quick-card:last-child { border-bottom: 0; }
  .intro-cards { grid-template-columns: 1fr; }
  .intro-cards article { min-height: auto; }
  .intro-cards article:nth-child(2) { transform: none; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .category-card { min-height: 150px; padding: 18px; }
  .category-card h3 { font-size: .97rem; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-cover { min-height: 340px; }
  .catalog-cover img { max-height: 290px; }
  .catalog-body { text-align: center; }
  .catalog-actions { justify-content: center; }
  .price-top { flex-direction: column; padding: 28px 22px 20px; }
  .price-tools { padding: 16px 22px; }
  .results-summary { padding: 13px 22px; flex-direction: column; gap: 4px; }
  .furniture-collage { min-height: 430px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.5fr .8fr; }
  .collage-main { grid-column: 1 / 3; grid-row: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .contact-card { padding: 42px 22px; border-radius: 28px; }
  .contact-data { display: grid; grid-template-columns: 1fr; }
  .contact-button { min-width: 0; width: 100%; max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .floating-whatsapp strong { display: none; }
  .floating-whatsapp { padding: 9px; }
  .media-modal figure { padding: 48px 16px 24px; }
  .modal-nav { width: 42px; height: 48px; background: rgba(24,36,58,.65); }
  .pdf-modal-head strong { max-width: 145px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .pdf-modal-head a { font-size: .8rem; }
}

@media (max-width: 430px) {
  .category-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .floating-card { width: 132px; padding: 13px; }
  .floating-card span { font-size: 1.15rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide { grid-column: span 1; }
}

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