:root {
  --color-ink: #11100e;
  --color-ink-soft: #24211d;
  --color-gold: #c99a2e;
  --color-gold-dark: #9a6f13;
  --color-gold-light: #e4c36a;
  --color-ivory: #fbf8ef;
  --color-cream: #f3ede0;
  --color-white: #ffffff;
  --color-text: #4b4740;
  --color-border: rgba(17, 16, 14, 0.13);
  --color-success: #25754a;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --shadow-soft: 0 18px 55px rgba(27, 21, 12, 0.09);
  --shadow-card: 0 25px 70px rgba(0, 0, 0, 0.17);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition);
}

a:hover {
  color: var(--color-ink);
}

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

p {
  margin-top: 0;
}

address {
  font-style: normal;
}

::selection {
  color: var(--color-ink);
  background: var(--color-gold-light);
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--color-ink);
  background: var(--color-white);
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 25px;
  border: 1px solid var(--color-gold);
  border-radius: 3px;
  color: var(--color-ink);
  background: var(--color-gold);
  box-shadow: 0 9px 24px rgba(201, 154, 46, 0.15);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-align: center;
}

.button:hover {
  color: var(--color-ink);
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 0.8rem;
}

.button-outline-light {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button-outline-light:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

.button-outline-dark {
  color: var(--color-ink);
  background: transparent;
  border-color: rgba(17, 16, 14, 0.34);
  box-shadow: none;
}

.button-outline-dark:hover {
  color: var(--color-ink);
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--color-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-light {
  color: var(--color-gold-light);
}

.eyebrow-centered {
  justify-content: center;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.7vw, 4.2rem);
}

.section-heading > p:last-child,
.contact-copy > p {
  margin-bottom: 0;
  color: #686158;
  font-size: 1.04rem;
}

.section-heading-light h2,
.section-heading-light > p:last-child {
  color: var(--color-white);
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

/* Cabeçalho */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--color-ivory);
  box-shadow: 0 1px 0 rgba(17, 16, 14, 0.08);
}

.header-service-bar {
  color: rgba(255, 255, 255, 0.74);
  background: var(--color-ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.service-bar-inner,
.service-bar-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-bar-inner {
  min-height: 36px;
}

.service-bar-inner p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.service-bar-inner a {
  color: rgba(255, 255, 255, 0.88);
}

.service-bar-inner a:hover {
  color: var(--color-gold-light);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #77c693;
  box-shadow: 0 0 0 4px rgba(119, 198, 147, 0.13);
}

.header-main {
  background: rgba(251, 248, 239, 0.98);
}

.header-inner {
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-branding {
  flex: 0 1 340px;
}

.brand-logo,
.custom-logo-link {
  display: block;
}

.site-branding img {
  width: auto;
  max-width: 340px;
  max-height: 73px;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  display: block;
  padding: 16px 0;
  color: var(--color-ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.primary-menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 1px;
  margin: auto;
  content: "";
  background: var(--color-gold);
  transition: width var(--transition);
}

.primary-menu > li:hover > a::after,
.primary-menu > .current-menu-item > a::after {
  width: 100%;
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 225px;
  margin: 0;
  padding: 12px 0;
  visibility: hidden;
  opacity: 0;
  list-style: none;
  background: var(--color-white);
  border-top: 2px solid var(--color-gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  padding: 10px 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--color-border);
  color: var(--color-ink);
  background: transparent;
}

.menu-toggle-lines {
  display: grid;
  width: 21px;
  gap: 5px;
  margin: auto;
}

.menu-toggle-lines span {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Banner */
.hero {
  position: relative;
  min-height: clamp(660px, 76vh, 800px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.94) 0%, rgba(8, 8, 7, 0.78) 43%, rgba(8, 7, 5, 0.12) 82%);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5.5vw;
  z-index: -1;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(201, 154, 46, 0.45), transparent);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent);
}

.hero-inner {
  padding-top: 55px;
  padding-bottom: 86px;
}

.hero-copy {
  width: min(670px, 60%);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 25px;
  color: var(--color-white);
  font-size: clamp(3.3rem, 6vw, 5.65rem);
  text-wrap: balance;
}

.hero-description {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-trust {
  display: flex;
  max-width: 610px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-trust > span {
  flex: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
  padding: 22px 22px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-trust > span + span {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-trust strong {
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.1vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-scroll {
  position: absolute;
  right: 4.5vw;
  bottom: 43px;
  width: 38px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
}

.hero-scroll span {
  position: absolute;
  top: 13px;
  left: calc(50% - 2px);
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--color-gold-light);
  animation: scroll-hint 1.8s ease infinite;
}

@keyframes scroll-hint {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(19px); }
}

/* Sobre */
.section-about {
  overflow: hidden;
  background: var(--color-ivory);
}

.section-about::before {
  position: absolute;
  top: -120px;
  right: -130px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(201, 154, 46, 0.16);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 105px;
}

.about-copy h2 {
  max-width: 660px;
}

.section-lead {
  max-width: 655px;
  margin-bottom: 0;
  color: #625c54;
  font-size: 1.06rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.about-pillars > div {
  position: relative;
  padding: 23px 20px 3px 48px;
  border-top: 1px solid var(--color-border);
}

.about-pillars span {
  position: absolute;
  top: 25px;
  left: 0;
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 1.06rem;
}

.about-pillars strong {
  color: var(--color-ink);
  font-size: 0.92rem;
}

.about-pillars p {
  margin: 7px 0 0;
  font-size: 0.84rem;
  line-height: 1.6;
}

.about-panel {
  position: relative;
  min-height: 520px;
  padding: 62px 52px 50px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 154, 46, 0.18), transparent 36%),
    linear-gradient(145deg, #1b1916, #080807);
  box-shadow: var(--shadow-card);
}

.about-panel::before,
.about-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(201, 154, 46, 0.18);
  border-radius: 50%;
}

.about-panel::before {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -65px;
}

.about-panel::after {
  width: 190px;
  height: 190px;
  right: -88px;
  bottom: -30px;
}

.about-panel-line {
  width: 56px;
  height: 2px;
  margin-bottom: 46px;
  background: var(--color-gold);
}

.about-quote {
  margin-bottom: 54px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3.05rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.about-availability {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
}

.about-availability strong {
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
}

.about-availability span {
  max-width: 175px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-panel > a {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 700;
}

.about-panel > a span,
.text-link span,
.footer-whatsapp span {
  display: inline-block;
  margin-left: 5px;
  transition: transform var(--transition);
}

.about-panel > a:hover span,
.text-link:hover span,
.footer-whatsapp:hover span {
  transform: translateX(5px);
}

/* Serviços */
.section-services {
  background: var(--color-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 16, 14, 0.16);
  border-bottom: 1px solid rgba(17, 16, 14, 0.16);
}

.service-card {
  position: relative;
  min-height: 355px;
  padding: 40px 30px 37px;
  overflow: hidden;
  transition: color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card + .service-card {
  border-left: 1px solid rgba(17, 16, 14, 0.16);
}

.service-card:hover {
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  background: var(--color-ink);
  box-shadow: var(--shadow-card);
  transform: translateY(-8px);
}

.service-card > span {
  position: absolute;
  top: 27px;
  right: 23px;
  color: rgba(17, 16, 14, 0.25);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.service-card:hover > span {
  color: rgba(255, 255, 255, 0.25);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 49px;
  color: var(--color-gold-dark);
  border: 1px solid rgba(154, 111, 19, 0.32);
  transform: rotate(45deg);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-45deg);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.65rem;
}

.service-card:hover h3 {
  color: var(--color-white);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.75;
}

/* Planos */
.section-plans {
  isolation: isolate;
  overflow: hidden;
  background: #0c0b0a;
}

.section-plans::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.25;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.plans-glow {
  position: absolute;
  z-index: -1;
  top: -360px;
  left: calc(50% - 340px);
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(201, 154, 46, 0.08);
  filter: blur(20px);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  padding: 43px 38px 38px;
  color: #686158;
  background: var(--color-ivory);
  border: 1px solid transparent;
  box-shadow: var(--shadow-card);
}

.plan-card.is-featured {
  border-color: var(--color-gold);
  transform: translateY(-16px);
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 8px 13px;
  color: var(--color-ink);
  background: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-eyebrow {
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-bottom: 19px;
  font-size: 2.5rem;
}

.plan-description {
  min-height: 87px;
  margin-bottom: 24px;
  font-size: 0.87rem;
}

.plan-price {
  min-height: 53px;
  margin-bottom: 27px;
  padding: 16px 0;
  color: var(--color-ink);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 700;
}

.plan-card ul {
  flex: 1;
  margin: 0 0 33px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 8px 0;
  font-size: 0.84rem;
}

.plan-card li span {
  color: var(--color-gold-dark);
  font-weight: 700;
}

.plan-card .button {
  width: 100%;
}

.plans-note {
  max-width: 780px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  text-align: center;
}

/* Processo */
.section-process {
  background: var(--color-white);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1fr);
  gap: 100px;
}

.process-grid .section-heading {
  position: sticky;
  top: 160px;
  align-self: start;
  margin-bottom: 0;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid var(--color-border);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--color-border);
}

.process-list > li > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--color-gold-dark);
  border: 1px solid rgba(154, 111, 19, 0.35);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.process-list h3 {
  margin-bottom: 9px;
  font-size: 1.7rem;
}

.process-list p {
  margin: 0;
  font-size: 0.9rem;
}

/* FAQ */
.section-faq {
  background: var(--color-cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
  gap: 100px;
}

.faq-grid .section-heading {
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-gold);
  font-size: 0.83rem;
  font-weight: 700;
}

.faq-list details {
  border-top: 1px solid var(--color-border);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--color-ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--color-gold-dark);
  transition: transform var(--transition);
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -3px 50px 25px 0;
  font-size: 0.88rem;
}

/* Contato */
.section-contact {
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  background: #0c0b0a;
}

.section-contact::before {
  position: absolute;
  right: -220px;
  bottom: -290px;
  z-index: -1;
  width: 630px;
  height: 630px;
  content: "";
  border: 1px solid rgba(201, 154, 46, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(201, 154, 46, 0.025), 0 0 0 160px rgba(201, 154, 46, 0.018);
}

.contact-simple {
  position: relative;
}

.contact-copy-centered {
  max-width: 910px;
  margin: 0 auto;
  text-align: center;
}

.contact-copy-centered h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  color: var(--color-white);
  font-size: clamp(3.1rem, 6vw, 5rem);
}

.contact-copy-centered > p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.03rem;
}

.contact-details-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin: 64px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details-large > .contact-detail {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px;
  color: var(--color-white);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background var(--transition), transform var(--transition);
}

.contact-details-large a.contact-detail:hover {
  background: rgba(201, 154, 46, 0.08);
}

.contact-details-large small {
  margin-bottom: 12px;
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details-large strong {
  overflow-wrap: anywhere;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.contact-details-large .contact-detail-primary strong {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}

.contact-details-large a:hover strong {
  color: var(--color-gold-light);
}

.contact-details-large span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

/* Páginas internas e blog */
.page-hero {
  position: relative;
  padding: 94px 0 91px;
  overflow: hidden;
  color: var(--color-white);
  background: linear-gradient(135deg, #171512, #050505);
}

.page-hero::after {
  position: absolute;
  top: -150px;
  right: 5vw;
  width: 370px;
  height: 370px;
  content: "";
  border: 1px solid rgba(201, 154, 46, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(201, 154, 46, 0.025), 0 0 0 130px rgba(201, 154, 46, 0.015);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.8rem, 5.2vw, 4.7rem);
}

.page-content,
.posts-area {
  padding: 90px 0 110px;
  background: var(--color-white);
}

.content-narrow {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
}

.entry-content {
  color: #504b44;
}

.entry-content > * {
  max-width: 100%;
}

.entry-content h2 {
  margin-top: 1.7em;
  font-size: 2.35rem;
}

.entry-content h3 {
  margin-top: 1.5em;
  font-size: 1.75rem;
}

.entry-content p,
.entry-content li {
  font-size: 1.02rem;
}

.entry-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  margin: 40px 0;
  padding: 10px 0 10px 32px;
  color: var(--color-ink);
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.entry-content img {
  margin-top: 30px;
  margin-bottom: 30px;
}

.single-thumbnail {
  margin-bottom: 46px;
}

.single-thumbnail img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.post-navigation-wrap {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.75rem;
}

.post-meta a {
  color: rgba(255, 255, 255, 0.77);
}

.byline {
  margin-left: 15px;
}

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

.post-card {
  overflow: hidden;
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.post-card-thumbnail {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-cream);
}

.post-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.post-card:hover .post-card-thumbnail img {
  transform: scale(1.035);
}

.post-card-content {
  padding: 28px;
}

.post-card-content h2 {
  margin-bottom: 13px;
  font-size: 1.8rem;
}

.post-card-content h2 a {
  color: var(--color-ink);
}

.post-card-content p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.post-card-date {
  display: block;
  margin-bottom: 11px;
  color: var(--color-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pagination,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
}

.page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 13px;
  color: var(--color-ink);
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
}

.page-numbers.current,
.page-numbers:hover {
  color: var(--color-ink);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.comments-area {
  margin-top: 70px;
  padding-top: 45px;
  border-top: 1px solid var(--color-border);
}

.comment-list {
  margin: 0 0 45px;
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin-left: 30px;
  list-style: none;
}

.comment-body {
  margin-bottom: 22px;
  padding: 22px;
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
}

.comment-form input:not([type="submit"]),
.comment-form textarea,
.search-form input[type="search"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
}

.comment-form .submit,
.search-submit {
  min-height: 46px;
  padding: 10px 20px;
  color: var(--color-ink);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-weight: 700;
}

.not-found {
  padding: 120px 0;
  text-align: center;
}

.not-found .error-code {
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  line-height: 0.8;
}

.not-found h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

/* Rodapé */
.site-footer {
  color: rgba(255, 255, 255, 0.58);
  background: #070706;
}

.footer-main {
  padding: 83px 0 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 0.9fr 1fr;
  gap: 56px;
}

.footer-brand .brand-logo,
.footer-brand .custom-logo-link {
  width: fit-content;
  max-width: 300px;
  margin-bottom: 24px;
  padding: 7px 10px;
  background: var(--color-ivory);
}

.footer-brand img {
  width: auto;
  max-width: 280px;
  max-height: 59px;
  object-fit: contain;
}

.footer-brand > p {
  max-width: 360px;
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.footer-socials a,
.footer-column a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-socials a:hover,
.footer-column a:hover {
  color: var(--color-gold-light);
}

.footer-column h2 {
  margin: 4px 0 24px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-menu,
.footer-column .primary-menu,
.footer-contact-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column .primary-menu a,
.footer-menu a,
.footer-contact-list,
.footer-column address {
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-column .primary-menu > li > a::after {
  display: none;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(201, 154, 46, 0.55);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.75rem;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-bottom-inner a {
  color: var(--color-white);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 23px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: #1fa855;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.floating-whatsapp:hover {
  color: var(--color-white);
  background: #178c46;
  transform: translateY(calc(-50% - 3px));
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
}

/* Animações progressivas */
.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

/* WordPress */
.alignleft { float: left; margin: 0 28px 18px 0; }
.alignright { float: right; margin: 0 0 18px 28px; }
.aligncenter { display: block; margin-right: auto; margin-left: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { margin-top: 7px; color: #736c62; font-size: 0.78rem; }
.gallery { display: grid; gap: 15px; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.sticky { border-top: 3px solid var(--color-gold); }
.bypostauthor { outline: 1px solid rgba(201, 154, 46, 0.45); }

@media (max-width: 1080px) {
  .header-inner { gap: 25px; }
  .site-branding { flex-basis: 275px; }
  .site-branding img { max-width: 275px; }
  .primary-navigation { gap: 18px; }
  .primary-menu { gap: 18px; }
  .header-cta { display: none; }
  .hero-copy { width: min(720px, 71%); }
  .about-grid { gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3) { border-left: 0; border-top: 1px solid rgba(17, 16, 14, 0.16); }
  .service-card:nth-child(4) { border-top: 1px solid rgba(17, 16, 14, 0.16); }
  .process-grid,
  .faq-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 92px; }
  .section { padding: 86px 0; }
  .header-service-bar { display: none; }
  .header-main { position: relative; }
  .header-inner { min-height: 84px; }
  .site-branding { flex-basis: auto; }
  .site-branding img { max-width: 255px; max-height: 59px; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    padding: 0 20px;
    visibility: hidden;
    overflow: auto;
    opacity: 0;
    background: var(--color-ivory);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.11);
    transition: max-height 350ms ease, opacity var(--transition), visibility var(--transition), padding var(--transition);
  }
  .primary-navigation.is-open {
    max-height: calc(100vh - 84px);
    padding-top: 15px;
    padding-bottom: 26px;
    visibility: visible;
    opacity: 1;
  }
  .primary-menu { display: block; }
  .primary-menu li { border-bottom: 1px solid var(--color-border); }
  .primary-menu a { padding: 15px 2px; }
  .primary-menu > li > a::after { display: none; }
  .primary-menu .sub-menu {
    position: static;
    width: auto;
    padding: 0 0 8px 14px;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }
  .primary-menu .sub-menu li { border-bottom: 0; }
  .primary-menu .sub-menu a { padding: 8px 0; }
  .header-cta { display: inline-flex; width: 100%; margin-top: 19px; }
  .hero { min-height: 680px; background-position: 67% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,3,3,.94), rgba(3,3,3,.68) 75%, rgba(3,3,3,.38)); }
  .hero-inner { padding-top: 74px; padding-bottom: 74px; }
  .hero-copy { width: min(700px, 92%); }
  .hero-trust { margin-top: 48px; }
  .hero-scroll { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-panel { min-height: auto; }
  .contact-details-large { grid-template-columns: 1fr; max-width: 720px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; gap: 25px; }
  .plan-card { min-height: 0; }
  .plan-card.is-featured { transform: none; }
  .plan-description { min-height: 0; }
  .process-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .process-grid .section-heading { position: static; }
  .posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 35px; }
}

@media (max-width: 600px) {
  .site-container,
  .content-narrow { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 39px; }
  .section-heading h2,
  .about-copy h2 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .eyebrow { margin-bottom: 16px; font-size: 0.75rem; letter-spacing: 0.11em; }
  .site-branding img { max-width: min(235px, 68vw); max-height: 54px; }
  .header-inner { min-height: 77px; }
  .primary-navigation.is-open { max-height: calc(100vh - 77px); }
  .hero { min-height: 720px; background-position: 64% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,3,3,.94), rgba(3,3,3,.76)); }
  .hero::after { left: 18px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3.05rem, 14vw, 4.2rem); }
  .hero-description { font-size: 0.96rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-trust > span { padding: 18px 7px 0 0; font-size: 0.75rem; letter-spacing: 0.02em; text-transform: none; }
  .hero-trust > span + span { padding-left: 11px; }
  .hero-trust strong { font-size: clamp(1.8rem, 7vw, 2.15rem); }
  .about-panel { padding: 45px 28px 40px; }
  .about-quote { font-size: 2.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 34px 27px; }
  .service-card + .service-card { border-left: 0; border-top: 1px solid rgba(17,16,14,.16); }
  .service-icon { margin-bottom: 38px; }
  .plan-card { padding: 39px 26px 29px; }
  .plan-card h3 { font-size: 2.25rem; }
  .process-list li { grid-template-columns: 55px 1fr; gap: 18px; }
  .process-list > li > span { width: 48px; height: 48px; }
  .faq-grid { gap: 45px; }
  .faq-list summary { font-size: 1.25rem; }
  .contact-copy-centered h2 { font-size: clamp(2.75rem, 12vw, 3.75rem); }
  .contact-details-large { grid-template-columns: 1fr; margin-top: 48px; }
  .contact-details-large > .contact-detail { min-height: 0; padding: 30px 24px; }
  .contact-details-large strong,
  .contact-details-large .contact-detail-primary strong { font-size: clamp(1.85rem, 8vw, 2.45rem); }
  .page-hero { padding: 70px 0; }
  .page-content, .posts-area { padding: 68px 0 82px; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-main { padding: 66px 0 55px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom-inner { min-height: 88px; flex-direction: column; justify-content: center; gap: 4px; text-align: center; }
  .floating-whatsapp { right: 16px; top: 50%; bottom: auto; width: 54px; height: 54px; transform: translateY(-50%); }
  .alignleft,
  .alignright { float: none; margin: 25px auto; }
  .gallery-columns-3 { grid-template-columns: repeat(2, 1fr); }
}

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