@import 'tailwindcss';

:root {
  --ink: #0b0b0b;
  --paper: #f4f2ed;
  --white: #ffffff;
  --orange: #ff7417;
  --orange-soft: #ff9a55;
  --line: #d7d3ca;
  --muted: #625f59;
  --radius-lg: 14px;
  --radius-md: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, 'Segoe UI', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
main { overflow-x: clip; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  grid-template-rows: 34px auto;
  column-gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 0 clamp(22px, 5vw, 76px) 12px;
  background: rgba(11, 11, 11, 0.96);
  color: white;
  border-bottom: 1px solid #2a2a2a;
  backdrop-filter: blur(14px);
}
.header-banner {
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
  white-space: nowrap;
}
.header-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  min-height: 34px;
  padding: 0 22px;
}
.header-banner-problem {
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header-banner-proof {
  color: rgba(11, 11, 11, 0.66);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-banner-divider {
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(11, 11, 11, 0.42);
}
.header-banner-cta {
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--ink);
  color: white;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.brand img { display: block; width: 225px; height: auto; }
nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-size: 0.82rem;
  font-weight: 700;
}
nav a { color: #d8d8d8; transition: color 160ms ease; }
nav a:hover { color: var(--orange); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--orange);
  border-radius: 10px;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(255, 116, 23, 0.14);
  font-family: Inter, 'Segoe UI', Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--orange-soft);
  box-shadow: 0 12px 26px rgba(255, 116, 23, 0.2);
}
.button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid white;
  outline-offset: 4px;
}
.button-small { min-height: 44px; padding: 0 17px; font-size: 0.76rem; }
.site-header .button-small { border-radius: 10px; }
.arrow-icon { width: 17px; height: 17px; flex: 0 0 auto; transition: transform 160ms ease; }
.button:hover .arrow-icon { transform: translate(2px, -2px); }
.whatsapp-icon { width: 18px; height: 18px; flex: 0 0 auto; }
.whatsapp-button {
  border-color: #20bf60;
  background: #20bf60;
  color: white;
  box-shadow: 0 7px 18px rgba(37, 211, 102, 0.14);
}
.whatsapp-button:hover {
  border-color: #25d366;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  min-height: calc(100vh - 112px);
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 118px) clamp(24px, 6vw, 92px);
}
.eyebrow, .section-number {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(4rem, 7.2vw, 7.7rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
h1 em { color: var(--orange); font-style: normal; }
.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #c9c9c9;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid #777;
  color: #dedede;
  font-size: 0.88rem;
  font-weight: 700;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 58px;
  color: #9b9b9b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-proof span::before { content: '●'; margin-right: 9px; color: var(--orange); }
.hero-media {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background: #343434;
  border-bottom-left-radius: 0;
}
.hero-media > img {
  z-index: 2;
  object-fit: cover;
  object-position: 50% 56%;
  filter: none;
}
.orange-orbit {
  position: absolute;
  z-index: 3;
  right: -90px;
  top: -110px;
  width: 310px;
  height: 310px;
  border: 44px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
}
.spaces-section { padding: 120px clamp(22px, 5.5vw, 84px); }
.section-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr;
  gap: 50px;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto 72px;
}
.section-heading .section-number { grid-column: 1 / -1; margin-bottom: -10px; }
.section-heading h2, .fiscal-copy h2, .faq-heading h2, .location-copy h2 {
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.3rem, 5.7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.section-heading > p:last-child {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.space-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  max-width: 1320px;
  min-height: 690px;
  margin: 0 auto 34px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(11, 11, 11, 0.07);
}
.space-card.reverse { grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.08fr); }
.space-card.reverse .space-photo { order: 2; }
.space-card.reverse .space-details { order: 1; background: var(--ink); color: white; }
.space-card.reverse .card-description { color: #bdbdbd; }
.space-card.reverse .feature-list li { border-color: #333; }
.space-photo { position: relative; min-height: 620px; overflow: hidden; background: #ddd; }
.space-photo img {
  object-fit: cover;
  object-position: center 53%;
  transition: transform 500ms ease;
}
.space-card:hover .space-photo img { transform: scale(1.025); }
.shared-photo img { object-position: center 47%; }
.photo-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.space-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}
.card-kicker {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.space-details h3 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.card-description {
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.65;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}
.feature-list li::before { content: '●'; margin-right: 9px; color: var(--orange); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 20px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}
.reverse .price-grid { background: #383838; border-color: #383838; }
.price-item { display: grid; gap: 7px; padding: 18px 14px; background: var(--paper); }
.reverse .price-item { background: #181818; }
.price-item span { color: var(--muted); font-size: 0.69rem; font-weight: 800; text-transform: uppercase; }
.reverse .price-item span { color: #989898; }
.price-item strong { font-size: clamp(1.15rem, 1.7vw, 1.5rem); }
.monthly-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: var(--orange);
  border-radius: 8px;
}
.monthly-offer div { display: grid; gap: 3px; }
.monthly-offer span { font-size: 0.7rem; font-weight: 700; }
.monthly-offer strong { font-size: 1.15rem; }
.monthly-offer a { font-size: 0.78rem; font-weight: 900; }
.full-button { width: 100%; }
.coworking-plans {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 6vw, 84px);
  max-width: 1320px;
  margin: 70px auto 0;
  padding: clamp(34px, 5vw, 64px);
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
}
.coworking-plans-heading { align-self: center; }
.coworking-plans-heading h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.coworking-plans-heading > p:last-child { margin-bottom: 0; color: #adadad; line-height: 1.65; }
.coworking-plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.coworking-plan-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid #393939;
  border-radius: var(--radius-md);
  background: #171717;
}
.coworking-plan-card.featured { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.coworking-plan-card > span { font-size: 0.73rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.coworking-plan-card > strong { margin: 14px 0 22px; font-size: clamp(2.6rem, 4vw, 4.3rem); line-height: 0.9; letter-spacing: -0.06em; }
.coworking-plan-card > strong small { margin-left: 5px; font-size: 0.28em; letter-spacing: 0; }
.coworking-plan-card ul { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; color: #b8b8b8; list-style: none; }
.coworking-plan-card.featured ul { color: #4e2a14; }
.coworking-plan-card li { font-size: 0.79rem; font-weight: 700; line-height: 1.45; }
.coworking-plan-card li::before { content: '✓'; margin-right: 9px; color: var(--orange); }
.coworking-plan-card.featured li::before { color: var(--ink); }
.coworking-plan-card a { align-self: flex-start; margin-top: auto; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 0.78rem; font-weight: 900; }
.pricing-note {
  max-width: 1320px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: right;
}

.benefits-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 28px clamp(22px, 5vw, 72px);
  background: var(--orange);
  white-space: nowrap;
  text-transform: uppercase;
}
.benefits-strip span { color: rgba(11, 11, 11, 0.48); font-size: 0.7rem; font-weight: 900; }
.benefits-strip strong { margin-right: 34px; font-size: clamp(0.82rem, 1.3vw, 1.05rem); }

.fiscal-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  min-height: 920px;
  margin: 24px;
  overflow: hidden;
  background: var(--ink);
  color: white;
  border-radius: 18px;
}
.fiscal-visual { position: relative; min-height: 720px; overflow: hidden; }
.fiscal-visual > img { object-fit: cover; filter: saturate(0.55) contrast(1.08); }
.fiscal-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 11, 11, 0.8));
}
.fiscal-seal {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 220px;
  height: 220px;
  padding: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
}
.fiscal-seal strong { font-family: Arial, Helvetica, sans-serif; font-size: 4.2rem; font-weight: 900; letter-spacing: -0.08em; }
.fiscal-seal span { max-width: 80px; font-size: 0.76rem; font-weight: 900; line-height: 1.15; text-transform: uppercase; }
.fiscal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(66px, 7vw, 112px) clamp(28px, 7vw, 116px);
}
.fiscal-copy h2 { max-width: 850px; margin-bottom: 30px; }
.fiscal-lead { max-width: 720px; margin-bottom: 28px; color: #bcbcbc; font-size: 1.03rem; line-height: 1.65; }
.fiscal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 26px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.fiscal-list li { padding: 13px 0; border-bottom: 1px solid #333; font-size: 0.82rem; font-weight: 700; }
.fiscal-list li::before { content: '✓'; margin-right: 10px; color: var(--orange); }
.fiscal-plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
.plan-card { display: grid; gap: 8px; padding: 26px; border: 1px solid #393939; background: #161616; }
.plan-card { border-radius: var(--radius-md); }
.plan-card.featured { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.plan-card span { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.plan-card strong { font-size: clamp(1.8rem, 2.8vw, 2.7rem); letter-spacing: -0.04em; }
.plan-card.featured strong { font-size: clamp(2.25rem, 3.25vw, 3.4rem); line-height: 0.95; }
.plan-card strong small { margin-left: 4px; color: inherit; font-size: 0.36em; letter-spacing: 0; }
.plan-card small { color: #969696; font-size: 0.72rem; }
.plan-card.featured small { color: #56301a; }
.legal-note { max-width: 720px; margin-bottom: 26px; color: #7f7f7f; font-size: 0.7rem; line-height: 1.55; }
.fiscal-button { align-self: flex-start; }

.home-risk-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 8vw, 120px);
  margin: 0;
  padding: clamp(72px, 9vw, 132px) clamp(24px, 8vw, 120px);
  overflow: hidden;
  background: #e9e6df;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.home-risk-section::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--orange);
}
.home-risk-title h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.home-risk-title .section-number { color: var(--orange); }
.home-risk-copy { max-width: 720px; }
.home-risk-copy > p { color: var(--muted); line-height: 1.7; }
.home-risk-copy .risk-lead { color: var(--ink); font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 750; line-height: 1.45; }
.risk-points { display: grid; gap: 0; margin: 30px 0 22px; border-top: 1px solid rgba(11, 11, 11, 0.28); }
.risk-points span { padding: 16px 0; border-bottom: 1px solid rgba(11, 11, 11, 0.28); font-size: 0.86rem; font-weight: 850; }
.risk-points span::before { content: '✓'; margin-right: 11px; }
.home-risk-copy .risk-disclaimer { margin-bottom: 26px; font-size: 0.69rem; line-height: 1.55; }
.risk-button { background: var(--orange); border-color: var(--orange); color: var(--ink); }

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(46px, 8vw, 120px);
  padding: 120px clamp(22px, 6vw, 94px);
  background: var(--paper);
}
.faq-heading h2 { max-width: 620px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary span { color: var(--orange); font-size: 0.72rem; }
summary b { font-size: 1.4rem; font-weight: 400; transition: transform 160ms ease; }
details[open] summary b { transform: rotate(45deg); }
details p { margin: -8px 0 28px 60px; color: var(--muted); line-height: 1.65; }

.location-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 600px;
  margin: 24px;
  overflow: hidden;
  background: var(--orange);
  border-radius: 18px;
}
.location-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(68px, 8vw, 120px); }
.location-copy .section-number { color: #70401f; }
.location-copy h2 { max-width: 800px; margin-bottom: 36px; }
address { margin-bottom: 34px; font-size: clamp(1rem, 1.6vw, 1.25rem); font-style: normal; font-weight: 700; line-height: 1.6; }
.location-actions { display: flex; align-items: center; gap: 24px; }
.location-actions .button { background: var(--ink); border-color: var(--ink); color: white; }
.dark-link { color: var(--ink); border-color: rgba(11, 11, 11, 0.4); }
.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(54px, 7vw, 100px);
  background: var(--ink);
  color: white;
}
.location-panel span { margin-bottom: auto; color: var(--orange); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.location-panel strong { max-width: 450px; margin-bottom: 20px; font-family: Arial, Helvetica, sans-serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.06em; text-transform: uppercase; }
.location-panel p { max-width: 480px; margin-bottom: 0; color: #a8a8a8; line-height: 1.6; }

footer {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 36px;
  align-items: start;
  padding: 70px clamp(22px, 5vw, 76px) 34px;
  background: var(--ink);
  color: #c3c3c3;
}
footer > img { width: 230px; height: auto; }
footer p { max-width: 420px; margin-bottom: 0; font-size: 0.85rem; line-height: 1.6; }
.footer-links { display: grid; gap: 12px; font-size: 0.8rem; font-weight: 700; }
.footer-links a:hover { color: var(--orange); }
footer small { grid-column: 1 / -1; margin-top: 44px; padding-top: 24px; border-top: 1px solid #2a2a2a; color: #6f6f6f; }
.floating-whatsapp {
  position: fixed;
  z-index: 18;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid #20bf60;
  border-radius: 10px;
  background: #20bf60;
  color: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), 0 6px 18px rgba(37, 211, 102, 0.2);
  font-family: Inter, 'Segoe UI', Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #20bd5a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), 0 8px 22px rgba(37, 211, 102, 0.26);
}
.floating-whatsapp .whatsapp-icon { width: 19px; height: 19px; }

@supports (animation-timeline: view()) {
  .section-heading,
  .space-photo,
  .space-details,
  .coworking-plans-heading,
  .coworking-plan-card,
  .benefits-strip > *,
  .fiscal-visual,
  .fiscal-copy,
  .plan-card,
  .home-risk-title,
  .home-risk-copy,
  .faq-heading,
  .faq-list,
  .location-copy,
  .location-panel {
    animation: reveal-up both ease-out;
    animation-timeline: view();
    animation-range: entry 8% cover 28%;
  }

  .space-card.reverse .space-photo,
  .space-card:not(.reverse) .space-details,
  .coworking-plan-card:nth-child(2),
  .fiscal-copy,
  .home-risk-copy,
  .faq-list,
  .location-panel {
    animation-name: reveal-side;
  }

  .benefits-strip > * { animation-range: entry 0% cover 18%; }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-side {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 220px 1fr auto; }
  nav { gap: 18px; font-size: 0.76rem; }
  .button-small { padding: 0 13px; }
  .fiscal-section { grid-template-columns: 0.85fr 1.15fr; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 102px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 102px; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 640px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading .section-number { margin-bottom: 0; }
  .space-card, .space-card.reverse { grid-template-columns: 1fr; }
  .space-card.reverse .space-photo, .space-card.reverse .space-details { order: initial; }
  .space-photo { min-height: 660px; }
  .coworking-plans { grid-template-columns: 1fr; }
  .fiscal-section { grid-template-columns: 1fr; }
  .home-risk-section { grid-template-columns: 1fr; }
  .fiscal-visual { min-height: 640px; }
  .faq-section { grid-template-columns: 1fr; }
  .location-section { grid-template-columns: 1fr; }
  .location-panel { min-height: 520px; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > img { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 32px auto;
    gap: 8px;
    min-height: 98px;
    padding: 0 14px 10px;
  }
  .header-banner-content { min-height: 32px; gap: 8px; padding: 0 10px; }
  .header-banner-proof,
  .header-banner-divider-secondary { display: none; }
  .header-banner-problem { font-size: 0; white-space: nowrap; }
  .header-banner-problem::after {
    content: 'Proteja seu endereço';
    font-size: 0.54rem;
    letter-spacing: 0.045em;
  }
  .header-banner-divider { width: 10px; }
  .header-banner-cta { padding: 5px 7px; font-size: 0.52rem; white-space: nowrap; }
  .brand { min-width: 0; }
  .brand img { width: min(124px, 100%); }
  .site-header .button-small {
    width: auto;
    min-height: 38px;
    padding: 0 9px;
    gap: 7px;
    border-radius: 9px;
  }
  .site-header .button-small span {
    display: inline;
    font-size: 0;
    white-space: nowrap;
  }
  .site-header .button-small span::after {
    content: 'Chamar no WhatsApp';
    font-size: 0.58rem;
  }
  .button-small .whatsapp-icon { width: 16px; height: 16px; }
  .hero-copy { padding: 62px 20px 54px; }
  h1 {
    font-size: clamp(3rem, 13.5vw, 4.1rem);
    letter-spacing: -0.07em;
  }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .text-link { align-self: flex-start; }
  .hero-proof { margin-top: 40px; }
  .hero-media { min-height: 520px; border-bottom-left-radius: 0; }
  .spaces-section { padding: 82px 18px; }
  .section-heading { margin-bottom: 42px; }
  .space-photo { min-height: 520px; }
  .space-details { padding: 36px 24px; }
  .feature-list { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-item { grid-template-columns: 1fr auto; align-items: center; }
  .coworking-plans { margin-top: 42px; padding: 34px 22px; }
  .coworking-plan-grid { grid-template-columns: 1fr; }
  .coworking-plan-card { min-height: 300px; }
  .pricing-note { text-align: left; }
  .benefits-strip {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px 16px;
    overflow: visible;
    white-space: normal;
  }
  .benefits-strip strong { margin-right: 0; line-height: 1.35; }
  .fiscal-section, .location-section { margin: 12px; border-radius: 12px; }
  .home-risk-section { margin: 0; border-radius: 0; }
  .fiscal-visual { min-height: 520px; }
  .fiscal-seal {
    right: 16px;
    bottom: 16px;
    gap: 8px;
    width: 164px;
    height: 164px;
    padding: 20px;
  }
  .fiscal-seal strong { font-size: 3.25rem; }
  .fiscal-seal span { max-width: 62px; font-size: 0.62rem; line-height: 1.08; }
  .fiscal-copy { min-width: 0; padding: 64px 20px; }
  .fiscal-copy h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.9vw, 2.8rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }
  .fiscal-list, .fiscal-plans { grid-template-columns: 1fr; }
  .faq-section { padding: 82px 20px; }
  .home-risk-section { padding: 72px 20px; }
  summary { grid-template-columns: 30px 1fr auto; gap: 10px; }
  details p { margin-left: 40px; }
  .location-copy, .location-panel { padding: 72px 20px; }
  .location-actions { align-items: stretch; flex-direction: column; }
  .dark-link { align-self: flex-start; }
  footer { grid-template-columns: 1fr; padding: 62px 20px 30px; }
  footer > img, footer small { grid-column: auto; }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 48px;
    min-height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2), 0 5px 14px rgba(37, 211, 102, 0.2);
  }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp .whatsapp-icon { width: 21px; height: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
