/* variables */
:root {
  --bg-deep: #120814;
  --bg-main: #1c0f20;
  --bg-card: #2a172e;
  --bg-card-soft: #351d38;
  --wine: #6d1f46;
  --wine-light: #9b315f;
  --gold: #d8a94e;
  --gold-soft: #f3d58b;
  --rose: #c46a86;
  --text-main: #fff7ed;
  --text-muted: #d8c8d6;
  --border-gold: rgba(216, 169, 78, 0.35);
  --line: rgba(255, 247, 237, 0.13);
  --shadow-gold: 0 0 35px rgba(216, 169, 78, 0.16);
  --shadow-dark: 0 20px 80px rgba(0, 0, 0, 0.45);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* reset/base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  color: var(--text-main);
  background:
    radial-gradient(circle at 16% -10%, rgba(155, 49, 95, 0.35), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(216, 169, 78, 0.12), transparent 25rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg-main) 38%, #160b18);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-y: auto;
}

main,
section {
  position: relative;
  height: auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 247, 237, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 237, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 12% 20%, rgba(243, 213, 139, 0.08), transparent 2px),
    radial-gradient(circle at 74% 18%, rgba(243, 213, 139, 0.1), transparent 2px),
    radial-gradient(circle at 88% 58%, rgba(196, 106, 134, 0.12), transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(243, 213, 139, 0.09), transparent 2px);
  background-size: 240px 240px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(243, 213, 139, 0.75);
  outline-offset: 3px;
}

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

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2 {
  max-width: 880px;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.94;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
}

p {
  margin: 0;
}

/* layout */
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 126px) 0;
}

.section.compact {
  padding-block: clamp(46px, 7vw, 82px);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading.center {
  justify-items: center;
  text-align: center;
}

.section-heading p {
  max-width: 820px;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

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

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

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

.align-center {
  align-items: center;
}

.narrow {
  width: min(760px, calc(100% - 40px));
}

.mt {
  margin-top: 28px;
}

.content {
  max-width: 1120px;
}

.content h2 {
  margin-top: 52px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

#tipos-leitura {
  scroll-margin-top: 120px;
  display: block;
  visibility: visible;
  opacity: 1;
  transform: none;
  position: relative;
  z-index: 2;
}

.content h3 {
  margin-top: 26px;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.content p,
.content li {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.content a:not(.button) {
  color: var(--gold-soft);
  font-weight: 800;
}

.content ul {
  display: grid;
  gap: 11px;
  padding-left: 22px;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(243, 213, 139, 0.12);
  background: rgba(18, 8, 20, 0.72);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 8, 20, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 169, 78, 0.22);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: var(--shadow-gold);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 26px);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 247, 237, 0.86);
}

.site-nav a:hover {
  color: var(--gold-soft);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--bg-deep) !important;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: rgba(255, 247, 237, 0.06);
  color: var(--text-main);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* hero */
.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero {
  display: grid;
  min-height: calc(100svh - 84px);
  align-items: center;
  padding: clamp(82px, 12vw, 154px) clamp(20px, 6vw, 80px);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(18, 8, 20, 0.96), rgba(28, 15, 32, 0.82) 48%, rgba(28, 15, 32, 0.34)),
    url("../img/tarot-hero.png");
  background-size: cover;
  background-position: center right;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 5%;
  z-index: -2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(216, 169, 78, 0.12);
  border-radius: 42px;
  box-shadow: inset 0 0 80px rgba(216, 169, 78, 0.08), 0 0 80px rgba(155, 49, 95, 0.18);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.page-hero-content {
  position: relative;
  max-width: 820px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 5vw, 6.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4.4vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.018em;
}

.hero-content::before,
.page-hero-content::before {
  display: block;
  width: 92px;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  content: "";
}

.page-hero {
  min-height: auto;
  padding: clamp(68px, 9vw, 116px) clamp(20px, 6vw, 80px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin-top: 26px;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero .lead {
  max-width: 620px;
  margin-top: 20px;
}

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

.hero-actions {
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero .trust-pill {
  min-height: 34px;
  padding: 6px 11px;
  font-size: 0.84rem;
}

.trust-pill,
.chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(216, 169, 78, 0.24);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255, 247, 237, 0.9);
  background: rgba(255, 247, 237, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 800;
}

/* buttons */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  color: #1b0b14;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 52%, #b9792f);
  box-shadow: 0 18px 42px rgba(216, 169, 78, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 247, 237, 0.3);
  color: var(--text-main);
  background: rgba(255, 247, 237, 0.07);
}

.button.rose {
  color: var(--text-main);
  background: linear-gradient(135deg, var(--wine-light), var(--wine));
  box-shadow: 0 18px 42px rgba(155, 49, 95, 0.26);
}

.button.full {
  width: 100%;
}

/* cards */
.card,
.service-card,
.form-card,
.account-card,
.feature-card,
.step-card,
.testimonial-card,
.image-card {
  border: 1px solid rgba(216, 169, 78, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.08), rgba(196, 106, 134, 0.05)),
    rgba(42, 23, 46, 0.78);
  box-shadow: var(--shadow-dark);
}

.card,
.feature-card,
.testimonial-card,
.account-card {
  padding: clamp(22px, 4vw, 32px);
}

.card h2,
.feature-card h2,
.form-card h2,
.account-card h2,
.testimonial-card h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.card h3,
.testimonial-card h3 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.card:hover,
.service-card:hover,
.feature-card:hover,
.step-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-dark), var(--shadow-gold);
  transform: translateY(-4px);
}

.card,
.service-card,
.feature-card,
.step-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.icon-badge {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  margin-bottom: 18px;
  background: rgba(216, 169, 78, 0.08);
}

.icon-badge img {
  width: 30px;
  height: 30px;
}

.feature-card p,
.step-card p,
.service-card p,
.account-card p,
.testimonial-card p,
.form-card p,
.faq-answer {
  color: var(--text-muted);
}

.step-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(243, 213, 139, 0.18);
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 14px;
  min-height: 390px;
  padding: 26px;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 80% 12%, rgba(216, 169, 78, 0.18), transparent 9rem);
}

.service-card > * {
  position: relative;
}

.service-card h2,
.service-card h3 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.service-meta,
.service-category {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  color: var(--gold-soft);
  font-size: 1.65rem;
  font-weight: 950;
}

.service-benefits {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 247, 237, 0.82);
  font-size: 0.93rem;
}

.service-benefits li::before {
  color: var(--gold);
  content: "✦ ";
}

.included-list {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(216, 169, 78, 0.18);
  border-radius: 14px;
  padding: 12px;
  background: rgba(18, 8, 20, 0.28);
}

.included-list strong {
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included-list ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 247, 237, 0.86);
  font-size: 0.9rem;
}

.included-list li::before {
  color: var(--gold);
  content: "✦ ";
}

.included-list p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-note {
  align-self: end;
  color: rgba(255, 247, 237, 0.9);
  font-weight: 900;
}

.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(243, 213, 139, 0.36);
  border-radius: 999px;
  padding: 6px 10px;
  color: #1b0b14;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 0.75rem;
  font-weight: 950;
}

.question-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* sections */
.visual-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
}

.image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(18, 8, 20, 0.52));
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-main);
  font-weight: 800;
}

.mini-list li::before {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #1b0b14;
  background: var(--gold);
  content: "✦";
  font-size: 0.75rem;
}

.tarot-orientation img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 7vw, 72px);
  background:
    radial-gradient(circle at 18% 20%, rgba(243, 213, 139, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(109, 31, 70, 0.92), rgba(42, 23, 46, 0.96));
  box-shadow: var(--shadow-dark), var(--shadow-gold);
}

.cta-panel h2 {
  max-width: 780px;
}

.cta-panel p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--text-muted);
}

.stars {
  color: var(--gold-soft);
  letter-spacing: 0.12em;
}

/* forms */
.form-card {
  padding: clamp(24px, 5vw, 44px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.checkout-summary {
  position: sticky;
  top: 104px;
  padding: 26px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.full {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 247, 237, 0.94);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(216, 169, 78, 0.22);
  border-radius: 16px;
  color: var(--text-main);
  background: rgba(18, 8, 20, 0.58);
  font: inherit;
  padding: 13px 15px;
}

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

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 700;
}

.check input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.check a {
  color: var(--gold-soft);
  font-weight: 900;
}

.security-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.security-note img {
  width: 24px;
  height: 24px;
}

.alert {
  padding: 15px 18px;
  border: 1px solid rgba(216, 169, 78, 0.42);
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--text-main);
  background: rgba(216, 169, 78, 0.12);
}

.confirmation {
  text-align: center;
}

.confirmation-code {
  display: inline-flex;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  margin: 20px 0;
  padding: 10px 18px;
  color: var(--gold-soft);
  background: rgba(216, 169, 78, 0.08);
  font-weight: 950;
}

/* tables/badges */
.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(216, 169, 78, 0.18);
  border-radius: var(--radius);
  background: rgba(42, 23, 46, 0.58);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 247, 237, 0.1);
  text-align: left;
}

th {
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--text-main);
  background: rgba(216, 169, 78, 0.16);
  font-size: 0.82rem;
  font-weight: 950;
}

.status-novo { background: rgba(196, 106, 134, 0.2); }
.status-aguardando_pagamento { background: rgba(216, 169, 78, 0.18); }
.status-pago { background: rgba(80, 160, 112, 0.22); }
.status-em_leitura { background: rgba(120, 96, 210, 0.22); }
.status-entregue { background: rgba(73, 170, 134, 0.26); }
.status-cancelado { background: rgba(180, 70, 70, 0.22); }

.order-cards {
  display: none;
}

.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(216, 169, 78, 0.14);
}

.faq-item h2,
.faq-item h3 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

/* filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid rgba(216, 169, 78, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text-main);
  background: rgba(255, 247, 237, 0.06);
  cursor: pointer;
  font-weight: 900;
}

.filter-button.is-active {
  color: #1b0b14;
  background: var(--gold);
}

/* footer */
.site-footer {
  padding: clamp(36px, 6vw, 70px) clamp(20px, 5vw, 64px);
  color: var(--text-main);
  background: linear-gradient(180deg, #160a18, #0d050f);
  border-top: 1px solid rgba(216, 169, 78, 0.16);
}

.footer-inner {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  margin: 0 auto;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-note {
  color: var(--text-muted);
}

.footer-links,
.footer-social {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 247, 237, 0.84);
  font-weight: 800;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.instagram-link svg {
  flex: 0 0 20px;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(243, 213, 139, 0.42);
  border-radius: 999px;
  padding: 12px 18px;
  color: #1b0b14;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: var(--shadow-dark), var(--shadow-gold);
  font-weight: 950;
}

.floating-whatsapp img {
  width: 26px;
  height: 26px;
}

/* animations */
.reveal {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* responsive */
@media (max-width: 980px) {
  .grid,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-layout,
  .visual-split {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 860px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  section {
    min-height: auto !important;
    height: auto !important;
    position: relative;
  }

  .page-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 104px 20px 44px !important;
  }

  .hero-content,
  .page-hero-content,
  .section-content,
  .container {
    width: 100%;
    max-width: 100%;
  }

  #tipos-leitura {
    scroll-margin-top: 120px;
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none;
    position: relative;
    z-index: 2;
  }

  .reveal,
  .fade-in,
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    background: rgba(18, 8, 20, 0.98);
    box-shadow: var(--shadow-dark);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    color: #1b0b14 !important;
  }

  .form-grid,
  .grid,
  .grid.two,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .actions .button {
    width: 100%;
  }

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

@media (max-width: 640px) {
  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.015em;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    line-height: 1.04;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .hero .lead {
    max-width: 100%;
    margin-top: 18px;
  }

  .hero-actions,
  .trust-row {
    margin-top: 20px;
  }

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

  .table-wrap {
    display: none;
  }

  .order-cards {
    display: grid;
    gap: 14px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

@media (min-width: 1400px) {
  h1,
  .hero h1 {
    font-size: clamp(3.6rem, 4.5vw, 6rem);
  }

  .page-hero h1 {
    font-size: clamp(3rem, 4vw, 5.2rem);
  }
}

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