@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --c-brand: #122a44;
  --c-brand-deep: #0b1e30;
  --c-brand-deeper: #07131f;
  --c-brand-glow: #1a3a5c;
  --c-cream: #fafaf7;
  --c-white: #ffffff;
  --c-gray-100: #e2e5e8;
  --c-gray-300: #a7a7a7;
  --c-gray-500: #6b7480;
  --c-gray-700: #3d4753;
  --c-text: #1a2530;
  --c-silver: #a8b4be;
  --c-silver-deep: #7e8e9a;
  --c-on-dark: rgba(255, 255, 255, 1);
  --c-on-dark-72: rgba(255, 255, 255, 0.72);
  --c-on-dark-50: rgba(255, 255, 255, 0.5);
  --c-on-dark-15: rgba(255, 255, 255, 0.15);
  --c-on-dark-08: rgba(255, 255, 255, 0.08);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
  --container: 1280px;
  --container-wide: 1440px;
  --nav-h: 80px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--c-text);
  background: var(--c-brand);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--c-silver);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--c-white);
  color: var(--c-brand);
  transform: translateY(-140%);
  transition: transform 200ms var(--ease-standard);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px;
}

.container-wide {
  max-width: var(--container-wide);
}

.container-narrow {
  max-width: 760px;
}

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

.eyebrow {
  margin: 0 0 24px;
  color: var(--c-silver);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.on-light {
  color: var(--c-brand);
}

.display,
.page-title,
.section-title,
.section-kicker,
.metric-value,
.timeline-year {
  font-family: var(--font-serif);
}

.display {
  max-width: 980px;
  margin: 0 0 40px;
  color: var(--c-white);
  font-size: 88px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.display strong,
.page-title strong,
.section-title strong {
  font-weight: 700;
}

.display-line {
  display: block;
  opacity: 0;
  transform: translateY(70%);
  animation: line-up 900ms var(--ease-out) forwards;
}

.display-line:nth-child(2) {
  animation-delay: 160ms;
}

.display-line:nth-child(3) {
  animation-delay: 320ms;
}

@keyframes line-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead {
  max-width: 620px;
  margin: 0;
  color: var(--c-on-dark-72);
  font-size: 22px;
  line-height: 1.5;
}

.lead.on-light {
  color: var(--c-gray-700);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 18px 36px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: color 350ms var(--ease-standard),
              border-color 220ms var(--ease-standard),
              transform 280ms var(--ease-standard),
              box-shadow 350ms var(--ease-standard);
}

.btn span[aria-hidden] {
  display: inline-block;
  transition: transform 320ms var(--ease-out);
}

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

.btn:hover span[aria-hidden] {
  transform: translateX(6px);
}

.btn-primary {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4EFE3 100%);
  color: var(--c-brand);
  box-shadow:
    inset 0 -1px 0 0 var(--c-silver),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
    0 18px 36px -20px rgba(7, 19, 31, 0.45),
    0 2px 6px -2px rgba(7, 19, 31, 0.18);
  transition: color 350ms var(--ease-standard),
              transform 280ms var(--ease-standard),
              box-shadow 380ms var(--ease-standard);
}

.btn-primary:hover {
  color: var(--c-brand-deep);
  box-shadow:
    inset 0 -4px 0 0 var(--c-silver),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
    0 26px 54px -22px rgba(7, 19, 31, 0.55),
    0 4px 12px -4px rgba(7, 19, 31, 0.25);
}

.btn-ghost {
  border-color: var(--c-on-dark-50);
  color: var(--c-white);
}

.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-silver);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.65, 0, 0.25, 1);
  z-index: -1;
  opacity: 0.08;
}

.btn-ghost:hover {
  border-color: var(--c-silver);
  color: var(--c-silver);
}

.btn-ghost:hover::before {
  transform: scaleX(1);
}

.btn-dark {
  background: var(--c-brand);
  color: var(--c-white);
}

.btn-dark:hover {
  background: var(--c-brand-glow);
}

.btn-outline {
  border-color: var(--c-brand);
  color: var(--c-brand);
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.65, 0, 0.25, 1);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--c-white);
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--c-silver);
  padding-bottom: 5px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 200ms var(--ease-standard), gap 200ms var(--ease-standard);
}

.text-link:hover {
  color: var(--c-silver);
  gap: 14px;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: var(--c-white);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease-standard), box-shadow 300ms var(--ease-standard);
}

.nav.is-scrolled,
.nav.nav-solid,
.menu-open .nav {
  border-bottom-color: rgba(18, 42, 68, 0.1);
  box-shadow: 0 2px 16px rgba(18, 42, 68, 0.06);
}

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

.nav-logo {
  display: inline-flex;
  align-items: center;
  width: 154px;
}

.nav-logo img {
  width: 154px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link,
.nav-lang {
  color: var(--c-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 200ms var(--ease-standard);
}

.nav-link:hover,
.nav-link.is-active,
.nav-lang:hover {
  color: var(--c-silver);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(18, 42, 68, 0.15);
  border-radius: 0;
  background: transparent;
  color: var(--c-brand);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 240ms var(--ease-standard), opacity 240ms var(--ease-standard);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 90;
  display: none;
  background: var(--c-brand-deeper);
  color: var(--c-white);
  padding: 36px 24px;
}

.mobile-panel a {
  display: block;
  border-bottom: 1px solid var(--c-on-dark-15);
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.1;
}

.menu-open .mobile-panel {
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--c-cream);
  color: var(--c-brand);
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: ken-burns 2400ms var(--ease-in-out) forwards;
}

@keyframes ken-burns {
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img {
    animation: none;
    transform: none;
  }
}

.hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.97) 28%,
    rgba(255, 255, 255, 0.6) 52%,
    rgba(255, 255, 255, 0) 74%
  );
}

.hero__text {
  max-width: 700px;
}

.hero .display {
  color: var(--c-brand);
}

.hero .lead {
  color: var(--c-gray-700);
}

.hero::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 10%;
  width: 1px;
  height: 50%;
  background: linear-gradient(var(--c-silver), transparent);
  opacity: 0.5;
  z-index: 1;
}

.hero-sidebar-label {
  position: absolute;
  left: 32px;
  top: 52%;
  z-index: 1;
  color: var(--c-silver);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 120px;
}

.hero-meta {
  position: absolute;
  right: 64px;
  bottom: 40px;
  display: flex;
  gap: 28px;
  color: var(--c-on-dark-50);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 160px 0;
}

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

.section-dark {
  background: var(--c-brand);
  color: var(--c-white);
}

.section-deep {
  background: var(--c-brand-deep);
  color: var(--c-white);
}

.section-light {
  background: var(--c-white);
}

.section-cream {
  background: var(--c-cream);
}

.section-header {
  max-width: 760px;
  margin-bottom: 72px;
}

.section-title {
  margin: 0;
  color: inherit;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-title.large {
  max-width: 1040px;
  font-size: 72px;
  line-height: 1.03;
}

.section-title + .lead,
.section-title + p {
  margin-top: 24px;
}

.rich-text {
  max-width: 820px;
}

.rich-text p {
  margin: 0 0 22px;
  color: var(--c-gray-700);
  font-size: 18px;
  line-height: 1.75;
}

.section-dark .rich-text p,
.section-deep .rich-text p {
  color: var(--c-on-dark-72);
}

.quote-band {
  border-left: 1px solid var(--c-silver);
  margin-top: 56px;
  padding-left: 32px;
  color: inherit;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.22;
}

.bignumbers {
  background: var(--c-brand-deep);
  color: var(--c-white);
  padding: 64px 0 150px;
}

.bignumbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--c-on-dark-15);
  border-bottom: 1px solid var(--c-on-dark-15);
}

.bignumber {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  min-width: 0;
  padding: 56px 32px;
  border-right: 1px solid var(--c-on-dark-15);
  overflow: hidden;
}

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

.metric-value {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  white-space: nowrap;
  color: var(--c-white);
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.4vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-prefix {
  color: var(--c-silver);
  font-size: 0.55em;
  margin-right: 4px;
}

.metric-unit {
  color: var(--c-silver);
  font-size: 0.42em;
  font-weight: 400;
  margin-left: 8px;
  align-self: flex-end;
  padding-bottom: 0.12em;
}

.metric-label {
  display: block;
  margin-top: 36px;
  color: var(--c-white);
  font-family: var(--font-serif);
  line-height: 1.2;
  text-transform: none;
}

.metric-label::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 20px;
  background: var(--c-silver);
}

.metric-label__primary {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.metric-label__secondary {
  display: block;
  margin-top: 4px;
  color: var(--c-on-dark-50);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0;
}

.shopping-list {
  display: flex;
  flex-direction: column;
  gap: 140px;
  margin-top: 96px;
}

.shopping-row {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
  position: relative;
}

.shopping-row:nth-child(even) {
  flex-direction: row-reverse;
}

.shopping-row__photo {
  position: relative;
  display: block;
  flex: 0 0 56%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--c-brand);
  --reveal-x: -80px;
}

.shopping-row:nth-child(even) .shopping-row__photo {
  --reveal-x: 80px;
}

.shopping-row__photo img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.6) brightness(0.82) contrast(1.05);
  transform: translate3d(0, var(--parallax-y, -5%), 0);
  transition: filter 500ms var(--ease-standard);
  will-change: transform;
}

.shopping-row__photo:hover img {
  filter: saturate(0.75) brightness(0.92) contrast(1.05);
}

/* Foto com nome do shopping no canto superior esquerdo (ex: Sulacap) */
.shopping-row__photo--top img {
  object-position: 15% 25%;
}

/* Foto com nome do shopping centralizado no topo (ex: Cascavel) */
.shopping-row__photo--center-top img {
  object-position: center 28%;
}

/* Foto panorâmica que não cabe bem em cover (ex: Cascavel banner), exibir inteira */
.shopping-row__photo--contain {
  background: var(--c-brand-deep);
}

.shopping-row__photo--contain img {
  object-fit: contain;
  height: 100%;
  transform: none;
  filter: saturate(0.85) brightness(1) contrast(1.02);
}

.shopping-row__photo--contain:hover img {
  filter: saturate(1) brightness(1) contrast(1.02);
}

/* Frame KKR fica mais sutil no card contain pra não brigar com o letterbox */
.shopping-row__photo--contain::before,
.shopping-row__photo--contain::after {
  border-color: rgba(201, 168, 87, 0.5);
}

.shopping-row__photo::before,
.shopping-row__photo::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: var(--c-silver);
  pointer-events: none;
  z-index: 2;
  transition: width 500ms var(--ease-out), height 500ms var(--ease-out);
}

.shopping-row__photo::before {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.shopping-row__photo::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.shopping-row__photo:hover::before,
.shopping-row__photo:hover::after {
  width: 76px;
  height: 76px;
}

.shopping-row__copy {
  position: relative;
  flex: 1 1 auto;
  max-width: 460px;
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 64px));
  --reveal-x: 40px;
}

.shopping-row:nth-child(even) .shopping-row__copy {
  padding-right: 0;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 64px));
  --reveal-x: -40px;
}

/* Reveal coreografado dos filhos quando .shopping-row vira .is-visible */
.shopping-row.reveal {
  opacity: 1;
  transform: none;
}

.shopping-row__photo,
.shopping-row__copy {
  opacity: 0;
  transform: translate3d(var(--reveal-x), 0, 0);
  transition: opacity 1100ms var(--ease-out), transform 1100ms var(--ease-out);
}

.shopping-row__copy {
  transition-delay: 220ms;
}

.shopping-row.is-visible .shopping-row__photo,
.shopping-row.is-visible .shopping-row__copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .shopping-row__photo,
  .shopping-row__copy {
    opacity: 1;
    transform: none;
  }
  .shopping-row__photo img {
    transform: none;
    height: 100%;
  }
}

.empreendimento-logo,
.shopping-row__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}

.shopping-row__copy .eyebrow {
  margin-bottom: 16px;
}

/* Placa de logo (usada em cases sobre fundo dark) */
.logo-plate {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  margin-bottom: 28px;
  background: var(--c-cream);
  box-shadow: 0 8px 24px -8px rgba(7, 19, 31, 0.45);
}

.logo-plate img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.logo-plate--sm {
  padding: 10px 16px;
  margin-bottom: 20px;
}

.logo-plate--sm img {
  height: 26px;
  max-width: 140px;
}

/* Vitrine de identidade do shopping (split: logo card + texto de apresentação) */
.shopping-identity-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.shopping-identity-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 3;
  padding: 56px;
  background: #FFFFFF;
  box-shadow:
    inset 0 -1px 0 0 rgba(201, 168, 87, 0.45),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
    0 24px 50px -28px rgba(7, 19, 31, 0.16);
}

/* Em fundo dark, vitrine ganha sombra mais profunda + degradê quente */
.section-deep .shopping-identity-card,
.section-dark .shopping-identity-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4EFE3 100%);
  box-shadow:
    inset 0 -1px 0 0 rgba(201, 168, 87, 0.5),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
    0 30px 60px -28px rgba(0, 0, 0, 0.55);
}

.shopping-identity-card::before,
.shopping-identity-card::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(201, 168, 87, 0.55);
  pointer-events: none;
}

.shopping-identity-card::before {
  top: 20px;
  left: 20px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.shopping-identity-card::after {
  right: 20px;
  bottom: 20px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.footer-social {
  margin-top: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--c-on-dark-72);
  font-size: 14px;
  text-decoration: none;
  transition: color 220ms var(--ease-standard);
}

.footer-social-link:hover {
  color: var(--c-white);
}

.shopping-identity-name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--c-brand);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0;
}

.shopping-identity-card img {
  display: block;
  max-width: 78%;
  max-height: 72%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Em fundo dark, eyebrow dourada e lead em branco-72 */
.section-deep .shopping-identity-text > .eyebrow,
.section-dark .shopping-identity-text > .eyebrow {
  color: var(--c-silver);
}

.section-deep .shopping-identity-text .lead,
.section-dark .shopping-identity-text .lead {
  color: var(--c-on-dark-72);
}

/* Em fundo light/cream, eyebrow brand e lead em cinza-700 */
.section-cream .shopping-identity-text > .eyebrow,
.section-light .shopping-identity-text > .eyebrow {
  color: var(--c-brand);
}

.section-cream .shopping-identity-text .lead,
.section-light .shopping-identity-text .lead {
  color: var(--c-gray-700);
}

.section-cream .shopping-identity-text .text-link,
.section-light .shopping-identity-text .text-link {
  color: var(--c-brand);
}

.section-cream .shopping-identity-text .text-link:hover,
.section-light .shopping-identity-text .text-link:hover {
  color: var(--c-silver);
}

@media (max-width: 920px) {
  .shopping-identity-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shopping-identity-card {
    aspect-ratio: 4 / 3;
    padding: 40px;
  }

  .shopping-identity-card::before,
  .shopping-identity-card::after {
    width: 28px;
    height: 28px;
  }
}

.shopping-row__copy h3 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

.shopping-row__copy p {
  margin: 0 0 36px;
  max-width: 460px;
  color: var(--c-gray-700);
  font-size: 17px;
  line-height: 1.65;
}

.shopping-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: -16px 0 36px;
  color: var(--c-gray-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shopping-row__meta span {
  position: relative;
}

.shopping-row__meta span + span::before {
  content: "·";
  position: absolute;
  left: -18px;
  color: var(--c-silver);
}

.shopping-row__copy .text-link {
  color: var(--c-text);
}

.shopping-row__copy .text-link:hover {
  color: var(--c-silver);
}

.empreendimentos-listing .shopping-row__copy {
  box-sizing: content-box;
  flex: 0 1 500px;
  max-width: 500px;
}

.empreendimentos-listing .shopping-row__copy h3,
.empreendimentos-listing .shopping-row__copy p {
  max-width: 500px;
}

.empreendimentos-listing .shopping-row__copy h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.case-card,
.work-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--c-brand-deep);
  color: var(--c-white);
  padding: 48px;
  transition: transform 400ms var(--ease-out), background 400ms var(--ease-out);
}

.case-card:hover,
.work-card:hover {
  transform: translateY(-8px);
  background: var(--c-brand);
}

.case-card::before,
.case-card::after,
.work-card::before,
.work-card::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(201, 168, 87, 0.55);
  pointer-events: none;
  transition: width 450ms var(--ease-out), height 450ms var(--ease-out), border-color 250ms var(--ease-standard);
}

.case-card::before,
.work-card::before {
  top: 16px;
  left: 16px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.case-card::after,
.work-card::after {
  right: 16px;
  bottom: 16px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.case-card:hover::before,
.case-card:hover::after,
.work-card:hover::before,
.work-card:hover::after {
  width: 44px;
  height: 44px;
  border-color: var(--c-silver);
}

.shopping-photo-inline {
  position: relative;
  aspect-ratio: 4/3;
  margin: 0 -10px 28px;
  overflow: hidden;
  background: var(--c-brand);
}

.shopping-photo-inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.85) contrast(1.05);
}

.photo-dark {
  filter: saturate(0.6) brightness(0.85) contrast(1.05);
}

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

.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-brand);
}

.gallery-grid .gallery-item.is-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.85) contrast(1.05);
}

.page-hero.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 31, 0.55) 0%, rgba(18, 42, 68, 0.78) 70%, rgba(18, 42, 68, 0.92) 100%);
  z-index: 1;
}

.page-hero.has-photo.hero-split::after {
  background: linear-gradient(
    90deg,
    rgba(7, 19, 31, 0.88) 0%,
    rgba(18, 42, 68, 0.72) 38%,
    rgba(18, 42, 68, 0.28) 62%,
    rgba(18, 42, 68, 0.04) 100%
  );
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.85) contrast(1.05);
}

.page-hero.has-photo .page-hero-content {
  z-index: 2;
}

.anchors-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 56px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--c-on-dark-15);
  border-bottom: 1px solid var(--c-on-dark-15);
}

.anchors-strip span {
  color: var(--c-on-dark);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.85;
  transition: color 200ms var(--ease-standard), opacity 200ms var(--ease-standard);
}

.anchors-strip span:hover {
  color: var(--c-silver);
  opacity: 1;
}

.anchor-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}

.anchor-group .anchor-label {
  color: var(--c-silver);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.anchor-group .anchor-list {
  color: var(--c-on-dark-72);
  font-size: 16px;
  line-height: 1.5;
}

.case-card h3,
.work-card h3 {
  margin: 10px 0 14px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
}

.work-card h3 {
  font-size: 26px;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.case-card p,
.work-card p {
  margin: 0 0 28px;
  color: var(--c-on-dark-72);
  font-size: 15px;
}

.split-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

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

.work-card {
  min-height: 320px;
  padding: 32px;
}

.work-number {
  color: var(--c-silver);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.case-card {
  min-height: 500px;
}

.case-list {
  display: grid;
  gap: 0;
}

.case-editorial {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  padding: 96px 0;
  border-top: 1px solid var(--c-on-dark-15);
}

.case-editorial:first-child {
  padding-top: 0;
  border-top: 0;
}

.case-editorial h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.08;
}

.case-columns {
  display: grid;
  gap: 34px;
}

.case-section-title {
  margin-bottom: 10px;
  color: var(--c-silver);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.case-columns p {
  margin: 0;
  color: var(--c-on-dark-72);
  font-size: 16px;
}

.page-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-brand);
  color: var(--c-white);
  padding: calc(var(--nav-h) + 80px) 0 80px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.65;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero-content .lead {
  margin-top: 36px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--c-on-dark-50);
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--c-silver);
}

.page-title {
  margin: 0;
  color: var(--c-white);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-gray-100);
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 42px;
  padding: 34px 0;
  border-bottom: 1px solid var(--c-gray-100);
}

.timeline-year {
  color: var(--c-brand);
  font-size: 38px;
  line-height: 1;
}

.timeline-item p {
  margin: 0;
  color: var(--c-gray-700);
  font-size: 16px;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
}

.facts-table tr {
  border-bottom: 1px solid var(--c-gray-100);
}

.facts-table td {
  padding: 18px 0;
  vertical-align: top;
  font-size: 15px;
}

.facts-table td:first-child {
  width: 42%;
  color: var(--c-brand);
  font-weight: 700;
}

.facts-table td:last-child {
  color: var(--c-gray-700);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.tag {
  border: 1px solid var(--c-gray-100);
  padding: 8px 12px;
  color: var(--c-brand);
  font-size: 13px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-field {
  margin-bottom: 28px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--c-on-dark-72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--c-on-dark-50);
  border-radius: 0;
  background: transparent;
  color: var(--c-white);
  padding: 16px 0;
  font-size: 18px;
  outline: none;
  transition: border-color 200ms var(--ease-standard);
}

.form-field select option {
  color: var(--c-text);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--c-silver);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--c-on-dark-50);
}

.contact-block {
  border-top: 1px solid var(--c-on-dark-15);
  padding: 28px 0;
}

.contact-block h3 {
  margin: 0 0 10px;
  color: var(--c-silver);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-block p,
.contact-block a {
  margin: 0;
  color: var(--c-on-dark-72);
  font-size: 16px;
}

.contact-block a:hover {
  color: var(--c-silver);
}

.contact-map {
  position: relative;
  width: 100%;
  height: 480px;
  background: var(--c-cream);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25);
}

@media (max-width: 768px) {
  .contact-map {
    height: 360px;
  }
}

.cta-anchor {
  background: var(--c-brand-deeper);
  color: var(--c-white);
  padding: 150px 0;
  text-align: center;
}

.cta-anchor h2 {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 76px;
  font-weight: 300;
  line-height: 1.05;
}

.cta-anchor .btn-row {
  justify-content: center;
}

.footer {
  overflow: hidden;
  background: var(--c-brand-deeper);
  color: var(--c-on-dark-72);
  padding: 96px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 0.9fr;
  gap: 48px;
  margin-bottom: 80px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer p,
.footer li {
  color: var(--c-on-dark-72);
  font-size: 14px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
}

.footer a:hover {
  color: var(--c-silver);
}

.footer-logos {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logos-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logos-label {
  margin: 0;
  color: var(--c-on-dark-50);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logos-row img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--c-on-dark-15);
  padding-top: 24px;
  color: var(--c-on-dark-50);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

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

.stagger-1 {
  transition-delay: 100ms;
}

.stagger-2 {
  transition-delay: 200ms;
}

.stagger-3 {
  transition-delay: 300ms;
}

.stagger-4 {
  transition-delay: 400ms;
}

@media (max-width: 1180px) {
  .display {
    font-size: 80px;
  }

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

  .work-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .container {
    padding: 0 32px;
  }

  .nav-links,
  .nav-lang {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero-sidebar-label,
  .hero-meta {
    display: none;
  }

  .display {
    font-size: 62px;
  }

  .page-title {
    font-size: 44px;
  }

  .section-title.large,
  .cta-anchor h2 {
    font-size: 46px;
  }

  .section-title {
    font-size: 34px;
  }

  .section,
  .bignumbers,
  .cta-anchor {
    padding: 96px 0;
  }

  .cta-anchor {
    padding: 64px 0;
  }

  .split-grid,
  .facts-grid,
  .contact-grid,
  .case-editorial {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .shopping-grid,
  .case-grid,
  .bignumbers-grid {
    grid-template-columns: 1fr;
  }

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

  .bignumber {
    border-right: 0;
    border-bottom: 1px solid var(--c-on-dark-15);
  }

  .bignumber:nth-child(2n) {
    border-right: 0;
  }

  .bignumber:nth-child(2n-1) {
    border-right: 1px solid var(--c-on-dark-15);
  }

  .bignumber:last-child {
    border-bottom: 0;
  }

  .shopping-list {
    gap: 80px;
    margin-top: 64px;
  }

  .shopping-row,
  .shopping-row:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .shopping-row__photo {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .shopping-row__copy {
    max-width: none;
    padding: 0 24px;
  }

  .shopping-row:nth-child(even) .shopping-row__copy {
    padding: 0 24px;
  }

  .empreendimentos-listing .shopping-row__copy {
    box-sizing: border-box;
    flex: 1 1 auto;
    max-width: none;
  }

  .empreendimentos-listing .shopping-row__copy h3,
  .empreendimentos-listing .shopping-row__copy p {
    max-width: none;
  }

  .shopping-row__photo::before,
  .shopping-row__photo::after {
    width: 36px;
    height: 36px;
  }

  /* No mobile, todas as fotos entram pela mesma direção (simples) */
  .shopping-row__photo {
    --reveal-x: 0;
    transform: translate3d(0, 30px, 0);
  }
  .shopping-row__copy {
    --reveal-x: 0;
    transform: translate3d(0, 30px, 0);
  }
  .shopping-row.is-visible .shopping-row__photo,
  .shopping-row.is-visible .shopping-row__copy {
    transform: translate3d(0, 0, 0);
  }

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

  .gallery-grid .gallery-item.is-wide {
    grid-column: span 2;
  }

  .bignumber {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--c-on-dark-15);
  }

  .bignumber:last-child {
    border-bottom: 0;
  }

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

  .footer-logos {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 40px;
  }
}

@media (max-width: 560px) {
  :root {
    --nav-h: 64px;
  }

  .container {
    padding: 0 24px;
  }

  .nav-logo,
  .nav-logo img {
    width: 126px;
  }

  .hero-inner {
    padding-top: 136px;
    padding-bottom: 72px;
  }

  .display {
    font-size: 48px;
    line-height: 1.04;
  }

  .lead {
    font-size: 18px;
  }

  .btn {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 128px 0 64px;
  }

  .shopping-card,
  .case-card,
  .work-card {
    min-height: 340px;
    padding: 26px;
  }

  .shopping-mark {
    font-size: 48px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .work-card:last-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .reveal,
  .display-line {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Hero slideshow
   ============================================================ */

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero__slideshow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* prevent vertical gold line ::after from bleeding over the photo */
  position: relative;
  z-index: 1;
}

/* Frame: marcas de canto em ouro + fade inferior */
.hero__slides {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hero__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image:
    /* canto superior esquerdo */
    linear-gradient(to right,  rgba(201, 168, 87, .7), rgba(201, 168, 87, .7)),
    linear-gradient(to bottom, rgba(201, 168, 87, .7), rgba(201, 168, 87, .7)),
    /* canto superior direito */
    linear-gradient(to left,   rgba(201, 168, 87, .7), rgba(201, 168, 87, .7)),
    linear-gradient(to bottom, rgba(201, 168, 87, .7), rgba(201, 168, 87, .7)),
    /* canto inferior esquerdo */
    linear-gradient(to right,  rgba(201, 168, 87, .7), rgba(201, 168, 87, .7)),
    linear-gradient(to top,    rgba(201, 168, 87, .7), rgba(201, 168, 87, .7)),
    /* canto inferior direito */
    linear-gradient(to left,   rgba(201, 168, 87, .7), rgba(201, 168, 87, .7)),
    linear-gradient(to top,    rgba(201, 168, 87, .7), rgba(201, 168, 87, .7)),
    /* fade na base para profundidade */
    linear-gradient(to top, rgba(7, 19, 31, 0.45), transparent);
  background-size:
    28px 1px, 1px 28px,
    28px 1px, 1px 28px,
    28px 1px, 1px 28px,
    28px 1px, 1px 28px,
    100% 32%;
  background-position:
    top left,    top left,
    top right,   top right,
    bottom left, bottom left,
    bottom right, bottom right,
    bottom center;
  background-repeat: no-repeat;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__slide.is-active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 6000ms ease-in-out;
  filter: brightness(0.82) saturate(0.88);
}

.hero__slide-img--sulacap { object-position: 28% center; }

.hero__slide.is-active img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: opacity 400ms ease; }
  .hero__slide img,
  .hero__slide.is-active img { transform: none; transition: none; }
}

.hero__slideshow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
}

.hero__slideshow-caption {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.slideshow-caption__name {
  font: 300 14px/1 var(--font-serif);
  letter-spacing: -0.01em;
  color: var(--c-on-dark-72);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.slideshow-caption__city {
  font: 500 10px/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-silver);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 500ms ease 60ms, transform 500ms ease 60ms;
}

.slideshow-caption__name.is-visible,
.slideshow-caption__city.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__slideshow-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero__slideshow-dots .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 300ms ease, transform 300ms ease;
}

.hero__slideshow-dots .dot.is-active {
  background: var(--c-silver);
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 45%,
      rgba(255, 255, 255, 0.6) 100%
    );
  }

  .hero__text {
    max-width: 100%;
  }
}

.faq-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.faq-header .section-title {
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-gray-100);
}

.faq-item {
  border-bottom: 1px solid var(--c-gray-100);
}

.faq-item > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
  cursor: pointer;
  color: var(--c-brand);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  transition: color 200ms var(--ease-standard);
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary:hover {
  color: var(--c-brand-glow);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 240ms var(--ease-standard), opacity 240ms var(--ease-standard);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 0 24px;
  max-width: 900px;
  color: var(--c-gray-700);
  font-size: 16px;
  line-height: 1.65;
}

.faq-answer p {
  margin: 0 0 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item[open] .faq-answer {
  animation: faq-fade 320ms var(--ease-out) both;
}

@keyframes faq-fade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-item > summary {
    font-size: 18px;
    gap: 20px;
    padding: 22px 0;
  }

  .faq-answer {
    font-size: 16px;
    padding-bottom: 24px;
  }
}
