:root {
  --ink: #fff8ed;
  --muted: #ead4ca;
  --deep: #12080c;
  --wine: #6d2035;
  --wine-dark: #34131d;
  --gold: #c9a15b;
  --gold-soft: #efd392;
  --blush: #dba4af;
  --paper: #fff3df;
  --beige: #eadac4;
  --rose: #c98292;
  --mauve: #8a5363;
  --shadow: rgba(0, 0, 0, 0.48);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    linear-gradient(120deg, rgba(18, 8, 12, 0.99), rgba(109, 32, 53, 0.96) 38%, rgba(138, 83, 99, 0.88) 74%, rgba(35, 17, 22, 0.98)),
    repeating-linear-gradient(90deg, rgba(234, 218, 196, 0.08) 0 1px, transparent 1px 96px);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(45deg, transparent 0 47%, rgba(239, 211, 146, 0.14) 49% 51%, transparent 53%),
    linear-gradient(-45deg, transparent 0 47%, rgba(219, 164, 175, 0.11) 49% 51%, transparent 53%);
  background-size: 82px 82px;
}

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

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

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

button {
  color: inherit;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus-visible {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 8, 12, 0.94) 0%, rgba(88, 30, 45, 0.86) 38%, rgba(154, 93, 109, 0.66) 100%),
    linear-gradient(0deg, rgba(18, 8, 12, 0.96) 0%, transparent 36%, rgba(18, 8, 12, 0.22) 100%),
    url("assets/hero-luxo.png") center / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  right: 4vw;
  top: 90px;
  z-index: -1;
  width: min(760px, 48vw);
  height: calc(100% - 150px);
  border: 1px solid rgba(242, 217, 152, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 217, 152, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(255, 243, 223, 0.08), rgba(109, 32, 53, 0.18));
  box-shadow: inset 0 0 0 12px rgba(255, 249, 238, 0.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 86px 28px 28px;
  z-index: -1;
  border: 1px solid rgba(242, 217, 152, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 217, 152, 0.45);
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 243, 223, 0.05);
  box-shadow: 0 0 0 7px rgba(239, 211, 146, 0.08), 0 10px 28px rgba(0, 0, 0, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(242, 217, 152, 0.28);
  border-radius: 8px;
  background: rgba(16, 7, 9, 0.52);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
  background: rgba(242, 217, 152, 0.13);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 217, 152, 0.42);
  border-radius: 8px;
  background: rgba(16, 7, 9, 0.64);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 92px) 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(242, 217, 152, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 8, 12, 0.66), rgba(109, 32, 53, 0.34)),
    rgba(52, 19, 29, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
}

.welcome-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--paper);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.welcome-label::before,
.welcome-label::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.welcome-label::after {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: clamp(0.72rem, 1.2vw, 0.86rem);
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.about-copy h2,
.intro-copy h2,
.section-heading h2,
.experience-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
  overflow-wrap: break-word;
}

.hero-copy p:not(.eyebrow),
.about-text p,
.intro-panel p,
.section-heading p,
.experience-copy p,
.quote-wrap p,
.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.16rem);
  line-height: 1.8;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-assurances span {
  padding: 10px 12px;
  border: 1px solid rgba(242, 217, 152, 0.24);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(16, 7, 9, 0.36);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 49px;
  padding: 14px 20px;
  border: 1px solid rgba(242, 217, 152, 0.62);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: #17070c;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 52%, #9d6828);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.38);
}

.button.ghost {
  color: var(--paper);
  background: rgba(16, 7, 9, 0.45);
}

.button.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 680px;
}

.portrait-main,
.portrait-side,
.hero-seal,
.hero-note {
  position: absolute;
}

.portrait-main {
  right: 8%;
  top: 0;
  width: min(440px, 64vw);
  border: 0;
  border-radius: 46% 46% 40% 38% / 18% 18% 22% 24%;
  padding: 0;
  background: transparent;
  box-shadow: 0 34px 58px rgba(0, 0, 0, 0.32);
  transform: rotate(0.8deg);
  overflow: visible;
}

.portrait-main::before,
.portrait-main::after,
.portrait-side::before,
.portrait-side::after,
.about-photo::before,
.experience-media::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portrait-main::before {
  inset: -20px -26px -34px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 60% 16%, rgba(239, 211, 146, 0.28), transparent 45%),
    radial-gradient(ellipse at 34% 72%, rgba(201, 130, 146, 0.26), transparent 58%),
    linear-gradient(145deg, rgba(109, 32, 53, 0.34), rgba(18, 8, 12, 0.18));
  filter: blur(4px);
}

.portrait-main::after {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 54%, rgba(18, 8, 12, 0.52)),
    linear-gradient(90deg, rgba(18, 8, 12, 0.26), transparent 28%, transparent 74%, rgba(109, 32, 53, 0.22));
  mix-blend-mode: multiply;
}

.portrait-main img {
  height: 590px;
  width: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(0.98) brightness(0.92);
}

.portrait-side {
  left: 4%;
  bottom: 34px;
  width: min(245px, 34vw);
  border: 0;
  border-radius: 46% 46% 40% 38% / 20% 20% 24% 24%;
  padding: 0;
  background: transparent;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  overflow: visible;
}

.portrait-side::before {
  inset: -14px -16px -20px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 46% 20%, rgba(239, 211, 146, 0.22), transparent 46%),
    linear-gradient(145deg, rgba(74, 35, 46, 0.46), rgba(201, 130, 146, 0.14));
  filter: blur(4px);
}

.portrait-side::after {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 50%, rgba(18, 8, 12, 0.44));
  mix-blend-mode: multiply;
}

.portrait-side img {
  height: 350px;
  width: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(0.96) brightness(0.9);
}

.hero-seal {
  left: 43%;
  bottom: 78px;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(242, 217, 152, 0.46);
  border-radius: 50%;
  padding: 12px;
  background: radial-gradient(circle, rgba(255, 243, 223, 0.12), rgba(109, 32, 53, 0.5));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.hero-seal img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.hero-note {
  right: 0;
  bottom: 8px;
  max-width: 320px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 217, 152, 0.32);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(74, 35, 46, 0.82);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
  font-family: "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  line-height: 1.45;
}

.brand-watermark {
  position: relative;
  display: grid;
  min-height: 120px;
  padding: 26px max(20px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid rgba(239, 211, 146, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 243, 223, 0.92), rgba(234, 218, 196, 0.76), rgba(219, 164, 175, 0.22)),
    rgba(255, 243, 223, 0.84);
  color: #321d23;
  overflow: hidden;
}

.brand-watermark-mark {
  position: absolute;
  left: max(20px, calc((100vw - var(--max)) / 2));
  top: 50%;
  width: min(360px, 62vw);
  height: 86px;
  background: url("assets/client/logo-wide-mark-ink.png") left center / contain no-repeat;
  opacity: 0.24;
  transform: translateY(-50%);
  pointer-events: none;
}

.brand-watermark-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  margin-left: clamp(230px, 28vw, 360px);
  font-family: "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-watermark-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
  text-align: center;
  line-height: 1.2;
}

.brand-watermark-track span::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border: 1px solid var(--wine);
  transform: rotate(45deg);
}

section {
  position: relative;
}

.about-section,
.intro-section,
.signal-section,
.experience-section,
.method-section,
.testimonials-section,
.reading-section,
.faq-section,
.contact-section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.about-section {
  background:
    radial-gradient(ellipse at 12% 18%, rgba(239, 211, 146, 0.16), transparent 34%),
    radial-gradient(ellipse at 88% 12%, rgba(219, 164, 175, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(52, 19, 29, 0.98), rgba(18, 8, 12, 0.97) 50%, rgba(109, 32, 53, 0.92));
}

.intro-section {
  background:
    radial-gradient(ellipse at 14% 18%, rgba(219, 164, 175, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(18, 8, 12, 0.98), rgba(52, 19, 29, 0.96));
}

.about-layout,
.intro-grid,
.experience-grid,
.method-layout,
.reading-layout,
.contact-layout {
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.about-layout {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.intro-grid,
.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.about-copy h2,
.intro-copy h2,
.section-heading h2,
.experience-copy h2,
.contact-copy h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  line-height: 1;
}

.about-photo {
  position: sticky;
  top: 34px;
  margin: 0;
  border: 0;
  border-radius: 38% 38% 32% 30% / 14% 14% 18% 20%;
  padding: 0;
  background: transparent;
  box-shadow: 0 30px 58px rgba(0, 0, 0, 0.28);
  transform: rotate(-1.1deg);
  overflow: visible;
}

.about-photo::before {
  inset: -20px -24px -30px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 28% 14%, rgba(239, 211, 146, 0.2), transparent 48%),
    radial-gradient(ellipse at 70% 76%, rgba(201, 130, 146, 0.24), transparent 56%),
    linear-gradient(145deg, rgba(52, 19, 29, 0.44), rgba(18, 8, 12, 0.16));
  filter: blur(2px);
}

.about-photo::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 28px;
  width: 155px;
  height: 155px;
  background: url("assets/client/logo-round-mark-gold.png") center / contain no-repeat;
  opacity: 0.24;
  transform: rotate(8deg);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: min(680px, 78vh);
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98) brightness(0.95);
}

.about-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(239, 211, 146, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(52, 19, 29, 0.62);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-copy {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(239, 211, 146, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 243, 223, 0.08), rgba(201, 130, 146, 0.12)),
    rgba(18, 8, 12, 0.52);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.about-copy::before {
  content: "";
  position: absolute;
  right: -38px;
  top: 20px;
  width: min(420px, 72vw);
  height: 120px;
  background: url("assets/client/logo-wide-mark-gold.png") right center / contain no-repeat;
  opacity: 0.11;
  pointer-events: none;
}

.about-copy > * {
  position: relative;
  z-index: 1;
}

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

.about-profile div {
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid rgba(239, 211, 146, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 243, 223, 0.08), rgba(201, 130, 146, 0.1)),
    rgba(52, 19, 29, 0.42);
}

.about-profile dt {
  margin: 0 0 5px;
  color: var(--gold-soft);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-profile dd {
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.about-profile div:last-child {
  grid-column: 1 / -1;
}

.about-text {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.about-text p {
  max-width: 760px;
  margin: 0;
}

.intro-panel,
.contact-form,
.checklist {
  position: relative;
  border: 1px solid rgba(242, 217, 152, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 243, 223, 0.09), rgba(138, 83, 99, 0.34)),
    rgba(18, 8, 12, 0.5);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.3);
}

.intro-panel {
  padding: clamp(24px, 4vw, 44px);
}

.intro-panel::before,
.contact-form::before,
.checklist::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(242, 217, 152, 0.14);
  border-radius: 6px;
  pointer-events: none;
}

.intro-panel p {
  margin: 0;
}

.intro-panel p + p {
  margin-top: 20px;
}

.signal-section {
  background:
    linear-gradient(130deg, rgba(52, 19, 29, 0.96), rgba(138, 83, 99, 0.88) 43%, rgba(18, 8, 12, 0.98)),
    repeating-linear-gradient(0deg, rgba(239, 211, 146, 0.08) 0 1px, transparent 1px 86px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-heading.ornate {
  margin-inline: auto;
  text-align: center;
}

.section-heading.ornate::after {
  content: "";
  display: block;
  width: min(420px, 72vw);
  height: 1px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading p {
  margin: 18px auto 0;
}

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

.signal-card,
.method-step {
  position: relative;
  min-height: 255px;
  padding: 24px;
  border: 1px solid rgba(242, 217, 152, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 243, 223, 0.08), rgba(109, 32, 53, 0.48) 55%, rgba(138, 83, 99, 0.44)),
    rgba(18, 8, 12, 0.56);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.26);
}

.signal-card span,
.method-step span {
  color: var(--gold-soft);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.signal-card h3,
.method-step h3 {
  margin: 22px 0 10px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.92rem);
  line-height: 1.04;
}

.signal-card p,
.method-step p,
.feature-list span,
.form-note {
  color: var(--muted);
  line-height: 1.72;
}

.experience-section {
  background:
    radial-gradient(ellipse at 88% 15%, rgba(219, 164, 175, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(109, 32, 53, 0.96), rgba(18, 8, 12, 0.98) 50%, rgba(138, 83, 99, 0.88));
}

.experience-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.experience-media {
  position: relative;
  border: 0;
  border-radius: 38% 38% 32% 30% / 14% 14% 18% 20%;
  padding: 0;
  background: transparent;
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.26);
  transform: rotate(-0.8deg);
  overflow: visible;
}

.experience-media::before {
  inset: -18px -22px -28px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 68% 18%, rgba(239, 211, 146, 0.22), transparent 46%),
    radial-gradient(ellipse at 28% 78%, rgba(201, 130, 146, 0.2), transparent 54%),
    linear-gradient(145deg, rgba(109, 32, 53, 0.34), rgba(18, 8, 12, 0.18));
  filter: blur(2px);
}

.experience-media img {
  width: 100%;
  height: min(640px, 75vh);
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98) brightness(0.94);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-list div {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 249, 238, 0.06);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 5px;
  color: var(--paper);
}

.method-section {
  background:
    linear-gradient(180deg, rgba(52, 19, 29, 0.98), rgba(18, 8, 12, 0.97)),
    linear-gradient(135deg, rgba(201, 161, 91, 0.05), transparent 38%, rgba(219, 164, 175, 0.1));
}

.method-layout,
.reading-layout {
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.section-heading.side {
  position: sticky;
  top: 34px;
}

.method-runway {
  display: grid;
  gap: 16px;
}

.method-step {
  min-height: auto;
  transform: none;
}

.method-step:nth-child(2) {
  --shift: 0;
}

.method-step:nth-child(3) {
  --shift: 0;
}

.method-step:nth-child(4) {
  --shift: 0;
}

.testimonials-section {
  background:
    radial-gradient(ellipse at 78% 18%, rgba(239, 211, 146, 0.18), transparent 34%),
    radial-gradient(ellipse at 18% 86%, rgba(219, 164, 175, 0.17), transparent 34%),
    linear-gradient(135deg, rgba(18, 8, 12, 0.98), rgba(109, 32, 53, 0.96) 46%, rgba(138, 83, 99, 0.9));
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}

.testimonials-copy {
  position: static;
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.testimonials-copy h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1;
}

.testimonials-copy p {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-stats span {
  padding: 10px 13px;
  border: 1px solid rgba(242, 217, 152, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(16, 7, 9, 0.34);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
  align-items: start;
}

.testimonial-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 9 / 16;
  padding: 0;
  border: 1px solid rgba(242, 217, 152, 0.34);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(242, 217, 152, 0.16), rgba(90, 16, 41, 0.28)),
    rgba(16, 7, 9, 0.72);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
  transform: none;
  transition: transform 220ms ease, border-color 220ms ease;
}

.testimonial-card:nth-child(2) {
  --tilt: 0;
}

.testimonial-card:nth-child(3) {
  --tilt: 0;
}

.testimonial-card:nth-child(4) {
  --tilt: 0;
}

.testimonial-card:nth-child(5) {
  --tilt: 0;
}

.testimonial-feature {
  grid-column: auto;
  grid-row: auto;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 7, 9, 0.84));
  pointer-events: none;
}

.testimonial-card::after {
  content: "Toque para ampliar";
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(242, 217, 152, 0.34);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(16, 7, 9, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
}

.testimonial-card:hover,
.testimonial-card:focus-visible {
  border-color: rgba(242, 217, 152, 0.72);
  outline: none;
  transform: translateY(-4px);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, rgba(255, 249, 238, 0.96), rgba(226, 211, 205, 0.9));
  filter: saturate(1.02) contrast(1.02);
}

.testimonial-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 2;
  color: var(--paper);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.56);
}

.quote-section {
  padding: clamp(78px, 10vw, 138px) 0;
  background:
    linear-gradient(90deg, rgba(18, 8, 12, 0.98), rgba(109, 32, 53, 0.94)),
    repeating-linear-gradient(0deg, rgba(239, 211, 146, 0.08) 0 1px, transparent 1px 80px);
}

.quote-wrap {
  text-align: center;
}

.quote-mark {
  display: block;
  width: 118px;
  height: 118px;
  margin: 0 auto 26px;
  border: 1px solid rgba(242, 217, 152, 0.42);
  border-radius: 50%;
  background:
    url("assets/client/logo-round-mark-gold.png") center / 88% no-repeat,
    radial-gradient(circle, rgba(255, 243, 223, 0.1), rgba(109, 32, 53, 0.34));
  opacity: 0.88;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

blockquote {
  max-width: 940px;
  margin: 0 auto;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.8vw, 4.8rem);
  font-weight: 700;
  line-height: 0.98;
}

.quote-wrap p {
  margin: 28px auto 0;
}

.reading-section {
  background:
    linear-gradient(180deg, rgba(18, 8, 12, 0.98), rgba(52, 19, 29, 0.96)),
    repeating-linear-gradient(90deg, rgba(239, 211, 146, 0.08) 0 1px, transparent 1px 82px);
}

.checklist {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 38px);
}

.checklist label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(242, 217, 152, 0.16);
  border-radius: 8px;
  background: rgba(16, 7, 9, 0.34);
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}

.checklist input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.reading-result {
  color: var(--paper);
  line-height: 1.7;
}

.reading-result:not(:empty) {
  padding: 18px;
  border: 1px solid rgba(242, 217, 152, 0.24);
  border-radius: 8px;
  background: rgba(90, 16, 41, 0.44);
}

.faq-section {
  background:
    radial-gradient(ellipse at 18% 12%, rgba(239, 211, 146, 0.18), transparent 32%),
    radial-gradient(ellipse at 84% 88%, rgba(169, 182, 154, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(52, 19, 29, 0.98), rgba(18, 8, 12, 0.97));
}

.faq-layout {
  position: relative;
}

.faq-layout::before {
  content: "";
  position: absolute;
  right: -22px;
  top: 24px;
  width: min(440px, 74vw);
  height: 130px;
  background: url("assets/client/logo-wide-mark-gold.png") right center / contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
}

.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 18px);
  border: 2px solid rgba(239, 211, 146, 0.22);
  border-radius: 28px 28px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 243, 223, 0.08), transparent 24%),
    rgba(18, 8, 12, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.faq-item {
  border: 1px solid rgba(255, 243, 223, 0.22);
  border-radius: 8px;
  background: #a9b69a;
  color: #26302d;
  overflow: hidden;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  background: #b7c3aa;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.faq-item[open] {
  background: linear-gradient(180deg, #b9c4ad, #a9b69a);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr 28px;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::before {
  content: "";
  width: 0;
  height: 0;
  margin-inline: auto;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #26302d;
  opacity: 0.9;
  transform: rotate(0deg);
  transition: transform 180ms ease;
}

.faq-item summary::after {
  content: "›";
  justify-self: end;
  color: #26302d;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.faq-item[open] summary::before {
  transform: rotate(180deg);
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

.faq-item summary span {
  color: #26302d;
  font-size: clamp(1.05rem, 2vw, 1.46rem);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.faq-item p {
  margin: 0;
  padding: 0 68px 22px 62px;
  color: #303733;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.62;
}

.contact-section {
  background:
    radial-gradient(ellipse at 82% 16%, rgba(201, 161, 91, 0.22), transparent 33%),
    linear-gradient(135deg, rgba(138, 83, 99, 0.94), rgba(109, 32, 53, 0.96), rgba(18, 8, 12, 0.98));
}

.contact-copy {
  position: relative;
  overflow: hidden;
}

.contact-copy::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -8px;
  width: min(420px, 92vw);
  height: 120px;
  background: url("assets/client/logo-wide-mark-gold.png") left center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.contact-copy > * {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--gold-soft);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(242, 217, 152, 0.26);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(16, 7, 9, 0.54);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 67, 0.16);
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(242, 217, 152, 0.25);
  background: rgba(16, 7, 9, 0.98);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-mark {
  flex: 0 0 auto;
  width: min(260px, 58vw);
  height: 72px;
  background: url("assets/client/logo-wide-mark-gold.png") left center / contain no-repeat;
  opacity: 0.7;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  max-width: min(420px, calc(100vw - 40px));
  padding: 16px 18px;
  border: 1px solid rgba(242, 217, 152, 0.44);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(16, 7, 9, 0.93);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 72px 76px;
  background: rgba(9, 4, 5, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  gap: 16px;
  width: min(100%, 980px);
  margin: 0;
}

.lightbox img {
  max-height: calc(100svh - 180px);
  width: 100%;
  border: 1px solid rgba(242, 217, 152, 0.48);
  border-radius: 8px;
  object-fit: contain;
  background: var(--paper);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
}

.lightbox figcaption {
  color: var(--paper);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(242, 217, 152, 0.5);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(16, 7, 9, 0.78);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  .hero-stage,
  .about-layout,
  .intro-grid,
  .experience-grid,
  .method-layout,
  .reading-layout,
  .contact-layout,
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .section-heading.side {
    position: static;
  }

  .about-photo {
    position: relative;
    top: auto;
  }

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

  .method-step {
    transform: none;
  }

  .testimonials-copy {
    position: static;
  }

  .testimonial-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .testimonial-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 40px));
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 5rem);
    line-height: 0.9;
  }

  .hero-visual {
    min-height: 560px;
  }

  .portrait-main {
    right: 0;
    width: min(390px, 76vw);
  }

  .portrait-main img {
    height: 470px;
  }

  .portrait-side {
    left: 0;
    width: min(210px, 44vw);
  }

  .portrait-side img {
    height: 280px;
  }

  .hero-seal {
    left: auto;
    right: 18px;
    bottom: 48px;
    width: 116px;
    height: 116px;
  }

  .hero-note {
    left: 0;
    right: auto;
    bottom: 0;
    max-width: 280px;
  }

  .brand-watermark {
    min-height: auto;
  }

  .brand-watermark-mark {
    top: 24px;
    transform: none;
  }

  .brand-watermark-track {
    margin: 86px 0 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox {
    padding: 72px 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}

@media (max-width: 620px) {
  .container,
  .topbar,
  .hero-stage {
    width: min(100% - 28px, var(--max));
  }

  .hero::after {
    inset: 76px 14px 14px;
  }

  .brand span {
    max-width: 172px;
  }

  .hero-stage {
    min-height: auto;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.6vw, 3.1rem);
    line-height: 0.95;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 510px;
  }

  .portrait-main {
    width: 72vw;
    right: 4px;
  }

  .portrait-main img {
    height: 390px;
  }

  .portrait-side {
    width: 42vw;
    bottom: 72px;
  }

  .portrait-side img {
    height: 210px;
  }

  .hero-seal {
    width: 92px;
    height: 92px;
    padding: 8px;
  }

  .hero-note {
    max-width: 230px;
    padding: 14px;
    font-size: 0.88rem;
  }

  .about-section,
  .intro-section,
  .signal-section,
  .experience-section,
  .method-section,
  .testimonials-section,
  .reading-section,
  .faq-section,
  .contact-section {
    padding: 68px 0;
  }

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

  .signal-card {
    min-height: auto;
  }

  .about-photo img {
    height: min(560px, 72vh);
  }

  .about-photo::after {
    right: 10px;
    bottom: 18px;
    width: 112px;
    height: 112px;
  }

  .about-profile {
    grid-template-columns: 1fr;
  }

  .about-profile div:last-child {
    grid-column: auto;
  }

  .brand-watermark {
    justify-items: center;
  }

  .brand-watermark-mark {
    left: 50%;
    width: min(300px, 82vw);
    transform: translateX(-50%);
    background-position: center;
  }

  .brand-watermark-track {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .faq-layout::before {
    right: 0;
    width: min(280px, 78vw);
    opacity: 0.07;
  }

  .faq-list {
    width: min(100%, 560px);
    padding: 8px;
    border-radius: 24px 24px 8px 8px;
  }

  .faq-item summary {
    grid-template-columns: 18px 1fr 22px;
    gap: 12px;
    min-height: 64px;
    padding: 14px 16px;
  }

  .faq-item summary span {
    font-size: clamp(1.02rem, 6vw, 1.36rem);
  }

  .faq-item p {
    padding: 0 44px 18px 46px;
    font-size: 0.96rem;
  }

  .testimonial-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .testimonial-card,
  .testimonial-feature {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 9 / 14;
    transform: none;
  }

  blockquote {
    font-size: clamp(2.05rem, 11vw, 3.45rem);
  }
}

/* Palette lock: #E8D3CF, #C6A0A6, #A57C8E */
:root {
  --ink: #e8d3cf;
  --muted: #e8d3cf;
  --deep: #a57c8e;
  --wine: #a57c8e;
  --wine-dark: #a57c8e;
  --gold: #c6a0a6;
  --gold-soft: #e8d3cf;
  --blush: #e8d3cf;
  --paper: #e8d3cf;
  --beige: #e8d3cf;
  --rose: #c6a0a6;
  --mauve: #a57c8e;
  --shadow: rgba(165, 124, 142, 0.42);
}

body {
  color: #e8d3cf;
  background:
    linear-gradient(135deg, rgba(165, 124, 142, 0.98), rgba(198, 160, 166, 0.94) 52%, rgba(232, 211, 207, 0.9)),
    repeating-linear-gradient(90deg, rgba(232, 211, 207, 0.12) 0 1px, transparent 1px 96px);
}

body::before {
  opacity: 0.18;
  background-image:
    linear-gradient(45deg, transparent 0 47%, rgba(232, 211, 207, 0.18) 49% 51%, transparent 53%),
    linear-gradient(-45deg, transparent 0 47%, rgba(198, 160, 166, 0.16) 49% 51%, transparent 53%);
}

.hero {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(165, 124, 142, 0.32), rgba(165, 124, 142, 0.74) 56%, rgba(198, 160, 166, 0.9)),
    linear-gradient(90deg, rgba(165, 124, 142, 0.82), rgba(198, 160, 166, 0.32) 48%, rgba(232, 211, 207, 0.18)),
    url("assets/client/beatriz-portrait-close.jpeg") right center / cover no-repeat;
}

.hero::before {
  inset: 0;
  right: auto;
  top: 0;
  z-index: -2;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(232, 211, 207, 0.12), transparent 32%, rgba(165, 124, 142, 0.76)),
    radial-gradient(ellipse at 74% 22%, rgba(232, 211, 207, 0.26), transparent 42%);
  box-shadow: none;
}

.hero::after {
  inset: 84px 18px 18px;
  border-color: rgba(232, 211, 207, 0.28);
  background: linear-gradient(180deg, transparent, rgba(165, 124, 142, 0.18));
}

.topbar {
  color: #e8d3cf;
}

.brand {
  color: #e8d3cf;
  text-shadow: 0 12px 34px rgba(165, 124, 142, 0.54);
}

.brand img,
.hero-seal,
.quote-mark {
  border-color: rgba(232, 211, 207, 0.48);
  background:
    radial-gradient(circle, rgba(232, 211, 207, 0.28), rgba(198, 160, 166, 0.44));
  box-shadow: 0 18px 42px rgba(165, 124, 142, 0.3);
}

.nav-links,
.menu-toggle {
  border-color: rgba(165, 124, 142, 0.38);
  background: rgba(232, 211, 207, 0.82);
  box-shadow: 0 22px 55px rgba(165, 124, 142, 0.22);
}

.nav-links a {
  color: #a57c8e;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #a57c8e;
  background: rgba(198, 160, 166, 0.34);
}

.hero-stage {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  align-items: end;
  min-height: calc(100svh - 92px);
}

.hero-copy {
  max-width: 760px;
  border-color: rgba(232, 211, 207, 0.34);
  background:
    linear-gradient(180deg, rgba(165, 124, 142, 0.68), rgba(198, 160, 166, 0.64)),
    rgba(165, 124, 142, 0.5);
  box-shadow: 0 24px 70px rgba(165, 124, 142, 0.34);
}

.hero-visual {
  display: none;
}

.hero h1,
.intro-copy h2,
.about-copy h2,
.section-heading h2,
.experience-copy h2,
.testimonials-copy h2,
.contact-copy h2,
blockquote {
  color: #e8d3cf;
  text-shadow: 0 14px 38px rgba(165, 124, 142, 0.42);
}

.eyebrow,
.section-kicker,
.welcome-label,
.signal-card span,
.method-step span,
.feature-list strong,
.contact-form span,
.about-profile dt {
  color: #e8d3cf;
}

.welcome-label::before,
.welcome-label::after,
.section-heading.ornate::after {
  background: linear-gradient(90deg, transparent, #e8d3cf, transparent);
}

.hero-copy p:not(.eyebrow),
.intro-panel p,
.about-text p,
.section-heading p,
.experience-copy p,
.testimonials-copy p,
.quote-wrap p,
.contact-copy p,
.signal-card p,
.method-step p,
.feature-list span,
.form-note {
  color: #e8d3cf;
}

.button,
.hero-assurances span,
.testimonial-stats span {
  border-color: rgba(232, 211, 207, 0.58);
}

.button.primary {
  color: #a57c8e;
  background: linear-gradient(135deg, #e8d3cf, #c6a0a6);
  box-shadow: 0 18px 44px rgba(165, 124, 142, 0.34);
}

.button.ghost,
.hero-assurances span {
  color: #e8d3cf;
  background: rgba(165, 124, 142, 0.42);
}

.brand-watermark {
  border-block-color: rgba(165, 124, 142, 0.22);
  background:
    linear-gradient(90deg, rgba(232, 211, 207, 0.96), rgba(198, 160, 166, 0.64), rgba(232, 211, 207, 0.92));
  color: #a57c8e;
}

.brand-watermark-track span::before {
  border-color: #a57c8e;
}

.about-section,
.experience-section {
  position: relative;
  overflow: hidden;
}

.about-section::before,
.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-section::before {
  background:
    linear-gradient(90deg, rgba(165, 124, 142, 0.9), rgba(198, 160, 166, 0.64), rgba(232, 211, 207, 0.22)),
    linear-gradient(180deg, rgba(165, 124, 142, 0.94), rgba(165, 124, 142, 0.72)),
    url("assets/client/beatriz-office-pink-reading.jpeg") right center / cover no-repeat;
}

.experience-section::before {
  background:
    linear-gradient(90deg, rgba(165, 124, 142, 0.88), rgba(198, 160, 166, 0.6), rgba(232, 211, 207, 0.2)),
    linear-gradient(180deg, rgba(165, 124, 142, 0.96), rgba(165, 124, 142, 0.7)),
    url("assets/client/beatriz-office-book.jpeg") left center / cover no-repeat;
}

.about-section > *,
.experience-section > * {
  position: relative;
  z-index: 1;
}

.about-layout,
.experience-grid {
  grid-template-columns: 1fr;
}

.about-photo,
.experience-media {
  display: none;
}

.about-copy,
.intro-panel,
.contact-form,
.checklist,
.signal-card,
.method-step {
  border-color: rgba(232, 211, 207, 0.34);
  background:
    linear-gradient(145deg, rgba(198, 160, 166, 0.44), rgba(165, 124, 142, 0.52)),
    rgba(165, 124, 142, 0.48);
  box-shadow: 0 28px 82px rgba(165, 124, 142, 0.28);
}

.about-profile div,
.feature-list div,
.reading-result:not(:empty) {
  border-color: rgba(232, 211, 207, 0.3);
  background: rgba(198, 160, 166, 0.34);
}

.about-profile dd,
.signal-card h3,
.method-step h3 {
  color: #e8d3cf;
}

.intro-section,
.method-section,
.reading-section,
.quote-section,
.site-footer {
  background:
    linear-gradient(180deg, rgba(165, 124, 142, 0.98), rgba(198, 160, 166, 0.82)),
    repeating-linear-gradient(90deg, rgba(232, 211, 207, 0.08) 0 1px, transparent 1px 82px);
}

.signal-section,
.testimonials-section,
.contact-section {
  background:
    linear-gradient(135deg, rgba(165, 124, 142, 0.98), rgba(198, 160, 166, 0.86), rgba(232, 211, 207, 0.64));
}

.faq-section {
  background: linear-gradient(180deg, #a57c8e, #c6a0a6 52%, #a57c8e);
}

.testimonial-card {
  border-color: rgba(232, 211, 207, 0.38);
  background:
    linear-gradient(135deg, rgba(232, 211, 207, 0.28), rgba(198, 160, 166, 0.42)),
    rgba(165, 124, 142, 0.48);
  box-shadow: 0 22px 58px rgba(165, 124, 142, 0.28);
}

.testimonial-card::before {
  background: linear-gradient(180deg, transparent 55%, rgba(165, 124, 142, 0.82));
}

.testimonial-card::after {
  border-color: rgba(232, 211, 207, 0.42);
  color: #e8d3cf;
  background: rgba(165, 124, 142, 0.62);
}

.testimonial-card img,
.lightbox img {
  background: linear-gradient(135deg, #e8d3cf, #c6a0a6);
}

.faq-list {
  border-color: rgba(232, 211, 207, 0.3);
  background: rgba(165, 124, 142, 0.38);
  box-shadow: 0 28px 80px rgba(165, 124, 142, 0.26);
}

.faq-item,
.faq-item:hover,
.faq-item:focus-within,
.faq-item[open] {
  border-color: rgba(165, 124, 142, 0.28);
  color: #a57c8e;
  background: #e8d3cf;
  box-shadow: 0 16px 34px rgba(165, 124, 142, 0.2);
}

.faq-item summary span,
.faq-item summary::after,
.faq-item p {
  color: #a57c8e;
}

.faq-item summary::before {
  border-top-color: #a57c8e;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(232, 211, 207, 0.34);
  color: #e8d3cf;
  background: rgba(165, 124, 142, 0.54);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #e8d3cf;
  box-shadow: 0 0 0 3px rgba(232, 211, 207, 0.2);
}

.checklist label {
  border-color: rgba(232, 211, 207, 0.26);
  color: #e8d3cf;
  background: rgba(198, 160, 166, 0.26);
}

.checklist input {
  accent-color: #c6a0a6;
}

.footer-inner,
.toast,
.lightbox figcaption,
.lightbox-close,
.lightbox-nav {
  color: #e8d3cf;
}

.toast,
.lightbox-close,
.lightbox-nav {
  border-color: rgba(232, 211, 207, 0.46);
  background: rgba(165, 124, 142, 0.9);
  box-shadow: 0 24px 70px rgba(165, 124, 142, 0.38);
}

.lightbox {
  background: rgba(165, 124, 142, 0.9);
}

@media (max-width: 1080px) {
  .hero-stage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(165, 124, 142, 0.2), rgba(165, 124, 142, 0.72) 48%, rgba(198, 160, 166, 0.92)),
      url("assets/client/beatriz-portrait-close.jpeg") center top / auto 100svh no-repeat,
      #a57c8e;
  }

  .hero-copy {
    margin-top: 28vh;
  }

  .about-section::before,
  .experience-section::before {
    background-position: center top;
  }
}

/* Visual balance: full image areas, palette site colors, readable text */
.hero {
  background: #a57c8e;
}

.hero::before {
  inset: 0;
  z-index: -2;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background-image: url("assets/client/beatriz-portrait-close.jpeg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: none;
  transform: none;
  opacity: 1;
}

.hero::after {
  inset: 0;
  z-index: -1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(232, 211, 207, 0.44), rgba(232, 211, 207, 0.12) 48%, rgba(165, 124, 142, 0.16)),
    linear-gradient(180deg, rgba(165, 124, 142, 0.08), rgba(165, 124, 142, 0.32));
}

.hero-copy,
.about-copy,
.intro-panel,
.experience-copy,
.contact-form,
.checklist,
.signal-card,
.method-step {
  border-color: rgba(165, 124, 142, 0.3);
  background:
    linear-gradient(145deg, rgba(232, 211, 207, 0.84), rgba(198, 160, 166, 0.74)),
    #e8d3cf;
  box-shadow: 0 28px 82px rgba(165, 124, 142, 0.28);
}

.about-copy,
.experience-copy {
  max-width: min(920px, 100%);
}

.about-copy {
  margin-right: auto;
}

.experience-copy {
  margin-left: auto;
}

.hero h1,
.intro-copy h2,
.about-copy h2,
.section-heading h2,
.experience-copy h2,
.testimonials-copy h2,
.contact-copy h2,
blockquote {
  color: #563746;
  text-shadow: none;
}

.eyebrow,
.section-kicker,
.welcome-label,
.signal-card span,
.method-step span,
.feature-list strong,
.contact-form span,
.about-profile dt {
  color: #6f4c5c;
}

.hero-copy p:not(.eyebrow),
.intro-panel p,
.about-text p,
.section-heading p,
.experience-copy p,
.testimonials-copy p,
.quote-wrap p,
.contact-copy p,
.signal-card p,
.method-step p,
.feature-list span,
.form-note,
.about-profile dd,
.signal-card h3,
.method-step h3 {
  color: #563746;
}

.welcome-label::before,
.welcome-label::after,
.section-heading.ornate::after {
  background: linear-gradient(90deg, transparent, #a57c8e, transparent);
}

.button.primary {
  color: #e8d3cf;
  background: linear-gradient(135deg, #a57c8e, #c6a0a6);
  box-shadow: 0 18px 44px rgba(165, 124, 142, 0.28);
}

.button.ghost,
.hero-assurances span {
  color: #563746;
  background: rgba(232, 211, 207, 0.7);
}

.about-section,
.experience-section {
  background:
    linear-gradient(135deg, #e8d3cf, #c6a0a6 52%, #a57c8e);
}

.about-section::before,
.experience-section::before {
  inset: 0;
  z-index: 0;
  filter: none;
  transform: none;
  opacity: 1;
}

.about-section::before {
  background-image: url("assets/client/beatriz-office-pink-reading.jpeg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.experience-section::before {
  background-image: url("assets/client/beatriz-office-book.jpeg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.about-section::after,
.experience-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(232, 211, 207, 0.62), rgba(232, 211, 207, 0.3), rgba(198, 160, 166, 0.14)),
    linear-gradient(180deg, rgba(165, 124, 142, 0.08), rgba(165, 124, 142, 0.2));
}

.about-section > *,
.experience-section > * {
  position: relative;
  z-index: 1;
}

.about-profile div,
.feature-list div,
.reading-result:not(:empty),
.checklist label {
  border-color: rgba(165, 124, 142, 0.28);
  color: #563746;
  background: rgba(232, 211, 207, 0.58);
}

.intro-copy h2,
.section-heading h2,
.testimonials-copy h2,
.contact-copy h2,
.quote-wrap p,
.contact-copy p,
.section-heading p {
  color: #e8d3cf;
}

.hero-copy h1,
.about-copy h2,
.experience-copy h2,
.signal-card h3,
.method-step h3,
.faq-item summary span {
  color: #563746;
}

.hero-copy p:not(.eyebrow),
.about-text p,
.experience-copy p,
.intro-panel p,
.feature-list span,
.signal-card p,
.method-step p,
.faq-item p,
.form-note {
  color: #68495a;
}

.eyebrow,
.section-kicker,
.welcome-label,
.signal-card span,
.method-step span,
.feature-list strong,
.contact-form span,
.about-profile dt {
  color: #6f4c5c;
}

.faq-item,
.faq-item:hover,
.faq-item:focus-within,
.faq-item[open] {
  background: #e8d3cf;
}

.brand-watermark {
  background: linear-gradient(90deg, #e8d3cf, #c6a0a6, #e8d3cf);
  color: #563746;
}

.brand-watermark-track span {
  color: #563746;
}

.brand-watermark-mark {
  opacity: 0.16;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(165, 124, 142, 0.38);
  color: #563746;
  background: rgba(232, 211, 207, 0.76);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #68495a;
}

@media (max-width: 620px) {
  .hero {
    background: #a57c8e;
  }

  .hero::before {
    background-image: url("assets/client/beatriz-portrait-close.jpeg");
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .hero::after {
    inset: 0;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(232, 211, 207, 0.08), rgba(232, 211, 207, 0.06) 36%, rgba(165, 124, 142, 0.34)),
      linear-gradient(90deg, rgba(232, 211, 207, 0.22), transparent 56%);
  }

  .hero-copy {
    margin-top: min(52vh, 430px);
    background:
      linear-gradient(145deg, rgba(232, 211, 207, 0.86), rgba(198, 160, 166, 0.78)),
      #e8d3cf;
  }

  .about-section::before,
  .experience-section::before {
    background-position: center top;
    background-size: contain;
  }

  .about-copy,
  .experience-copy {
    max-width: 100%;
    margin-inline: 0;
  }
}

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

/* Ajuste solicitado: exibir a logo completa da marca no site */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(232, 211, 207, 0.42);
  border-radius: 999px;
  background: rgba(86, 55, 70, 0.36);
  box-shadow: 0 18px 42px rgba(86, 55, 70, 0.22);
  line-height: 0;
  backdrop-filter: blur(10px);
}

.brand .brand-signature {
  display: block;
  width: clamp(190px, 22vw, 280px);
  height: auto;
  max-height: 88px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(86, 55, 70, 0.38));
}

.hero-logo {
  display: block;
  width: min(430px, 92vw);
  height: auto;
  margin: 0 0 22px;
  padding: 14px 18px;
  border: 1px solid rgba(232, 211, 207, 0.36);
  border-radius: 28px;
  background: rgba(86, 55, 70, 0.34);
  box-shadow: 0 18px 46px rgba(86, 55, 70, 0.26);
  filter: drop-shadow(0 10px 24px rgba(86, 55, 70, 0.34));
}

.footer-logo {
  display: block;
  flex: 0 0 auto;
  width: min(320px, 58vw);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

@media (max-width: 760px) {
  .topbar {
    gap: 12px;
  }

  .brand {
    padding: 6px 10px;
  }

  .brand .brand-signature {
    width: min(210px, 58vw);
  }

  .hero-logo {
    width: min(360px, 100%);
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .footer-logo {
    width: min(280px, 72vw);
  }
}

/* Responsividade reforçada para celulares, tablets, notebooks, monitores grandes e navegadores modernos */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  min-width: 280px;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
}

@media (min-width: 621px) {
  .hero-stage {
    min-height: calc(100vh - 92px);
    min-height: calc(100svh - 92px);
  }
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

iframe {
  border: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
input,
select,
textarea,
summary,
dd,
dt,
span {
  overflow-wrap: anywhere;
}

.topbar,
.hero-stage,
.container,
.footer-inner,
.brand,
.nav-links,
.hero-copy,
.about-copy,
.intro-panel,
.contact-form,
.checklist,
.faq-list,
.testimonial-wall,
.method-runway,
.signal-grid,
.feature-list,
.reading-result {
  min-width: 0;
}

.topbar,
.hero-copy,
.about-copy,
.intro-panel,
.contact-form,
.checklist,
.signal-card,
.method-step,
.faq-list {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.brand {
  flex: 0 1 auto;
  min-width: 0;
}

.brand .brand-signature {
  max-width: 100%;
  width: clamp(160px, 28vw, 280px);
}

.nav-links {
  z-index: 20;
}

.hero-logo {
  max-width: 100%;
}

.hero-copy {
  width: 100%;
}

.hero-assurances span,
.testimonial-stats span,
.button {
  white-space: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.lightbox img {
  max-height: calc(100vh - 180px);
  max-height: calc(100svh - 180px);
}

@media (min-width: 1600px) {
  :root {
    --max: 1240px;
  }

  .hero-copy {
    max-width: 820px;
  }
}

@media (max-width: 1280px) {
  .topbar,
  .hero-stage {
    width: min(100% - 36px, 1180px);
  }
}

@media (max-width: 1080px) {
  .hero-stage {
    align-items: end;
  }

  .section-heading,
  .testimonials-copy {
    text-align: center;
  }

  .section-heading p,
  .testimonials-copy p,
  .contact-copy p {
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .topbar {
    position: relative;
    gap: 12px;
  }

  .nav-links {
    max-height: min(70vh, 440px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .menu-toggle {
    flex: 0 0 44px;
  }

  .hero-copy {
    padding: clamp(20px, 5vw, 30px);
  }

  .testimonial-stats,
  .hero-assurances {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .brand .brand-signature {
    width: min(210px, 54vw);
  }

  .hero-stage {
    padding-top: 20px;
  }

  .hero-logo {
    width: min(340px, 100%);
  }

  .about-copy,
  .intro-panel,
  .contact-form,
  .checklist,
  .signal-card,
  .method-step {
    padding: clamp(20px, 6vw, 28px);
  }

  .section-heading.ornate::after,
  .contact-copy::before,
  .faq-layout::before {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .container,
  .topbar,
  .hero-stage {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    min-height: auto;
    background-color: #a57c8e;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 52px;
  }

  .hero-copy {
    margin-top: clamp(230px, 50vh, 420px);
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1;
  }

  .about-copy h2,
  .intro-copy h2,
  .section-heading h2,
  .experience-copy h2,
  .testimonials-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.95rem, 9.5vw, 3rem);
    line-height: 1.05;
  }

  blockquote {
    line-height: 1.04;
  }

  .hero-copy p:not(.eyebrow),
  .about-text p,
  .intro-panel p,
  .section-heading p,
  .experience-copy p,
  .quote-wrap p,
  .contact-copy p,
  .testimonials-copy p,
  .signal-card p,
  .method-step p,
  .feature-list span,
  .faq-item p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .welcome-label {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hero-actions,
  .contact-actions {
    gap: 10px;
  }

  .button {
    min-height: 48px;
    padding: 13px 16px;
  }

  .brand-watermark {
    padding-inline: 12px;
  }

  .brand-watermark-track {
    gap: 8px;
  }

  .brand-watermark-track span {
    min-height: 34px;
    font-size: 0.86rem;
  }

  .testimonial-card,
  .testimonial-feature {
    aspect-ratio: 10 / 14;
  }

  .testimonial-card span {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .faq-item summary {
    grid-template-columns: 16px minmax(0, 1fr) 18px;
  }

  .faq-item p {
    padding: 0 22px 18px 46px;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .lightbox {
    padding: 70px 12px 86px;
  }

  .lightbox figure {
    width: 100%;
  }

  .lightbox img {
    max-height: calc(100vh - 190px);
    max-height: calc(100svh - 190px);
  }

  .lightbox-nav.prev {
    left: 18px;
  }

  .lightbox-nav.next {
    right: 18px;
  }
}

@media (max-width: 420px) {
  .topbar {
    width: calc(100% - 20px);
  }

  .brand {
    padding: 5px 8px;
    border-radius: 18px;
  }

  .brand .brand-signature {
    width: min(172px, 50vw);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .nav-links {
    width: min(300px, calc(100vw - 20px));
  }

  .hero-logo {
    padding: 10px;
    border-radius: 18px;
  }

  .hero-copy {
    padding: 18px;
    margin-top: clamp(210px, 47vh, 360px);
  }

  .hero-assurances span,
  .testimonial-stats span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-section,
  .intro-section,
  .signal-section,
  .experience-section,
  .method-section,
  .testimonials-section,
  .reading-section,
  .faq-section,
  .contact-section {
    padding: 58px 0;
  }

  .about-copy,
  .intro-panel,
  .contact-form,
  .checklist,
  .signal-card,
  .method-step {
    padding: 18px;
  }

  .checklist label {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
  }

  .faq-list {
    border-radius: 20px 20px 8px 8px;
  }

  .faq-item summary {
    gap: 10px;
    padding: 13px 12px;
  }

  .faq-item p {
    padding: 0 16px 16px 38px;
  }
}

@media (max-width: 340px) {
  .brand .brand-signature {
    width: 148px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .about-copy h2,
  .intro-copy h2,
  .section-heading h2,
  .experience-copy h2,
  .testimonials-copy h2,
  .contact-copy h2 {
    font-size: 1.78rem;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 34px;
  }

  .hero-copy {
    margin-top: 24px;
  }

  .hero-logo {
    width: min(260px, 64vw);
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .hero-actions,
  .hero-assurances {
    margin-top: 18px;
  }
}

@supports not (display: grid) {
  .hero-stage,
  .about-layout,
  .intro-grid,
  .experience-grid,
  .method-layout,
  .reading-layout,
  .contact-layout,
  .testimonials-layout,
  .signal-grid,
  .testimonial-wall,
  .about-profile,
  .feature-list,
  .method-runway,
  .checklist,
  .contact-form {
    display: flex;
    flex-direction: column;
  }

  .signal-card,
  .testimonial-card,
  .method-step,
  .about-profile div,
  .feature-list div {
    width: 100%;
  }
}

/* Ajuste solicitado: remover o bloco quadrado da logo e usar a marca em efeito de marca d'água */
.brand {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  backdrop-filter: none;
}

.brand .brand-signature {
  display: block;
  width: clamp(170px, 22vw, 270px);
  height: auto;
  max-height: 72px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.hero-copy {
  overflow: hidden;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy .hero-logo {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 0;
  width: min(470px, 82%);
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.10;
  pointer-events: none;
  filter: none;
}

.footer-mark {
  width: min(320px, 70vw);
  height: 84px;
  opacity: 0.82;
}

@media (max-width: 760px) {
  .brand {
    padding: 0;
  }

  .brand .brand-signature {
    width: min(210px, 62vw);
    max-height: 58px;
  }

  .hero-copy .hero-logo {
    top: 14px;
    right: 12px;
    width: min(320px, 84%);
    opacity: 0.08;
  }

  .footer-mark {
    width: min(260px, 72vw);
    height: 72px;
  }
}

/* Ajuste solicitado: remover os quadrados das informações pessoais e integrar no texto */
.about-profile-inline {
  margin: 26px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-profile-inline p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.85;
}

.about-profile-inline strong {
  color: var(--paper);
  font-weight: 800;
}

/* Ajuste solicitado: remover o fundo transparente visível no cabeçalho */
.brand,
.brand:hover,
.brand:focus-visible {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.brand .brand-signature {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.menu-toggle {
  background: #d6c0c4;
  border: 1px solid #ead4ca;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: none;
}

.menu-toggle span:not(.sr-only) {
  background: #fff8ed;
}

@media (max-width: 420px) {
  .brand {
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .brand .brand-signature {
    width: min(172px, 50vw);
  }

  .nav-links {
    background: #2d1820;
    backdrop-filter: none;
  }
}

/* Ajuste solicitado: colocar a logo dentro do círculo da seção de frase */
.quote-mark {
  border: 1px solid rgba(232, 211, 207, 0.58) !important;
  background-color: rgba(232, 211, 207, 0.12) !important;
  background-image: url("assets/client/logo-round-mark-gold.png"), radial-gradient(circle, rgba(232, 211, 207, 0.22), rgba(198, 160, 166, 0.18)) !important;
  background-position: center, center !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: 74%, cover !important;
  opacity: 1 !important;
  box-shadow: 0 18px 42px rgba(165, 124, 142, 0.24) !important;
}

/* Ajuste solicitado: remover qualquer efeito transparente/vidro no header */
.topbar,
.brand,
.brand:hover,
.brand:focus-visible {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.brand {
  padding: 0 !important;
  border-radius: 0 !important;
}

.brand img,
.brand .brand-signature {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 420px) {
  .topbar,
  .brand {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .brand {
    padding: 0 !important;
    border-radius: 0 !important;
  }
}


/* Ajuste solicitado: detalhes dourados sutis no site */
:root {
  --gold-bright: #f4d98f;
  --gold-line: rgba(244, 217, 143, 0.62);
  --gold-wash: rgba(244, 217, 143, 0.12);
}

/* Filetes e brilho elegante sem criar blocos transparentes no header */
.hero::after {
  border-color: rgba(244, 217, 143, 0.38) !important;
  box-shadow: inset 0 0 0 1px rgba(244, 217, 143, 0.08);
}

.section-kicker {
  color: var(--gold-bright) !important;
  letter-spacing: 0.06em;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.section-heading .section-kicker::after,
.contact-copy .section-kicker::after {
  margin-inline: auto;
}

.hero-copy,
.about-copy,
.intro-panel,
.contact-form,
.checklist,
.signal-card,
.method-step,
.faq-list,
.testimonial-feature,
.testimonial-card,
.reading-result {
  border-color: rgba(244, 217, 143, 0.34) !important;
}

.hero-copy::after,
.about-copy::after,
.intro-panel::after,
.contact-form::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: 14px;
  bottom: 14px;
  border-right: 1px solid rgba(244, 217, 143, 0.42);
  border-bottom: 1px solid rgba(244, 217, 143, 0.42);
  border-radius: 0 0 12px 0;
  pointer-events: none;
  opacity: 0.72;
}

.hero-copy,
.about-copy,
.intro-panel,
.contact-form {
  position: relative;
}

.hero h1,
.about-copy h2,
.intro-copy h2,
.section-heading h2,
.experience-copy h2,
.contact-copy h2 {
  text-shadow:
    0 14px 36px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(244, 217, 143, 0.10);
}

.welcome-label::before,
.welcome-label::after {
  background: linear-gradient(90deg, transparent, var(--gold-bright)) !important;
}

.welcome-label::after {
  background: linear-gradient(90deg, var(--gold-bright), transparent) !important;
}

.hero-assurances span,
.testimonial-stats span,
.feature-list div,
.about-profile-inline strong {
  color: var(--gold-bright) !important;
  border-color: rgba(244, 217, 143, 0.34) !important;
}

.button.primary {
  border-color: rgba(244, 217, 143, 0.94) !important;
  background: linear-gradient(135deg, #fff1b9 0%, #f4d98f 34%, #c99a43 68%, #8f6229 100%) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(244, 217, 143, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.55) !important;
}

.button.ghost {
  border-color: rgba(244, 217, 143, 0.72) !important;
  color: var(--gold-bright) !important;
}

.signal-card span,
.method-step .step-number,
.faq-item summary::before {
  color: var(--gold-bright) !important;
}

.signal-card,
.method-step,
.faq-item,
.testimonial-card,
.testimonial-feature {
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.22),
    inset 0 1px rgba(244, 217, 143, 0.08);
}

.signal-card:hover,
.method-step:hover,
.faq-item:hover,
.button:hover {
  border-color: rgba(244, 217, 143, 0.72) !important;
}

.brand-watermark {
  border-block-color: rgba(244, 217, 143, 0.44) !important;
}

.brand-watermark-track span::before {
  border-color: #c99a43 !important;
  box-shadow: 0 0 12px rgba(244, 217, 143, 0.42);
}

.quote-mark {
  border-color: rgba(244, 217, 143, 0.72) !important;
  box-shadow:
    0 0 0 1px rgba(244, 217, 143, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.16) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-bright) !important;
  box-shadow: 0 0 0 3px rgba(244, 217, 143, 0.18) !important;
}

.site-footer {
  border-top-color: rgba(244, 217, 143, 0.48) !important;
}

.footer-mark {
  filter: drop-shadow(0 0 14px rgba(244, 217, 143, 0.16));
}

@media (max-width: 620px) {
  .hero-copy::after,
  .about-copy::after,
  .intro-panel::after,
  .contact-form::after {
    width: 56px;
    height: 56px;
    right: 10px;
    bottom: 10px;
    opacity: 0.55;
  }

  .section-kicker::after {
    width: 54px;
  }
}

/* Ajuste solicitado: dourado sólido, sem degradê de cor */
:root {
  --gold-bright: #d4af37;
  --gold-solid: #d4af37;
  --gold-line: rgba(212, 175, 55, 0.72);
  --gold-wash: rgba(212, 175, 55, 0.12);
}

.section-kicker::after,
.welcome-label::before,
.welcome-label::after {
  background: var(--gold-solid) !important;
}

.button.primary {
  color: #24120d !important;
  background: var(--gold-solid) !important;
  border-color: var(--gold-solid) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(212, 175, 55, 0.22) !important;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold-solid) !important;
  border-color: var(--gold-solid) !important;
}

.hero::after,
.hero-copy,
.about-copy,
.intro-panel,
.contact-form,
.checklist,
.signal-card,
.method-step,
.faq-list,
.testimonial-feature,
.testimonial-card,
.reading-result,
.button.ghost,
.quote-mark,
.site-footer {
  border-color: var(--gold-line) !important;
}

.hero-copy::after,
.about-copy::after,
.intro-panel::after,
.contact-form::after {
  border-right-color: var(--gold-solid) !important;
  border-bottom-color: var(--gold-solid) !important;
}

.signal-card:hover,
.method-step:hover,
.faq-item:hover,
.button:hover {
  border-color: var(--gold-solid) !important;
}

.brand-watermark-track span::before {
  border-color: var(--gold-solid) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-solid) !important;
}

.quote-mark {
  background-color: rgba(212, 175, 55, 0.10) !important;
  background-image: url("assets/client/logo-round-mark-gold.png") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 74% !important;
}

/* Correcoes finais: fotos na frente, marca d'agua visivel e dourado fechado */
:root {
  --gold: #b8872f;
  --gold-soft: #d7b46a;
  --gold-bright: #d7b46a;
  --gold-solid: #b8872f;
  --gold-line: rgba(184, 135, 47, 0.76);
  --gold-wash: rgba(184, 135, 47, 0.14);
}

.hero {
  background:
    linear-gradient(90deg, rgba(18, 8, 12, 0.94) 0%, rgba(88, 30, 45, 0.86) 42%, rgba(154, 93, 109, 0.5) 100%),
    linear-gradient(0deg, rgba(18, 8, 12, 0.95) 0%, transparent 38%, rgba(18, 8, 12, 0.18) 100%),
    url("assets/hero-luxo.png") center / cover no-repeat !important;
}

.hero::before {
  inset: 90px 4vw auto auto !important;
  z-index: -1 !important;
  width: min(760px, 48vw) !important;
  height: calc(100% - 150px) !important;
  border: 1px solid rgba(184, 135, 47, 0.22) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(184, 135, 47, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 243, 223, 0.06), rgba(109, 32, 53, 0.16)) !important;
  opacity: 1 !important;
}

.hero::after {
  inset: 86px 28px 28px !important;
  z-index: -1 !important;
  border: 1px solid rgba(184, 135, 47, 0.42) !important;
  border-radius: 8px !important;
  background: transparent !important;
}

.hero-stage {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr) !important;
  justify-content: initial !important;
  align-items: center !important;
}

.hero-visual {
  display: block !important;
  position: relative !important;
  min-height: 680px !important;
  z-index: 1 !important;
}

.portrait-main,
.portrait-side,
.hero-seal,
.hero-note {
  display: block !important;
}

.portrait-main,
.portrait-side {
  z-index: 2 !important;
  overflow: visible !important;
}

.portrait-main::after,
.portrait-side::after {
  background: linear-gradient(180deg, transparent 72%, rgba(18, 8, 12, 0.2)) !important;
  mix-blend-mode: normal !important;
  opacity: 0.42 !important;
}

.portrait-main img,
.portrait-side img,
.about-photo img,
.experience-media img {
  filter: saturate(1.03) contrast(1.02) brightness(1) !important;
}

.hero-copy {
  background:
    linear-gradient(135deg, rgba(18, 8, 12, 0.74), rgba(109, 32, 53, 0.42)),
    rgba(52, 19, 29, 0.44) !important;
}

.hero h1,
.hero-copy p:not(.eyebrow),
.hero-copy .eyebrow,
.welcome-label {
  color: var(--paper) !important;
}

.hero-copy .hero-logo {
  opacity: 0.22 !important;
  filter: drop-shadow(0 10px 24px rgba(184, 135, 47, 0.26)) !important;
}

.brand .brand-signature {
  opacity: 1 !important;
  filter: drop-shadow(0 10px 20px rgba(18, 8, 12, 0.34)) !important;
}

.about-section::before,
.about-section::after,
.experience-section::before,
.experience-section::after {
  display: none !important;
}

.about-layout {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr) !important;
}

.experience-grid {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr) !important;
}

.about-photo,
.experience-media {
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

.about-copy,
.experience-copy {
  max-width: none !important;
}

.about-section,
.experience-section {
  background:
    radial-gradient(ellipse at 12% 18%, rgba(184, 135, 47, 0.12), transparent 34%),
    radial-gradient(ellipse at 88% 12%, rgba(219, 164, 175, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(52, 19, 29, 0.98), rgba(18, 8, 12, 0.97) 50%, rgba(109, 32, 53, 0.92)) !important;
}

.about-copy,
.experience-copy,
.intro-panel,
.contact-form,
.checklist,
.signal-card,
.method-step {
  border-color: var(--gold-line) !important;
}

.about-copy h2,
.experience-copy h2,
.about-text p,
.experience-copy p,
.feature-list span,
.feature-list strong {
  color: var(--paper) !important;
}

.testimonial-card::before {
  background: linear-gradient(180deg, transparent 76%, rgba(18, 8, 12, 0.48)) !important;
}

.testimonial-card img {
  position: relative !important;
  z-index: 0 !important;
  background: #fff8ed !important;
  filter: saturate(1.04) contrast(1.03) brightness(1.02) !important;
}

.testimonial-card span {
  color: #fff8ed !important;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.62) !important;
}

.brand-watermark {
  border-block-color: var(--gold-line) !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.98), rgba(234, 218, 196, 0.9), rgba(215, 180, 106, 0.24)),
    #fff8ed !important;
}

.brand-watermark-mark {
  opacity: 0.34 !important;
}

.brand-watermark-track span,
.brand-watermark-track span::before {
  color: #321d23 !important;
  border-color: var(--gold-solid) !important;
}

.section-kicker,
.hero-assurances span,
.testimonial-stats span,
.button.ghost {
  color: var(--gold-bright) !important;
}

.section-kicker::after,
.welcome-label::before,
.welcome-label::after {
  background: var(--gold-solid) !important;
}

.button.primary {
  color: #21110a !important;
  background: var(--gold-solid) !important;
  border-color: var(--gold-solid) !important;
}

@media (max-width: 1080px) {
  .hero-stage,
  .about-layout,
  .experience-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-visual {
    min-height: 620px !important;
  }
}

@media (max-width: 620px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(18, 8, 12, 0.72), rgba(109, 32, 53, 0.6)),
      url("assets/hero-luxo.png") center / cover no-repeat !important;
  }

  .hero-stage {
    padding-top: 12px !important;
  }

  .hero-copy {
    margin-top: 0 !important;
  }

  .hero-visual {
    min-height: 500px !important;
    order: -1;
  }

  .portrait-main {
    right: 0 !important;
    width: min(390px, 78vw) !important;
  }

  .portrait-side {
    left: 0 !important;
    width: min(210px, 42vw) !important;
  }

  .brand-watermark-mark {
    opacity: 0.3 !important;
  }
}

/* Modelo da referencia: cabecalho claro, foto cheia e texto sobreposto */
:root {
  --model-cream: #fffdf8;
  --model-olive: #6d7045;
  --model-brown: #4b3822;
  --model-button: #b88d6d;
  --model-button-dark: #9d765a;
  --gold: #b8872f;
  --gold-soft: #d7b46a;
  --gold-bright: #d7b46a;
  --gold-solid: #b8872f;
  --gold-line: rgba(184, 135, 47, 0.76);
}

.topbar {
  position: relative !important;
  z-index: 30 !important;
  display: grid !important;
  grid-template-columns: minmax(130px, 1fr) 56px minmax(112px, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 92px !important;
  margin: 0 !important;
  padding: 12px clamp(14px, 4vw, 34px) !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #111 !important;
  backdrop-filter: none !important;
}

.brand {
  justify-self: start !important;
  width: min(220px, 42vw) !important;
  line-height: 0 !important;
}

.brand .brand-signature {
  width: 100% !important;
  max-height: 68px !important;
  object-fit: contain !important;
  object-position: left center !important;
  opacity: 1 !important;
  filter: sepia(0.34) saturate(0.86) hue-rotate(15deg) brightness(0.74) !important;
}

.menu-toggle {
  display: inline-flex !important;
  justify-self: center !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #111 !important;
  cursor: pointer !important;
}

.menu-toggle span:not(.sr-only) {
  width: 30px !important;
  height: 4px !important;
  margin: 3px auto !important;
  border-radius: 999px !important;
  background: #111 !important;
}

.topbar-schedule {
  display: inline-flex !important;
  justify-self: end !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 58px !important;
  padding: 0 clamp(14px, 3vw, 24px) !important;
  border-radius: 7px !important;
  color: #fff !important;
  background: var(--model-button) !important;
  box-shadow: none !important;
  font-size: clamp(0.95rem, 3.7vw, 1.15rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.topbar-schedule:hover,
.topbar-schedule:focus-visible {
  background: var(--model-button-dark) !important;
  outline: none !important;
}

.topbar-schedule .button-icon {
  width: 20px !important;
  height: 20px !important;
}

.nav-links {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: clamp(14px, 4vw, 34px) !important;
  left: auto !important;
  z-index: 40 !important;
  display: none !important;
  width: min(310px, calc(100vw - 28px)) !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 10px !important;
  border: 1px solid rgba(109, 112, 69, 0.18) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 38px rgba(45, 35, 21, 0.16) !important;
  backdrop-filter: none !important;
}

.nav-links.open {
  display: flex !important;
}

.nav-links a {
  min-height: 44px !important;
  padding: 12px 14px !important;
  border-radius: 6px !important;
  color: var(--model-brown) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--model-brown) !important;
  background: rgba(184, 141, 109, 0.13) !important;
}

.hero {
  min-height: 100svh !important;
  background: var(--model-cream) !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero-stage {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: end !important;
  justify-content: stretch !important;
  width: 100% !important;
  max-width: none !important;
  min-height: calc(100svh - 92px) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.hero-visual {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  height: 100% !important;
}

.portrait-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: hidden !important;
}

.portrait-main::before {
  display: none !important;
}

.portrait-main::after {
  inset: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(79, 85, 49, 0.12) 38%, rgba(73, 85, 47, 0.72) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 30%, transparent 72%, rgba(81, 91, 52, 0.22)) !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

.portrait-main img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center 14% !important;
  filter: saturate(0.96) contrast(0.96) brightness(1.04) !important;
}

.portrait-side,
.hero-seal,
.hero-note {
  display: none !important;
}

.hero-copy {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  justify-items: center !important;
  width: min(780px, calc(100% - 28px)) !important;
  max-width: none !important;
  margin: 0 auto clamp(18px, 4.5vw, 48px) !important;
  padding: 0 clamp(8px, 2vw, 20px) clamp(18px, 3vw, 30px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.hero-copy::before,
.hero-copy::after,
.hero-copy .hero-logo {
  display: none !important;
}

.hero-copy > * {
  position: relative !important;
  z-index: 1 !important;
}

.hero-copy .welcome-label {
  display: block !important;
  width: min(620px, 100%) !important;
  margin: 0 auto clamp(12px, 3vw, 18px) !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.08rem, 4vw, 1.55rem) !important;
  font-weight: 700 !important;
  line-height: 1.36 !important;
  text-align: center !important;
  text-shadow: 0 3px 16px rgba(35, 28, 16, 0.45) !important;
}

.welcome-label::before,
.welcome-label::after {
  display: none !important;
}

.hero-copy .eyebrow {
  display: none !important;
}

.hero-copy h1 {
  width: min(650px, 100%) !important;
  margin: 0 auto clamp(20px, 4vw, 30px) !important;
  padding: clamp(12px, 3.5vw, 22px) clamp(14px, 4vw, 34px) !important;
  color: var(--model-brown) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.45rem, 6.2vw, 3.05rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  letter-spacing: 0 !important;
  box-shadow: 0 16px 34px rgba(45, 36, 21, 0.14) !important;
}

.hero-copy p:not(.eyebrow) {
  width: min(690px, 100%) !important;
  max-width: none !important;
  margin: 0 auto !important;
  color: #fff !important;
  font-size: clamp(1.08rem, 4.4vw, 1.65rem) !important;
  font-weight: 500 !important;
  line-height: 1.38 !important;
  text-align: center !important;
  text-shadow: 0 3px 18px rgba(35, 28, 16, 0.52) !important;
}

.hero-assurances {
  display: none !important;
}

.hero-actions {
  justify-content: center !important;
  width: 100% !important;
  margin-top: clamp(18px, 4vw, 28px) !important;
}

.hero-actions .button.primary {
  width: min(520px, 100%) !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: clamp(1.12rem, 4.6vw, 1.7rem) !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  text-shadow: 0 3px 18px rgba(35, 28, 16, 0.56) !important;
}

.floating-whatsapp {
  position: fixed !important;
  right: clamp(18px, 5vw, 34px) !important;
  bottom: clamp(18px, 5vw, 34px) !important;
  z-index: 90 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 68px !important;
  height: 68px !important;
  border: 6px solid #fff !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: #19d25d !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2) !important;
}

.floating-whatsapp svg {
  width: 38px !important;
  height: 38px !important;
  fill: currentColor !important;
}

@media (max-width: 620px) {
  .topbar {
    grid-template-columns: minmax(134px, 1fr) 46px auto !important;
    min-height: 88px !important;
    padding: 10px 14px !important;
  }

  .brand {
    width: min(180px, 40vw) !important;
  }

  .menu-toggle {
    width: 44px !important;
    height: 44px !important;
  }

  .menu-toggle span:not(.sr-only) {
    width: 28px !important;
    height: 4px !important;
  }

  .topbar-schedule {
    min-height: 54px !important;
    padding-inline: 13px !important;
  }

  .hero-stage {
    min-height: calc(100svh - 88px) !important;
  }

  .portrait-main img {
    object-position: center top !important;
  }

  .hero-copy {
    width: calc(100% - 26px) !important;
    margin-bottom: 14px !important;
  }

  .hero-copy h1 {
    width: min(420px, 100%) !important;
  }

  .floating-whatsapp {
    width: 64px !important;
    height: 64px !important;
    border-width: 5px !important;
  }
}

@media (min-width: 621px) {
  .hero-copy h1 {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem) !important;
    line-height: 1.24 !important;
  }

  .hero-copy p:not(.eyebrow),
  .hero-actions .button.primary {
    font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  }
}

/* Estilo referencia escuro: perfil central + cards premium */
:root {
  --profile-black: #000;
  --profile-panel: #080808;
  --profile-panel-soft: #101010;
  --profile-line: rgba(255, 255, 255, 0.18);
  --profile-line-strong: rgba(255, 255, 255, 0.28);
  --profile-gold: #d8a416;
  --profile-gold-soft: #f0cf6a;
  --profile-text: #f7f3ea;
  --profile-muted: #bdb8ad;
}

html,
body {
  background: var(--profile-black) !important;
}

body {
  color: var(--profile-text) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 164, 22, 0.11), transparent 28rem),
    #000 !important;
}

.topbar {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 30 !important;
  display: grid !important;
  grid-template-columns: minmax(132px, 1fr) 52px minmax(116px, 1fr) !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 82px !important;
  padding: 14px clamp(16px, 4vw, 38px) !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0)) !important;
  box-shadow: none !important;
}

.brand {
  width: min(220px, 42vw) !important;
}

.brand .brand-signature {
  width: 100% !important;
  max-height: 58px !important;
  filter: brightness(1.2) saturate(0.95) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.55)) !important;
}

.menu-toggle {
  width: 50px !important;
  height: 50px !important;
  border: 1px solid rgba(216, 164, 22, 0.62) !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.36) !important;
  color: var(--profile-gold) !important;
}

.menu-toggle span:not(.sr-only) {
  width: 21px !important;
  height: 2px !important;
  margin: 3px auto !important;
  background: currentColor !important;
}

.topbar-schedule {
  min-height: 50px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(216, 164, 22, 0.78) !important;
  border-radius: 999px !important;
  color: #000 !important;
  background: var(--profile-gold) !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38) !important;
}

.nav-links {
  top: 76px !important;
  right: clamp(16px, 4vw, 38px) !important;
  background: rgba(8, 8, 8, 0.96) !important;
  border-color: rgba(216, 164, 22, 0.36) !important;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.55) !important;
}

.nav-links a {
  color: var(--profile-text) !important;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--profile-gold-soft) !important;
  background: rgba(216, 164, 22, 0.1) !important;
}

.hero {
  min-height: clamp(390px, 52vw, 460px) !important;
  background: #000 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.hero-stage {
  min-height: clamp(390px, 52vw, 460px) !important;
  padding: 96px 16px 30px !important;
}

.hero-visual {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.portrait-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.portrait-main::before {
  display: none !important;
}

.portrait-main::after {
  inset: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58) 42%, #000 100%),
    radial-gradient(ellipse at 50% 10%, rgba(216, 164, 22, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 26%, transparent 72%, rgba(0, 0, 0, 0.82)) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.portrait-main img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center 28% !important;
  filter: saturate(0.9) contrast(0.95) brightness(0.72) !important;
}

.portrait-side,
.hero-note {
  display: none !important;
}

.hero-copy {
  position: relative !important;
  z-index: 4 !important;
  width: min(680px, 100%) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  justify-items: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: center !important;
}

.hero-copy::before {
  content: "" !important;
  display: block !important;
  width: 88px !important;
  height: 88px !important;
  margin: 0 auto 18px !important;
  border: 3px solid rgba(255, 255, 255, 0.78) !important;
  border-radius: 50% !important;
  background: url("assets/client/beatriz-portrait-close.jpeg") center 18% / cover no-repeat !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.56) !important;
}

.hero-copy::after {
  content: "✓" !important;
  position: absolute !important;
  top: 8px !important;
  left: calc(50% + 32px) !important;
  display: grid !important;
  place-items: center !important;
  width: 22px !important;
  height: 22px !important;
  border: 2px solid #000 !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: #28a8ff !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
}

.hero-copy .hero-logo {
  display: none !important;
}

.hero-copy .welcome-label {
  margin: 0 0 10px !important;
  color: var(--profile-gold-soft) !important;
  font-family: "Segoe UI", system-ui, sans-serif !important;
  font-size: clamp(0.74rem, 1.8vw, 0.92rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.72) !important;
}

.hero-copy h1 {
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: "Segoe UI", system-ui, sans-serif !important;
  font-size: clamp(2.05rem, 4.2vw, 3rem) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  text-transform: none !important;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.72) !important;
}

.hero-copy p:not(.eyebrow) {
  width: min(520px, 100%) !important;
  margin: 14px auto 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: clamp(0.95rem, 2vw, 1.08rem) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.72) !important;
}

.hero-copy .eyebrow,
.hero-assurances {
  display: none !important;
}

.hero-actions {
  display: flex !important;
  justify-content: center !important;
  gap: 26px !important;
  margin-top: 26px !important;
}

.social-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  height: 58px !important;
  border: 2px solid var(--profile-gold) !important;
  border-radius: 50% !important;
  color: var(--profile-gold) !important;
  background: rgba(0, 0, 0, 0.24) !important;
  box-shadow: inset 0 0 0 1px rgba(216, 164, 22, 0.15), 0 16px 34px rgba(0, 0, 0, 0.42) !important;
}

.social-link svg {
  width: 31px !important;
  height: 31px !important;
  fill: currentColor !important;
}

.social-link.text {
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: lowercase !important;
}

main {
  background: #000 !important;
  padding: 22px 0 82px !important;
}

main > section {
  width: min(650px, calc(100% - 30px)) !important;
  margin: 0 auto 28px !important;
  padding: 0 !important;
  border: 1px solid var(--profile-line) !important;
  border-radius: 11px !important;
  background: var(--profile-panel) !important;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38) !important;
  overflow: hidden !important;
}

main > section .container {
  width: 100% !important;
  padding: clamp(24px, 4vw, 38px) !important;
}

.brand-watermark {
  min-height: 172px !important;
  display: grid !important;
  align-items: end !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, rgba(216, 164, 22, 0.25), transparent 34%),
    url("assets/client/beatriz-office-blue-writing.jpeg") center 44% / cover no-repeat !important;
}

.brand-watermark-mark {
  left: 24px !important;
  top: 22px !important;
  width: min(300px, 70%) !important;
  height: 72px !important;
  opacity: 0.82 !important;
  transform: none !important;
  background-image: url("assets/client/logo-wide-mark-gold.png") !important;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55)) !important;
}

.brand-watermark-track {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 22px 22px !important;
}

.brand-watermark-track span {
  min-height: 0 !important;
  padding: 7px 10px !important;
  border: 1px solid rgba(216, 164, 22, 0.36) !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.44) !important;
  font-size: 0.72rem !important;
}

.brand-watermark-track span::before {
  display: none !important;
}

.about-layout,
.intro-grid,
.experience-grid,
.method-layout,
.reading-layout,
.contact-layout,
.testimonials-layout {
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}

.about-photo,
.experience-media {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: none !important;
  transform: none !important;
}

.about-photo img,
.experience-media img {
  height: clamp(220px, 40vw, 330px) !important;
  border-radius: 8px !important;
  filter: saturate(0.82) contrast(0.96) brightness(0.76) !important;
}

.about-photo::before,
.about-photo::after,
.experience-media::before {
  display: none !important;
}

.about-photo figcaption {
  border-color: rgba(216, 164, 22, 0.4) !important;
  color: var(--profile-gold-soft) !important;
  background: rgba(0, 0, 0, 0.62) !important;
}

.about-copy,
.experience-copy,
.intro-panel,
.contact-form,
.checklist,
.faq-list {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.section-kicker {
  color: var(--profile-gold-soft) !important;
  font-family: "Segoe UI", system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.18em !important;
}

.section-kicker::after {
  background: var(--profile-gold) !important;
}

.about-copy h2,
.intro-copy h2,
.section-heading h2,
.experience-copy h2,
.testimonials-copy h2,
.contact-copy h2,
blockquote {
  color: #fff !important;
  font-size: clamp(1.6rem, 4.6vw, 2.35rem) !important;
  line-height: 1.08 !important;
  text-shadow: none !important;
}

.about-text p,
.intro-panel p,
.section-heading p,
.experience-copy p,
.testimonials-copy p,
.quote-wrap p,
.contact-copy p,
.signal-card p,
.method-step p,
.feature-list span,
.faq-item p,
.form-note {
  color: var(--profile-muted) !important;
}

.signal-grid,
.method-runway,
.feature-list {
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.signal-card,
.method-step,
.feature-list div,
.checklist label,
.faq-item {
  min-height: auto !important;
  border: 1px solid var(--profile-line) !important;
  border-radius: 10px !important;
  background:
    linear-gradient(135deg, rgba(216, 164, 22, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.035) !important;
  box-shadow: none !important;
}

.signal-card h3,
.method-step h3,
.faq-item summary span {
  color: #fff !important;
}

.signal-card span,
.method-step span,
.feature-list strong {
  color: var(--profile-gold-soft) !important;
}

.testimonial-wall {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.testimonial-card,
.testimonial-feature {
  aspect-ratio: 10 / 16 !important;
  border: 1px solid var(--profile-line-strong) !important;
  border-radius: 11px !important;
  background: #050505 !important;
  box-shadow: none !important;
}

.testimonial-card::before {
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.74)) !important;
}

.testimonial-card::after {
  display: none !important;
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(216, 164, 22, 0.16), transparent 34%),
    #080808 !important;
}

.quote-mark {
  border-color: rgba(216, 164, 22, 0.6) !important;
  background-color: rgba(216, 164, 22, 0.08) !important;
}

.button.primary,
.contact-actions .button.primary,
.checklist .button.primary,
.contact-form .button.primary {
  color: #000 !important;
  background: var(--profile-gold) !important;
  border-color: var(--profile-gold) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32) !important;
}

.button.ghost,
.contact-actions .button.ghost {
  color: var(--profile-gold-soft) !important;
  background: transparent !important;
  border-color: rgba(216, 164, 22, 0.54) !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: var(--profile-line) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.055) !important;
}

.site-footer {
  background: #000 !important;
  border-top: 0 !important;
  padding: 84px 0 42px !important;
}

.footer-inner {
  justify-content: center !important;
  text-align: center !important;
}

.footer-mark {
  opacity: 1 !important;
  filter: drop-shadow(0 0 18px rgba(216, 164, 22, 0.18)) !important;
}

.footer-inner span {
  color: rgba(255, 255, 255, 0.45) !important;
}

.floating-whatsapp {
  background: #111 !important;
  border-color: var(--profile-gold) !important;
  color: var(--profile-gold) !important;
}

@media (max-width: 620px) {
  .topbar {
    min-height: 74px !important;
    padding: 12px 14px !important;
    grid-template-columns: minmax(120px, 1fr) 48px auto !important;
  }

  .brand {
    width: min(170px, 42vw) !important;
  }

  .topbar-schedule {
    min-height: 46px !important;
    padding: 0 14px !important;
  }

  .hero,
  .hero-stage {
    min-height: 430px !important;
  }

  .hero-stage {
    padding: 86px 14px 26px !important;
  }

  .hero-copy::before {
    width: 78px !important;
    height: 78px !important;
    margin-bottom: 14px !important;
  }

  .hero-copy::after {
    left: calc(50% + 27px) !important;
  }

  .hero-actions {
    gap: 18px !important;
    margin-top: 22px !important;
  }

  .social-link {
    width: 52px !important;
    height: 52px !important;
  }

  main {
    padding-top: 18px !important;
  }

  main > section {
    width: min(650px, calc(100% - 22px)) !important;
    margin-bottom: 22px !important;
  }

  main > section .container {
    padding: 22px !important;
  }

  .testimonial-wall {
    grid-template-columns: 1fr !important;
  }
}

.hero-copy .hero-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
}

.about-section,
.experience-section {
  background: var(--profile-panel) !important;
}

/* Ajuste: mostrar as imagens inteiras, sem cortar cabeca, rosto ou corpo */
.portrait-main {
  background: #000 !important;
}

.portrait-main img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #000 !important;
}

.brand-watermark {
  min-height: clamp(340px, 74vw, 500px) !important;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, rgba(216, 164, 22, 0.18), transparent 38%),
    url("assets/client/beatriz-office-blue-writing.jpeg") !important;
  background-size: 100% 100%, 100% 100%, contain !important;
  background-position: center, center, center !important;
  background-repeat: no-repeat !important;
  background-color: #050505 !important;
}

.about-photo,
.experience-media {
  background: #050505 !important;
}

.about-photo img,
.experience-media img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #050505 !important;
}

.testimonial-card img,
.testimonial-feature img,
.lightbox img {
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 620px) {
  .brand-watermark {
    min-height: clamp(360px, 104vw, 500px) !important;
  }
}

/* Ajuste: remover linhas/cantoneiras que estavam cortando os textos */
.about-copy::before,
.about-copy::after,
.intro-panel::before,
.intro-panel::after,
.contact-form::before,
.contact-form::after,
.checklist::before,
.checklist::after {
  display: none !important;
  content: none !important;
}

.about-copy,
.experience-copy,
.intro-panel,
.contact-form,
.checklist,
.faq-list {
  overflow: visible !important;
}

.intro-panel,
.contact-form,
.checklist,
.faq-list {
  padding: clamp(20px, 5vw, 30px) !important;
}

.intro-panel p,
.about-text p,
.experience-copy p,
.section-heading p,
.testimonials-copy p,
.quote-wrap p,
.contact-copy p,
.signal-card p,
.method-step p,
.faq-item p {
  max-width: none !important;
  margin-right: 0 !important;
}

.signal-card,
.method-step,
.feature-list div,
.checklist label,
.faq-item {
  overflow: visible !important;
}

/* Depoimentos em carrossel horizontal, um por vez */
.testimonial-wall {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px !important;
  align-items: stretch !important;
  width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 2px 14px !important;
  scroll-snap-type: x mandatory !important;
  scroll-padding-inline: 2px !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-color: var(--profile-gold) rgba(255, 255, 255, 0.08) !important;
  scrollbar-width: thin !important;
}

.testimonial-card,
.testimonial-feature {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  scroll-snap-align: start !important;
  scroll-snap-stop: always !important;
}

.testimonial-card img,
.testimonial-feature img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.testimonial-card span {
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
}

/* Logo do primeiro card fora do rosto */
.brand-watermark-mark {
  left: 20px !important;
  right: auto !important;
  top: auto !important;
  bottom: 22px !important;
  width: min(220px, 58vw) !important;
  height: 56px !important;
  opacity: 0.72 !important;
  background-position: left center !important;
  transform: none !important;
}

.brand-watermark::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
  height: 118px !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74)) !important;
}

.brand-watermark-mark,
.brand-watermark-track {
  z-index: 2 !important;
}

.brand-watermark-track {
  padding-bottom: 86px !important;
}

/* Ajuste: dropdown legivel para escolher uma opcao */
.contact-section,
.contact-layout,
.contact-form {
  overflow: visible !important;
}

.contact-form select,
select {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  color: #ffffff !important;
  background-color: #151515 !important;
  border-color: var(--profile-gold, #d8a416) !important;
}

.contact-form select:focus,
select:focus {
  color: #ffffff !important;
  background-color: #151515 !important;
  border-color: #f0c84b !important;
  box-shadow: 0 0 0 3px rgba(216, 164, 22, 0.18) !important;
}

.contact-form select option,
select option {
  color: #111111 !important;
  background-color: #ffffff !important;
  font-weight: 600 !important;
}

.contact-form select option:checked,
select option:checked {
  color: #ffffff !important;
  background-color: #6f6f6f !important;
}

/* Ajuste: WhatsApp flutuante piscando para chamar atencao */
.floating-whatsapp {
  animation: whatsappPulse 1.45s ease-in-out infinite !important;
  transform-origin: center center !important;
}

.floating-whatsapp svg {
  animation: whatsappIconBlink 1.45s ease-in-out infinite !important;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(216, 164, 22, 0.72),
      0 16px 34px rgba(0, 0, 0, 0.38);
  }

  50% {
    transform: scale(1.1);
    box-shadow:
      0 0 0 14px rgba(216, 164, 22, 0),
      0 20px 42px rgba(216, 164, 22, 0.34);
  }
}

@keyframes whatsappIconBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.58;
  }
}
