@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@300;400&display=swap');

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Madame Kahina — Linha Fogo
     #0D0704 preto-carvão · #D9560F laranja-vivo · #E8963A âmbar
     #8C1F1F vermelho-sangue · #B08D57 dourado velho · #EDE6D9 branco-osso */
  --background: hsl(20, 53%, 3%);
  --foreground: hsl(39, 34%, 89%);
  --card: hsl(20, 40%, 6%);
  --card-foreground: hsl(39, 34%, 89%);
  --primary: hsl(21, 87%, 45%);
  --primary-foreground: hsl(39, 34%, 89%);
  --secondary: hsl(20, 30%, 8%);
  --muted: hsl(20, 22%, 10%);
  --muted-foreground: hsl(39, 15%, 65%);
  --border: hsl(30, 24%, 13%);
  --flame: hsl(21, 87%, 45%);
  --amber: hsl(32, 79%, 57%);
  --blood: hsl(0, 64%, 34%);
  --gradient-flame: linear-gradient(135deg, hsl(21,87%,45%) 0%, hsl(32,79%,57%) 45%, hsl(0,64%,34%) 100%);
  --glow-flame: 0 0 40px -6px hsla(21, 87%, 45%, 0.55);
  --wine: hsl(0, 64%, 34%);
  --wine-light: hsl(21, 87%, 45%);
  --wine-dark: hsl(0, 64%, 26%);
  --wine-deep: hsl(0, 60%, 12%);
  --graphite: hsl(20, 53%, 3%);
  --graphite-light: hsl(20, 34%, 7%);
  --purple-dark: hsl(20, 40%, 5%);
  --beige: hsl(39, 34%, 89%);
  --beige-muted: hsl(39, 20%, 68%);
  --gold: hsl(36, 35%, 52%);
  --gold-muted: hsl(36, 28%, 42%);
  --midnight: hsl(20, 53%, 3%);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --content-max: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: hsla(21, 87%, 45%, 0.32);
  color: var(--foreground);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Layout */
.content-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .content-container { padding: 0 3rem; }
}

/* Utilities */
.text-center { text-align: center; }
.text-center-block { max-width: 48rem; margin: 0 auto; text-align: center; }
.italic { font-style: italic; }

/* Divider */
.divider-line {
  width: 4rem;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ========== SECTION BACKGROUNDS (matching React) ========== */
.bg-section-dark { background-color: var(--graphite); }
.bg-section-purple { background-color: var(--purple-dark); }
.bg-section-wine { background-color: var(--wine-deep); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.5s ease;
  cursor: pointer;
  height: 3.5rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.375rem;
}
.btn-lg { height: 4rem; padding: 1.25rem 3.5rem; font-size: 1.125rem; }
.btn-sm { height: 2.75rem; padding: 0.5rem 1.75rem; font-size: 0.875rem; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background: var(--wine-light);
  border-color: var(--wine-light);
}

/* CTA button — matches React CTAButton */
.btn-cta {
  background: var(--gradient-flame);
  color: var(--beige);
  border: 1px solid hsla(36, 35%, 52%, 0.35);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.btn-cta:hover {
  filter: brightness(1.12);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.4);
}

.btn-outline {
  background: var(--wine-dark);
  color: var(--primary-foreground);
  border: 1px solid var(--wine-dark);
}
.btn-outline:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.btn-amor {
  height: 4rem;
  padding: 1rem 3.5rem;
  font-size: 0.875rem;
  background: var(--gradient-flame);
  color: var(--beige);
  border: 1px solid hsla(35, 50%, 53%, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.btn-amor:hover {
  border-color: hsla(35, 50%, 53%, 0.4);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.4);
}

.btn-full-mobile { width: 100%; text-align: center; }
@media (min-width: 640px) { .btn-full-mobile { width: auto; } }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}
.header.scrolled {
  background: hsla(300, 20%, 6%, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media (min-width: 1024px) { .header-inner { height: 6rem; } }

.header-logo {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: opacity 0.3s;
}
@media (min-width: 1024px) { .header-logo { font-size: 1.6rem; } }
.header-logo:hover { opacity: 0.8; }

.nav-desktop { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}
.nav-link:hover { color: var(--foreground); opacity: 0.85; }

/* Desktop dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 0.35rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.875rem; font-weight: 300;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gold); transition: color 0.3s;
  padding: 0;
}
.nav-dropdown-trigger:hover { color: var(--foreground); }
.nav-dropdown-trigger svg { transition: transform 0.3s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-0.5rem);
  transition: all 0.3s ease;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
  transition: all 0.3s;
}
.nav-dropdown-menu a:hover {
  color: var(--foreground);
  background: hsla(280, 15%, 12%, 0.5);
}

/* Mobile menu */
.mobile-toggle { display: flex; flex-direction: column; gap: 6px; padding: 0.5rem; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle span { width: 24px; height: 1px; background: var(--foreground); transition: all 0.3s; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  background: hsl(280, 30%, 6%);
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}
.mobile-menu.open { max-height: 30rem; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* Mobile leituras submenu */
.mobile-leituras-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}
.mobile-leituras-submenu.open { max-height: 15rem; padding-top: 0.5rem; }

/* ========== HERO (Home) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, hsla(300, 20%, 6%, 0.3));
}
.hero-content {
  position: relative; z-index: 10;
  padding: 6rem 0 2rem;
  width: 100%;
}
@media (min-width: 1024px) { .hero-content { padding: 7rem 0 5rem; } }

.hero-grid-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-grid-centered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* Portrait with gradient rings — matching React */
.hero-portrait-circle {
  position: relative;
  display: flex;
  justify-content: center;
  order: 1;
}
@media (min-width: 1024px) { .hero-portrait-circle { order: 2; } }

.portrait-ring-outer {
  position: relative;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, hsl(350, 40%, 30%), hsl(345, 35%, 25%), hsl(350, 40%, 30%));
  box-shadow: 0 0 40px 8px rgba(140, 40, 50, 0.35);
}

.portrait-ring-inner {
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, hsl(35, 55%, 50%), hsl(35, 50%, 58%), hsl(35, 55%, 42%));
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}

.portrait-circle {
  position: relative;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  overflow: hidden;
  border: none;
}
@media (min-width: 768px) { .portrait-circle { width: 20rem; height: 20rem; } }
@media (min-width: 1024px) { .portrait-circle { width: 20rem; height: 20rem; } }

.portrait-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: contrast(1.12) brightness(0.92) sepia(0.08) saturate(1.1);
}

.portrait-vignette-overlay {
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 50px 15px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Small portrait for sub-pages */
.portrait-circle-sm {
  width: 6rem; height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid hsla(35, 50%, 53%, 0.25);
  margin: 0 auto;
}
.portrait-circle-sm img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* Large portrait for Sobre page */
.portrait-circle-lg {
  width: 10rem; height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid hsla(35, 50%, 53%, 0.4);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  margin: 0 auto;
}
@media (min-width: 768px) { .portrait-circle-lg { width: 14rem; height: 14rem; } }
.portrait-circle-lg img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* Hero text */
.hero-text-centered {
  order: 2;
  text-align: center;
  padding: 0 0.25rem;
  max-width: 32rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-text-centered { order: 1; text-align: left; padding: 0; max-width: none; margin: 0; }
}

.hero-title {
  font-size: 1.75rem;
  color: hsl(35, 35%, 88%);
  line-height: 1.3;
  text-wrap: balance;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 2.75rem; } }

.hero-desc {
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.9;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .hero-desc { font-size: 1.25rem; }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .hero-cta { align-items: flex-start; margin-top: 3rem; margin-bottom: 0; }
}

.hero-phone {
  font-size: 0.75rem;
  font-weight: 300;
  color: hsla(35, 12%, 58%, 0.6);
  letter-spacing: 0.05em;
}

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
}
.page-hero-title {
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
@media (min-width: 768px) { .page-hero-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .page-hero-title { font-size: 3rem; } }

.page-hero-subtitle {
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
@media (min-width: 1024px) { .page-hero-subtitle { font-size: 1.25rem; } }

.page-hero-desc {
  font-weight: 300;
  font-size: 1.05rem;
  color: hsla(35, 12%, 55%, 0.8);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== SECTIONS ========== */
.section { padding: 3.5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

/* Legacy bg classes (kept for subpages) */
.section-bg-card { background: var(--card); }
.section-bg-graphite { background: hsla(280, 15%, 15%, 0.4); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .section-header { margin-bottom: 4rem; } }

.section-label {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1rem;
}
.section-title {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .section-title { font-size: 2.25rem; } }

/* Gold section title — matching React */
.section-title-gold {
  color: var(--gold);
}

/* ========== REUSABLE COMPONENTS ========== */

/* Serif quote text */
.serif-quote {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: hsl(35, 35%, 88%);
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .serif-quote { font-size: 1.75rem; } }

/* Muted paragraph */
.muted-text {
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.muted-text.small { font-size: 1rem; color: hsla(35, 12%, 55%, 0.7); }

/* Bullet list */
.bullet-list { max-width: 36rem; margin: 0 auto; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 300;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 0.6rem;
  flex-shrink: 0;
}
.bullet.wine { background: var(--primary); }
.bullet.beige { background: var(--beige-muted); }
.bullet.gold { background: var(--gold); }

/* Info row */
.info-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.info-row span {
  font-weight: 300;
  font-size: 1rem;
  color: var(--muted-foreground);
}
.info-row.serif span {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
}

/* Tag row */
.tag-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.tag {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--beige-muted);
}

/* Serif stack */
.serif-stack { text-align: center; }
.serif-stack p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: hsla(35, 20%, 88%, 0.8);
  margin-bottom: 0.5rem;
}

/* Price */
.price {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .price { font-size: 2.75rem; } }

/* Services grid */
.services-grid {
  display: grid;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--card);
  border: 1px solid hsla(280, 12%, 18%, 0.5);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: border-color 0.5s;
}
.service-card:hover { border-color: hsla(35, 50%, 53%, 0.2); }
.service-card h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-card p {
  font-weight: 300;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  flex: 1;
}

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.3s;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.floating-cta:hover { background: var(--wine-light); }
.floating-cta svg { flex-shrink: 0; }
.floating-cta-text { display: none; }
@media (min-width: 640px) { .floating-cta-text { display: inline; } }

/* ========== FOOTER ========== */
.footer {
  padding: 3.5rem 0;
  background: var(--graphite);
  border-top: 1px solid hsla(280, 12%, 18%, 0.3);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-logo { font-family: var(--font-serif); font-size: 1.35rem; letter-spacing: 0.08em; color: var(--gold); }
.footer-social { display: flex; align-items: center; gap: 1.25rem; }
.footer-social a { color: var(--muted-foreground); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; }
.footer-nav { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .footer-nav { flex-direction: row; gap: 1.5rem; } }
.footer-nav a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.875rem; color: hsla(35, 12%, 58%, 0.6); font-weight: 300; }

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }
.animate-fade-in-d1 { animation: fadeIn 0.8s ease-out 0.2s forwards; opacity: 0; }
.animate-fade-in-d2 { animation: fadeIn 0.8s ease-out 0.4s forwards; opacity: 0; }

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SERVICE BLOCK (single-page services) ========== */
.service-block {
  max-width: 48rem;
  margin: 0 auto;
}
.service-block-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.service-block-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1.3;
  text-wrap: balance;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .service-block-title { font-size: 2rem; } }
.service-block-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-style: italic;
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .service-block-subtitle { font-size: 1.125rem; } }

.service-list {
  margin-bottom: 2.5rem;
}
.service-list li {
  display: flex;
  gap: 0.75rem;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .service-list li { font-size: 1.125rem; } }
.service-list li strong {
  color: var(--beige);
  font-weight: 500;
}

.service-value {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .service-value { font-size: 1.5rem; } }

/* ========== BANNER AMOR — DESTAQUE ========== */
.banner-amor-destaque {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(340, 50%, 13%) 0%, hsl(350, 45%, 20%) 50%, hsl(340, 50%, 13%) 100%);
}
.banner-amor-edge {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(35, 50%, 53%, 0.6), transparent);
}
.banner-amor-edge.top { top: 0; }
.banner-amor-edge.bottom { bottom: 0; }

.banner-amor-label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.banner-amor-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1.25;
  text-wrap: balance;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .banner-amor-title { font-size: 2rem; } }
@media (min-width: 1024px) { .banner-amor-title { font-size: 2.25rem; } }
.banner-amor-text {
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--beige);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .banner-amor-text { font-size: 1.2rem; } }
.banner-amor-cta-text {
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn-portal-amor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  height: 6rem;
  padding: 1.5rem 4rem;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, hsl(38, 85%, 58%) 0%, hsl(32, 90%, 50%) 50%, hsl(28, 85%, 45%) 100%);
  color: hsl(20, 50%, 12%);
  border: 2px solid hsl(40, 90%, 70%);
  text-shadow: 0 1px 0 hsla(40, 90%, 85%, 0.4);
  transition: all 0.5s ease;
  cursor: pointer;
  animation: amberGlow 2.2s ease-in-out infinite;
}
.btn-portal-amor:hover {
  transform: translateY(-2px) scale(1.03);
}

@keyframes wineGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 hsla(350, 50%, 35%, 0.55), 0 8px 24px hsla(0, 0%, 0%, 0.35);
  }
  50% {
    box-shadow: 0 0 0 14px hsla(350, 50%, 35%, 0), 0 8px 32px hsla(350, 60%, 30%, 0.6);
  }
}

@keyframes amberGlow {
  0%, 100% {
    box-shadow:
      0 0 0 0 hsla(38, 90%, 55%, 0.65),
      0 0 24px 4px hsla(38, 85%, 55%, 0.45),
      0 10px 30px hsla(0, 0%, 0%, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 16px hsla(38, 90%, 55%, 0),
      0 0 40px 10px hsla(38, 90%, 60%, 0.55),
      0 12px 36px hsla(28, 80%, 30%, 0.5);
  }
}

/* ========== ANCIENT SYMBOLS LAYER ========== */
.symbols-layer {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; user-select: none; overflow: hidden;
  opacity: 0.07; color: hsl(32, 45%, 58%);
}
.symbols-layer span {
  position: absolute; font-family: var(--font-serif);
  white-space: nowrap; letter-spacing: 0.15em;
  filter: blur(0.4px);
}
.symbols-layer span.long { display: none; }
@media (min-width: 768px) {
  .symbols-layer span.long { display: inline; }
}
.page-wrap { position: relative; z-index: 1; }
.nav-link.active { color: var(--beige); }

/* ========== PAGE HERO (mirror PageHeroSection) ========== */
.page-hero-block {
  position: relative; padding-top: 8rem; padding-bottom: 4rem;
  background-color: hsla(20, 53%, 3%, 0.6);
  text-align: center;
}
@media (min-width:768px){.page-hero-block{padding-top:10rem;padding-bottom:5rem}}
.page-hero-block .brand-seal {
  display: inline-flex; width: 72px; height: 72px;
  border-radius: 50%; border: 1px solid var(--gold);
  background: radial-gradient(circle at center, hsla(36,35%,52%,0.18), transparent 70%);
  margin-bottom: 2rem;
  align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 1.75rem; color: var(--gold);
}
.page-hero-block .brand-seal::before { content: ''; display:block; width: 72%; height: 72%; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 20 C 60 34, 66 42, 66 53 C 66 65, 58 74, 50 74 C 42 74, 34 65, 34 53 C 34 42, 40 34, 50 20 Z' fill='none' stroke='%23B08D57' stroke-width='2'/><path d='M50 42 C 55 48, 57 52, 57 57 C 57 64, 54 68, 50 68 C 46 68, 43 64, 43 57 C 43 52, 45 48, 50 42 Z' fill='%23E8963A' fill-opacity='0.35'/></svg>") center/contain no-repeat; }
.page-hero-block h1 {
  color: var(--gold); font-size: 2rem; line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width:768px){.page-hero-block h1{font-size:3rem}}
.page-hero-block .subtitle {
  color: hsla(35,35%,85%,0.85); font-size: 1.125rem;
  font-style: italic; line-height: 1.85; margin-bottom: 1rem;
  max-width: 42rem; margin-left: auto; margin-right: auto;
}
@media (min-width:768px){.page-hero-block .subtitle{font-size:1.25rem}}
.page-hero-block .tagline {
  font-family: var(--font-serif); font-style: italic;
  color: var(--gold-muted); font-size: 1rem;
}
.page-hero-block .divider-line { margin-top: 2.5rem; }

/* ========== PRICE CARD ========== */
.price-card {
  position: relative; border-radius: 0.375rem;
  border: 1px solid hsla(35,50%,53%,0.15);
  background-color: hsla(20,40%,6%,0.80);
  backdrop-filter: blur(4px);
  padding: 1.75rem;
}
@media (min-width:768px){.price-card{padding:2.5rem}}
.price-card header {
  margin-bottom: 1.5rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid hsla(35,50%,53%,0.10);
}
.price-card h3 {
  font-family: var(--font-serif); color: var(--gold);
  font-size: 1.5rem; line-height: 1.25; margin-bottom: 0.5rem;
}
@media (min-width:768px){.price-card h3{font-size:1.75rem}}
.price-card .price {
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--beige);
}
.price-card .meta {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 0.875rem; color: var(--muted-foreground);
  font-style: italic; margin-top: 0.25rem;
}
.price-card .body { color: var(--muted-foreground); font-weight: 300; line-height: 1.85; }
.price-card .body p { margin-bottom: 1rem; }
.price-card .body p:last-child { margin-bottom: 0; }
.price-card .body strong { color: var(--beige); font-weight: 500; }

/* ========== CARD GRID (landing) ========== */
.card-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width:640px){.card-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.card-grid{grid-template-columns:repeat(3,1fr)}}
.card-grid a {
  display: block; padding: 1.75rem;
  border-radius: 0.375rem;
  border: 1px solid hsla(35,50%,53%,0.15);
  background-color: hsla(20,40%,6%,0.80);
  backdrop-filter: blur(4px);
  transition: all 0.5s ease;
}
.card-grid a:hover {
  border-color: hsla(35,50%,53%,0.40);
  transform: translateY(-4px);
}
.card-grid h3 {
  font-family: var(--font-serif); color: var(--gold);
  font-size: 1.5rem; margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.card-grid a:hover h3 { color: var(--beige); }
.card-grid p {
  font-family: var(--font-sans); font-weight: 300;
  color: var(--muted-foreground); line-height: 1.85;
}
.card-grid .enter {
  margin-top: 1.25rem; font-size: 0.75rem;
  font-family: var(--font-sans); letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-muted);
}

/* ========== CTA BAND ========== */
.cta-band {
  position: relative; padding: 5rem 0; text-align: center;
  background: linear-gradient(135deg, hsla(0,64%,34%,0.35) 0%, hsla(21,87%,45%,0.18) 50%, hsla(0,64%,34%,0.35) 100%);
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, hsla(35,50%,53%,0.6), transparent);
}
.cta-band::before { top: 0; } .cta-band::after { bottom: 0; }
.cta-band .btn-amber {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 500;
  font-size: 1.15rem; letter-spacing: 0.08em;
  height: 4rem; padding: 1rem 2.5rem; border-radius: 0.25rem;
  border: 1px solid hsl(36, 35%, 52%);
  color: hsl(39, 34%, 89%);
  background: var(--gradient-flame);
  box-shadow: var(--glow-flame);
  transition: transform 0.5s ease, filter 0.5s ease;
}
@media (min-width:768px){.cta-band .btn-amber{font-size:1.5rem;height:5rem;padding:1rem 4rem}}
.cta-band .btn-amber:hover { transform: scale(1.02); filter: brightness(1.12); }
.font-mono-num { font-family: var(--font-mono); font-weight: 300; letter-spacing: 0.02em; }
.cta-band .phone {
  margin-top: 1rem; font-family: var(--font-sans);
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: hsla(35,35%,85%,0.6);
}

/* ========== HOME HERO ========== */
.home-hero {
  position: relative; padding-top: 7rem; padding-bottom: 5rem;
}
@media (min-width:768px){.home-hero{padding-top:9rem;padding-bottom:6rem}}
.home-hero-grid {
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr; max-width: 72rem; margin: 0 auto;
}
@media (min-width:1024px){.home-hero-grid{grid-template-columns:1fr 1fr;gap:4rem}}
.home-hero-portrait {
  position: relative; width: 16rem; height: 16rem;
  border-radius: 50%; overflow: hidden; margin: 0 auto;
  border: 2px solid hsla(35,55%,50%,0.6);
  box-shadow: 0 0 40px 8px rgba(140,40,50,0.35);
}
@media (min-width:768px){.home-hero-portrait{width:20rem;height:20rem}}
.home-hero-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  filter: contrast(1.12) brightness(0.92) sepia(0.08) saturate(1.1);
}
.home-hero-text { text-align: center; }
@media (min-width:1024px){.home-hero-text{text-align:left;order:-1}}
.home-hero-text h1 {
  font-family: var(--font-serif); color: var(--gold);
  font-size: 1.85rem; line-height: 1.25; margin-bottom: 1.5rem;
}
@media (min-width:768px){.home-hero-text h1{font-size:2.75rem}}
.home-hero-text .lead {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 1.125rem; line-height: 1.85;
  color: hsla(35,35%,85%,0.85); margin-bottom: 2rem;
}
@media (min-width:768px){.home-hero-text .lead{font-size:1.25rem}}
.home-hero-text .tagline {
  font-family: var(--font-serif); font-style: italic; color: var(--gold-muted);
}

/* ========== PAGE SECTION HELPER ========== */
.page-section { padding: 4rem 0; }
@media (min-width:768px){.page-section{padding:5rem 0}}
.page-prose {
  max-width: 48rem; margin: 0 auto;
  font-family: var(--font-sans); font-weight: 300;
  color: var(--muted-foreground); line-height: 1.9; font-size: 1.0625rem;
}
.page-prose p { margin-bottom: 1.25rem; }
.page-prose strong { color: var(--beige); font-weight: 500; }
.page-prose em { font-style: italic; }
.page-prose .pull-quote {
  border-left: 2px solid hsla(35,50%,53%,0.4);
  padding-left: 1.25rem; font-style: italic;
  color: hsla(35,35%,85%,0.8);
}

.stats-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr; margin: 2rem 0 1.5rem;
}
@media (min-width:640px){.stats-grid{grid-template-columns:repeat(2,1fr)}}
.stats-grid li {
  border: 1px solid hsla(35,50%,53%,0.15);
  border-radius: 0.375rem; padding: 1.25rem; text-align: center;
  background-color: hsla(20,40%,6%,0.70);
}
.stats-grid .num {
  font-family: var(--font-serif); color: var(--gold);
  font-size: 1.5rem; margin-bottom: 0.25rem;
}
.stats-grid .lbl {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 0.875rem; color: var(--muted-foreground);
}

/* ========== ARQUIVO RITUAL — HOME ÚNICA ========== */
.sec { padding: 4rem 0; border-top: 1px solid hsla(36,35%,52%,0.10); scroll-margin-top: 6rem; }
@media (min-width:768px){.sec{padding:6rem 0}}
.eyebrow {
  font-family: var(--font-sans); font-weight: 300; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 1rem;
}
.sec-title {
  font-family: var(--font-serif); color: var(--gold);
  font-size: 1.9rem; line-height: 1.15; margin-bottom: 1.5rem; text-wrap: balance;
}
@media (min-width:768px){.sec-title{font-size:2.75rem}}
.portas-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width:768px){.portas-grid{grid-template-columns:repeat(2,1fr);gap:2rem}}
.porta-card {
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid hsla(36,35%,52%,0.20); border-radius: 0.25rem;
  padding: 2rem; background-color: hsla(20,40%,6%,0.80);
  transition: border-color 0.5s ease;
}
@media (min-width:768px){.porta-card{padding:2.5rem}}
.porta-card:hover { border-color: hsla(36,35%,52%,0.60); }
.porta-card .num { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.25em; color: var(--gold-muted); margin-bottom: 1rem; }
.porta-card h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--beige); margin-bottom: 1rem; transition: color 0.5s ease; }
.porta-card:hover h3 { color: var(--gold); }
.porta-card p { font-family: var(--font-sans); font-weight: 300; color: var(--muted-foreground); line-height: 1.85; flex: 1; }
.porta-card .price { font-family: var(--font-mono); font-size: 0.9rem; color: var(--gold); margin-top: 1.5rem; }

.step-card {
  border: 1px solid hsla(36,35%,52%,0.15); border-radius: 0.25rem;
  padding: 1.75rem; background-color: hsla(20,40%,6%,0.70); margin-bottom: 1.5rem;
}
@media (min-width:768px){.step-card{padding:2.25rem}}
.step-card .num { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.25em; color: var(--gold-muted); margin-bottom: 0.75rem; }
.step-card h3 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--gold); margin-bottom: 1rem; }
.step-card p { font-family: var(--font-sans); font-weight: 300; color: var(--muted-foreground); line-height: 1.9; }

.ptable { border: 1px solid hsla(36,35%,52%,0.15); border-radius: 0.25rem; background-color: hsla(20,40%,6%,0.80); overflow: hidden; }
.ptable .row { padding: 1.25rem 1.75rem; border-bottom: 1px solid hsla(36,35%,52%,0.10); }
.ptable .row:last-child { border-bottom: none; }
.ptable .t { font-family: var(--font-serif); font-size: 1.15rem; color: var(--beige); }
.ptable .v { font-family: var(--font-mono); font-size: 0.9rem; color: var(--gold); }
.ptable .f { font-family: var(--font-sans); font-weight: 300; font-size: 0.875rem; color: var(--muted-foreground); }
@media (min-width:768px){
  .ptable .row { display: grid; grid-template-columns: 1.4fr 0.8fr 1.4fr; gap: 1rem; align-items: baseline; }
}
.hero-stats { display: grid; grid-template-columns: 1fr; gap: 2rem; border-top: 1px solid hsla(36,35%,52%,0.15); padding-top: 2.5rem; margin-top: 3.5rem; }
@media (min-width:640px){.hero-stats{grid-template-columns:repeat(3,1fr)}}
.hero-stats .k { font-family: var(--font-mono); font-size: 1.35rem; color: var(--gold); }
.hero-stats .l { font-family: var(--font-sans); font-weight: 300; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); margin-top: 0.5rem; }
.faq details { border-bottom: 1px solid hsla(36,35%,52%,0.15); padding: 1.25rem 0; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--font-serif); font-size: 1.15rem; color: var(--beige); }
.faq details[open] summary { color: var(--gold); }
.faq summary::-webkit-details-marker { display: none; }
.faq p { font-family: var(--font-sans); font-weight: 300; color: var(--muted-foreground); line-height: 1.9; margin-top: 0.75rem; }
