/* GS_PORQUE_ESCOLHER_CSS_V1_2026-05-30 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base: #3A3530;
  --bg-deep: #2A2520;
  --bg-card: #322E29;
  --bg-black: #120F0C;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --white: #FAFAF8;
  --soft: #EDE8E0;
  --muted: #C8C0B4;
  --muted-dark: #8A8278;
  --line: rgba(201,168,76,.22);
  --shadow: 0 24px 80px rgba(0,0,0,.34);
  --radius: 24px;
  --radius-sm: 14px;
  --whatsapp: #25D366;
  --fixed-address-height: 48px;
}

html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  background: var(--bg-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: var(--fixed-address-height);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
.is-hidden { display: none !important; }
.brand-term { text-transform: none !important; letter-spacing: normal !important; font-variant: normal !important; white-space: nowrap; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 72px 0; position: relative; }
.section--deep { background: var(--bg-deep); }
.section--black { background: var(--bg-black); }

.topbar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  background: #080706;
  color: var(--soft);
  border-bottom: 1px solid rgba(201,168,76,.15);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
  white-space: normal;
}
.topbar span { color: var(--gold); }

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(42,37,32,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header__inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; min-width: 220px; }
.brand__logo { width: 238px; height: auto; max-height: 62px; object-fit: contain; object-position: left center; }
.brand__fallback { display: inline-flex; flex-direction: column; line-height: .98; }
.brand__fallback strong { font-family: 'Cormorant Garamond', serif; font-size: 27px; font-weight: 600; color: var(--white); letter-spacing: .02em; }
.brand__fallback span { margin-top: 4px; font-size: 9px; font-weight: 800; letter-spacing: .34em; color: var(--gold); text-transform: none; }
.nav { display: flex; align-items: center; justify-content: center; gap: 30px; flex: 1; }
.nav__link { color: var(--soft); font-size: 12px; font-weight: 800; letter-spacing: .15em; transition: color .2s ease; white-space: nowrap; }
.nav__link:hover, .nav__link.is-active { color: var(--gold-light); }
.header__actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 14px 24px;
  min-height: 48px;
  color: var(--bg-deep);
  background: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,.24); }
.btn-small { min-height: 40px; padding: 10px 18px; font-size: 11px; }
.btn-outline { background: transparent; color: var(--soft); border-color: rgba(237,232,224,.22); }
.btn-outline:hover { color: var(--gold-light); border-color: var(--gold); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--bg-deep); border-color: rgba(232,201,106,.42); }
.btn-whatsapp { background: var(--whatsapp); border-color: var(--whatsapp); color: #052A12; }
.btn-whatsapp:hover { background: #37E277; border-color: #37E277; }

.menu-btn { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(201,168,76,.32); border-radius: 12px; background: transparent; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-btn span, .menu-btn::before, .menu-btn::after { content: ""; display: block; width: 18px; height: 2px; background: var(--gold-light); border-radius: 2px; }
.mobile-nav { display: none; position: fixed; left: 0; right: 0; top: 112px; z-index: 89; background: rgba(18,15,12,.98); border-bottom: 1px solid var(--line); padding: 18px 24px 24px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 0; color: var(--soft); border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13px; font-weight: 800; letter-spacing: .12em; }

.eyebrow { display: inline-flex; align-items: center; gap: 14px; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 22px; }
.eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold); }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }

.why-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
  background:
    radial-gradient(circle at 78% 24%, rgba(232,201,106,.13), transparent 18rem),
    linear-gradient(90deg, rgba(42,37,32,.96), rgba(58,53,48,.92));
}
.why-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.why-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 470px); gap: 56px; align-items: center; }
.why-hero h1 { max-width: 760px; color: var(--white); font-size: clamp(50px, 6.4vw, 82px); font-weight: 500; line-height: .96; letter-spacing: -.04em; }
.why-hero__text { max-width: 620px; margin: 28px 0 0; color: var(--soft); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.7; }
.why-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.why-hero__card { overflow: hidden; border: 1px solid rgba(201,168,76,.26); border-radius: 32px; background: rgba(18,15,12,.44); box-shadow: var(--shadow); }
.why-hero__image { min-height: 300px; background: radial-gradient(circle at 50% 45%, rgba(232,201,106,.22), transparent 7rem), linear-gradient(135deg, #3B362F, #24201C); }
.why-hero__image img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; opacity: .95; }
.why-hero__card-body { padding: 28px; }
.why-hero__card-body strong { color: var(--gold-light); font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: none; }
.why-hero__card-body p { margin-top: 12px; color: var(--soft); font-size: 15px; line-height: 1.7; }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proof-card { min-height: 142px; padding: 24px; border: 1px solid rgba(201,168,76,.22); border-radius: var(--radius); background: rgba(50,46,41,.76); }
.proof-card strong { display: block; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: none; }
.proof-card span { display: block; margin-top: 10px; color: var(--soft); font-size: 14px; line-height: 1.55; }

.split { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: 54px; align-items: center; }
.section__label { color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .26em; text-transform: none; margin-bottom: 10px; }
.section__title { color: var(--white); font-size: clamp(42px, 5.4vw, 66px); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
.section__intro { max-width: 520px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section__head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section__head--center { align-items: center; }
.editorial-card { padding: 44px; border: 1px solid rgba(201,168,76,.26); border-radius: 30px; background: radial-gradient(circle at 82% 16%, rgba(232,201,106,.12), transparent 9rem), rgba(18,15,12,.46); box-shadow: var(--shadow); }
.editorial-card p { color: var(--soft); font-size: 18px; line-height: 1.85; }
.editorial-card p + p { margin-top: 18px; }

.reason-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.reason-card { min-height: 260px; padding: 28px; border: 1px solid rgba(201,168,76,.22); border-radius: var(--radius); background: rgba(50,46,41,.8); transition: transform .2s ease, border-color .2s ease; }
.reason-card:hover { transform: translateY(-4px); border-color: rgba(232,201,106,.48); }
.reason-card__num { color: rgba(232,201,106,.28); font-size: 42px; font-weight: 800; line-height: 1; }
.reason-card h3 { margin-top: 24px; color: var(--white); font-size: 30px; font-style: italic; font-weight: 500; }
.reason-card p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.step-card { min-height: 210px; padding: 26px; border-radius: var(--radius); border: 1px solid rgba(201,168,76,.22); background: linear-gradient(160deg, rgba(50,46,41,.92), rgba(42,37,32,.96)); }
.step-card span { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(232,201,106,.4); color: var(--gold-light); font-weight: 800; }
.step-card h3 { margin-top: 20px; color: var(--white); font-size: 28px; font-style: italic; font-weight: 500; }
.step-card p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.trust-box { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 42px; align-items: start; padding: 42px; border: 1px solid rgba(201,168,76,.25); border-radius: 30px; background: rgba(18,15,12,.36); box-shadow: var(--shadow); }
.trust-box h2 { color: var(--white); font-size: clamp(38px, 5vw, 62px); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
.trust-box__list { display: grid; gap: 14px; }
.trust-box__list p { padding: 18px; border: 1px solid rgba(201,168,76,.18); border-radius: 16px; background: rgba(50,46,41,.74); color: var(--soft); font-size: 15px; line-height: 1.7; }
.trust-box__list strong { color: var(--gold-light); }

.cta-final { text-align: center; padding: 78px 24px; }
.cta-final h2 { font-size: clamp(44px, 6vw, 74px); font-weight: 500; line-height: .96; letter-spacing: -.035em; }
.cta-final p { max-width: 640px; margin: 22px auto 0; color: var(--soft); font-size: 18px; line-height: 1.75; }
.cta-final__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.footer { background: #050504; border-top: 1px solid rgba(201,168,76,.16); padding: 44px 0 calc(24px + var(--fixed-address-height)); }
.footer__grid { display: grid; grid-template-columns: 1.2fr repeat(3, .8fr); gap: 34px; }
.footer__brand img { width: 220px; max-height: 64px; object-fit: contain; object-position: left center; }
.footer__brand strong { display: block; color: var(--gold-light); font-size: 18px; }
.footer p { margin-top: 16px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.footer h3 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 12px; }
.footer a { display: block; color: var(--muted); font-size: 13px; line-height: 2; transition: color .2s ease; }
.footer a:hover { color: var(--gold-light); }
.footer__bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }

.fixed-address-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 94; display: flex; justify-content: center; align-items: center; min-height: var(--fixed-address-height); padding: 8px 18px; background: rgba(0,0,0,.94); border-top: 1px solid rgba(201,168,76,.35); color: var(--gold-light); font-size: 12px; line-height: 1.35; text-align: center; letter-spacing: .02em; box-shadow: 0 -10px 30px rgba(0,0,0,.28); }
.fixed-address-bar:hover { color: var(--white); }
.floating-whatsapp { position: fixed !important; right: 18px !important; top: 112px !important; bottom: auto !important; z-index: 1000; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; min-width: 48px; padding: 0; border-radius: 50%; background: var(--whatsapp); color: #052A12; box-shadow: 0 16px 42px rgba(0,0,0,.34); transition: transform .18s ease, background .18s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #37E277; }
.floating-whatsapp svg { width: 24px; height: 24px; flex: 0 0 auto; }

@media (max-width: 1080px) {
  .nav { gap: 18px; }
  .brand__logo { width: 208px; }
  .header__actions .btn-outline { display: none; }
  .why-hero__grid, .split, .trust-box { grid-template-columns: 1fr; }
  .why-hero__card { max-width: 560px; }
  .proof-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 34px, 1160px); }
  .topbar { height: auto; min-height: 38px; padding: 7px 10px; gap: 5px 8px; font-size: 10.4px; line-height: 1.28; letter-spacing: .045em; white-space: normal; flex-wrap: wrap; text-align: center; overflow: visible; }
  .header__inner { height: 68px; gap: 12px; }
  .brand { min-width: 0; max-width: calc(100% - 58px); }
  .brand__logo { width: 210px; max-width: 64vw; max-height: 56px; object-fit: contain; object-position: left center; }
  .brand__fallback strong { font-size: 25px; }
  .brand__fallback span { font-size: 8px; letter-spacing: .28em; }
  .nav, .header__actions .btn { display: none; }
  .menu-btn { display: flex; flex: 0 0 42px; }
  .mobile-nav { top: 98px; }
  .section { padding: 56px 0; }
  .why-hero { padding: 58px 0 56px; }
  .why-hero h1 { font-size: clamp(44px, 13vw, 64px); }
  .why-hero__text { font-size: 17px; }
  .why-hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
  .why-hero__actions .btn { width: 100%; min-width: 0; min-height: 44px; padding: 11px 8px; font-size: 9.2px; letter-spacing: .07em; gap: 6px; text-align: center; }
  .why-hero__image, .why-hero__image img { min-height: 235px; }
  .section__head { display: block; }
  .section__intro { margin-top: 16px; }
  .proof-grid, .reason-grid, .steps-grid { grid-template-columns: 1fr; }
  .editorial-card, .trust-box { padding: 30px; border-radius: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .fixed-address-bar { font-size: 11px; min-height: 44px; padding: 7px 12px; }
  .floating-whatsapp { right: 14px !important; top: 104px !important; bottom: auto !important; width: 44px; height: 44px; min-width: 44px; }
  .floating-whatsapp svg { width: 22px; height: 22px; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar { font-size: 9.2px; gap: 4px 6px; letter-spacing: .035em; }
  .brand__logo { width: 198px; max-width: 62vw; }
  .why-hero__actions { gap: 8px; }
  .why-hero__actions .btn { font-size: 8.6px; padding-left: 6px; padding-right: 6px; letter-spacing: .055em; }
}


/* GS_WHATSAPP_BOTOES_REDONDOS_V1_2026-05-31 */
.btn-whatsapp:not(.btn-whatsapp--text) {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: var(--whatsapp) !important;
  border-color: var(--whatsapp) !important;
  color: #052A12 !important;
  font-size: 0 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  flex: 0 0 48px !important;
  overflow: hidden !important;
}
.btn-whatsapp:not(.btn-whatsapp--text):hover {
  background: #37E277 !important;
  border-color: #37E277 !important;
}
.btn-whatsapp:not(.btn-whatsapp--text) svg {
  width: 23px !important;
  height: 23px !important;
  display: block !important;
  flex: 0 0 auto !important;
}
.btn-whatsapp--text {
  background: var(--whatsapp) !important;
  border-color: var(--whatsapp) !important;
  color: #052A12 !important;
}
.btn-whatsapp--text:hover {
  background: #37E277 !important;
  border-color: #37E277 !important;
}
@media (max-width: 760px) {
  .btn-whatsapp:not(.btn-whatsapp--text) {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    flex-basis: 44px !important;
  }
  .btn-whatsapp:not(.btn-whatsapp--text) svg {
    width: 22px !important;
    height: 22px !important;
  }
}


/* GS_NOME_GOLDEN_SISTERS_PADRONIZADO_V1_2026-05-31 */
.brand-name,
.brand-term.brand-name,
.eyebrow .brand-name,
.section__label .brand-name {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-variant: normal !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  hyphens: none !important;
}


/* GS_PORQUE_ESCOLHER_CARDS_ACAO_V1_2026-05-31 */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.proof-card--link {
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.proof-card--link:hover {
  transform: translateY(-3px);
  border-color: rgba(232,201,106,.55);
  background: rgba(42,37,32,.86);
}
.proof-card--link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}
@media (max-width:1080px) {
  .proof-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width:760px) {
  .proof-grid { grid-template-columns: 1fr; }
}

