/* ============================================================
   style.css — Nizia de Souza
   ============================================================ */

/* 1. Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Cormorant+Infant:ital,wght@1,400;1,500&family=Pinyon+Script&display=swap');

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

/* 3. Variables */
:root {
  --terracota:      #8B3A2A;
  --terracota-dark: #6B2A1C;
  --terracota-deep: #2A1A0E;
  --terracota-mid:  #7A3020;
  --gold:           #C4922A;
  --gold-light:     #E0B86A;
  --gold-pale:      #F0DFB8;
  --gold-deep:      #8C6418;

  /* Gold gradients ("shimmering gold") */
  --grad-gold:      linear-gradient(135deg, #B07820 0%, #D9A846 38%, #F2D27A 55%, #C4922A 78%, #8C6418 100%);
  --grad-gold-hover:linear-gradient(135deg, #C4922A 0%, #E8BC60 38%, #F8DE92 55%, #D9A846 78%, #A07418 100%);
  --grad-terracota: linear-gradient(140deg, #6B2A1C 0%, #8B3A2A 55%, #A14430 100%);
  --grad-dark:      linear-gradient(160deg, #1F140A 0%, #2A1A0E 45%, #3A2412 100%);
  --grad-bege:      linear-gradient(180deg, #F8F2E9 0%, #EDE4D6 100%);
  --bege:           #F5EFE6;
  --bege-dark:      #EDE4D6;
  --text:           #5C3317;
  --text-soft:      #7A5038;
  --text-lighter:   #9A7058;
  --rose:           #D4756B;
  --blush:          #E8B4A8;
  --blush-soft:     #F5DDD3;
  --blush-pale:     #FBEBE3;
  --white:          #FFFFFF;
  --wa-green:       #25D366;

  --font-title:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-script: 'Pinyon Script', 'Cormorant Infant', cursive;
  --font-serif-i:'Cormorant Infant', Georgia, serif;
  --font-body:   'Lato', Arial, sans-serif;

  --max-w:     1080px;
  --radius:    14px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 14px rgba(42, 26, 14, 0.07);
  --shadow:    0 6px 32px rgba(42, 26, 14, 0.12);
  --shadow-lg: 0 18px 56px rgba(42, 26, 14, 0.18);

  --transition: 0.28s ease;
}

/* 4. Base */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text);
  background-color: var(--bege);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* 5. Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  line-height: 1.15;
  color: var(--terracota-dark);
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.15rem; }

/* Italic accents inside titles — a softer, more feminine touch */
h1 em, h2 em, h3 em,
.hero__title em {
  font-family: var(--font-serif-i);
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  letter-spacing: 0.5px;
}

/* Optional script accent class for delicate flourishes */
.script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.eyebrow--script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 6px;
}

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

/* 6. Layout */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 100px 0; }
.section--sm { padding: 68px 0; }

.section__header { margin-bottom: 60px; }
.section__header.centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-top: 14px;
  line-height: 1.8;
}
.section__sub--light { color: rgba(245, 239, 230, 0.72); }

/* Background variants */
.bg-bege           { background: var(--grad-bege); }
.bg-bege-dark      { background: linear-gradient(180deg, #EDE4D6 0%, #E4D8C2 100%); }
.bg-dark           { background: var(--grad-dark); }
.bg-terracota      { background: var(--grad-terracota); }
.bg-terracota-dark { background: linear-gradient(150deg, #561F12 0%, #6B2A1C 50%, #7A3020 100%); }
.bg-terracota-deep { background: var(--grad-dark); }

/* Text on dark backgrounds */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark .eyebrow { color: var(--gold-light); }

/* Utilities */
.text-center { text-align: center; }
.w-max { max-width: 640px; margin-left: auto; margin-right: auto; }

/* 7. NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(245, 239, 230, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

/* Inner pages: nav starts solid */
.nav.solid {
  background: rgba(245, 239, 230, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  height: 76px;
}

.nav__logo {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--white);
  transition: color var(--transition);
  flex-shrink: 0;
  letter-spacing: 0.2px;
}

.nav.scrolled .nav__logo,
.nav.solid .nav__logo { color: var(--terracota-dark); }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
}

.nav.scrolled .nav__links a,
.nav.solid .nav__links a { color: var(--text-soft); }

.nav__links a:hover { color: var(--gold); }
.nav.scrolled .nav__links a:hover,
.nav.solid .nav__links a:hover { color: var(--terracota); }

.nav__links a.active { color: var(--gold); }
.nav.scrolled .nav__links a.active,
.nav.solid .nav__links a.active { color: var(--terracota); }

.nav__cta { flex-shrink: 0; margin-left: 12px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background var(--transition);
}

.nav.scrolled .nav__toggle span,
.nav.solid .nav__toggle span { background: var(--terracota-dark); }

@media (max-width: 860px) {
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--bege);
    padding: 24px 28px 36px;
    box-shadow: var(--shadow);
    gap: 18px;
  }

  .nav__links.open a {
    color: var(--text);
    font-size: 0.95rem;
  }
}

/* 8. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--grad-terracota);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--white);
  border-color: rgba(60, 22, 12, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 220, 200, 0.18) inset,
    0 6px 22px rgba(139, 58, 42, 0.34),
    0 2px 6px rgba(60, 22, 12, 0.2);
  transition: transform var(--transition), box-shadow var(--transition),
              background-position 0.6s ease, border-color var(--transition);
}
.btn--primary:hover {
  background-position: 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 220, 200, 0.22) inset,
    0 10px 32px rgba(139, 58, 42, 0.45),
    0 3px 8px rgba(60, 22, 12, 0.26);
}

.btn--gold {
  background: var(--grad-gold);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--terracota-deep);
  border-color: rgba(140, 100, 24, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 240, 200, 0.55) inset,
    0 -1px 0 rgba(80, 50, 10, 0.25) inset,
    0 6px 22px rgba(196, 146, 42, 0.32),
    0 2px 6px rgba(80, 50, 10, 0.18);
  text-shadow: 0 1px 0 rgba(255, 240, 200, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
              background-position 0.6s ease, border-color var(--transition);
}
.btn--gold::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255, 250, 230, 0.55) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn--gold:hover {
  background-position: 100% 50%;
  border-color: rgba(140, 100, 24, 0.75);
  box-shadow:
    0 1px 0 rgba(255, 245, 215, 0.7) inset,
    0 -1px 0 rgba(80, 50, 10, 0.3) inset,
    0 10px 32px rgba(196, 146, 42, 0.45),
    0 3px 8px rgba(80, 50, 10, 0.22);
}
.btn--gold:hover::before { left: 130%; }

.btn--outline {
  background: transparent;
  color: var(--terracota);
  border-color: var(--terracota);
}
.btn--outline:hover {
  background: var(--terracota);
  color: var(--white);
}

.btn--outline-light {
  background: rgba(245, 239, 230, 0.04);
  color: var(--gold-pale);
  border-color: rgba(224, 184, 106, 0.45);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.btn--outline-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 184, 106, 0.0) 0%, rgba(224, 184, 106, 0.18) 50%, rgba(224, 184, 106, 0.0) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.btn--outline-light:hover {
  background: rgba(245, 239, 230, 0.08);
  border-color: var(--gold-light);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(196, 146, 42, 0.25);
}
.btn--outline-light:hover::before { opacity: 1; }
.btn--outline-light svg {
  fill: currentColor;
  color: var(--gold-light);
  width: 16px; height: 16px;
}
.btn--outline-light:hover svg { color: var(--white); }

/* WhatsApp action button — refined gold-gradient with subtle green icon dot */
.btn--wa {
  background: var(--grad-gold);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--terracota-deep);
  border-color: rgba(140, 100, 24, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 240, 200, 0.55) inset,
    0 -1px 0 rgba(80, 50, 10, 0.25) inset,
    0 6px 22px rgba(196, 146, 42, 0.32);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
              background-position 0.6s ease, border-color var(--transition);
}
.btn--wa::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,250,230,0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn--wa:hover {
  background-position: 100% 50%;
  border-color: rgba(140, 100, 24, 0.75);
  box-shadow:
    0 10px 32px rgba(196, 146, 42, 0.45),
    0 3px 8px rgba(80, 50, 10, 0.22);
}
.btn--wa:hover::before { left: 130%; }
.btn--wa svg { color: #1FA855; }

.btn--lg { padding: 17px 40px; font-size: 0.92rem; }
.btn--sm { padding: 10px 22px; font-size: 0.78rem; }

.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-group.centered { justify-content: center; }

/* 9. ORNAMENT */
.ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.ornament img { width: 200px; height: auto; opacity: 0.95; }
.ornament--sm img { width: 130px; }
.ornament--lg img { width: 260px; }

/* Decorative botanical branches in section corners */
.section { position: relative; }
.section--botanical::before,
.section--botanical::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  background: url('images/branch-corner.svg') no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.55;
}
.section--botanical::before {
  top: 24px; left: 0;
  transform: scaleY(-1);
}
.section--botanical::after {
  bottom: 24px; right: 0;
  transform: scaleX(-1);
}
.section--botanical-r::after {
  content: '';
  position: absolute;
  bottom: 24px; right: 0;
  width: 220px; height: 220px;
  background: url('images/branch-corner.svg') no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.45;
  transform: scaleX(-1);
}
@media (max-width: 760px) {
  .section--botanical::before,
  .section--botanical::after,
  .section--botanical-r::after { width: 130px; height: 130px; opacity: 0.35; }
}

/* 10. HERO */
.hero {
  min-height: 100svh;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 96px 0 72px;
}

/* Organic glow — top right (gold + terracota) */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 65%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center,
    rgba(196, 146, 42, 0.22) 0%,
    rgba(139, 58, 42, 0.32) 35%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Soft gradient fade at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bege), transparent);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  font-weight: normal;
}

.hero__title em {
  font-family: var(--font-serif-i);
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
  letter-spacing: 0.4px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: rgba(245, 239, 230, 0.84);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.86;
  font-weight: 300;
}

.hero__visual { position: relative; }

.hero__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(196, 146, 42, 0.35), 0 0 0 8px rgba(245, 221, 211, 0.10), var(--shadow-lg);
  display: block;
}

.hero__photo-ring {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 150px;
  height: 150px;
  border: 1px dashed rgba(196, 146, 42, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: slow-spin 60s linear infinite;
}

@keyframes slow-spin { to { transform: rotate(360deg); } }

/* Inner-page hero (lighter) */
.hero-inner {
  background: linear-gradient(150deg, #561F12 0%, #6B2A1C 50%, #7A3020 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(ellipse at center,
    rgba(196, 146, 42, 0.18) 0%,
    transparent 65%);
  pointer-events: none;
}
.hero-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bege), transparent);
  pointer-events: none;
}

.hero-inner h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.2rem); position: relative; z-index: 1; }
.hero-inner .eyebrow { color: var(--gold-light); position: relative; z-index: 1; }
.hero-inner p { color: rgba(245, 239, 230, 0.8); max-width: 580px; margin: 16px auto 0; font-size: 1.05rem; position: relative; z-index: 1; }
.hero-inner .container > * { position: relative; z-index: 1; }

/* 11. RECOGNITION CARDS */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.recognition-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 180, 168, 0.22);
  border-top: 2px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(90deg, transparent, var(--rose), var(--gold), var(--rose), transparent);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform var(--transition), box-shadow var(--transition);
}

.recognition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.recognition-card p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.86;
  font-family: var(--font-serif-i);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

.recognition-closing {
  max-width: 820px;
  margin: 56px auto 0;
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--terracota-dark);
  padding: 0 12px;
  border: none;
  border-radius: 0;
  background: none;
  line-height: 1.6;
  font-family: var(--font-serif-i);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* 12. TOOLS GRID (Proposta) */
.proposta-text {
  max-width: 680px;
  margin: 0 auto 52px;
  font-size: 1.02rem;
  color: rgba(245, 239, 230, 0.78);
  text-align: center;
  line-height: 1.88;
}

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

.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid rgba(196, 146, 42, 0.20);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(232, 180, 168, 0.06) 0%, rgba(196, 146, 42, 0.05) 100%);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.tool-item:hover {
  background: linear-gradient(160deg, rgba(232, 180, 168, 0.10) 0%, rgba(196, 146, 42, 0.10) 100%);
  border-color: rgba(196, 146, 42, 0.40);
  transform: translateY(-2px);
}

.tool-item__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.tool-item__icon svg { width: 34px; height: 34px; }

.tool-item__name {
  font-family: var(--font-title);
  font-size: 0.97rem;
  color: var(--gold-light);
  line-height: 1.45;
  font-weight: normal;
  padding-top: 4px;
}

/* 13. PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-card {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.product-card--workshop {
  background: linear-gradient(140deg, #561F12 0%, #6B2A1C 50%, #7A3020 100%);
  color: var(--white);
  border: 1px solid rgba(196, 146, 42, 0.22);
}

.product-card--imersao {
  background: linear-gradient(140deg, #1F140A 0%, #2A1A0E 50%, #3F2818 100%);
  color: var(--white);
  border: 1px solid rgba(196, 146, 42, 0.30);
}

/* Decorative ring */
.product-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border: 1px solid rgba(196, 146, 42, 0.14);
  border-radius: 50%;
  pointer-events: none;
}
.product-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border: 1px solid rgba(196, 146, 42, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.product-card__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
  opacity: 0.75;
}

.product-card__title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 1.5px;
  font-weight: normal;
  line-height: 1.1;
}

.product-card__subtitle {
  font-size: 0.9rem;
  color: rgba(245, 239, 230, 0.62);
  margin-bottom: 22px;
  font-style: italic;
}

.product-card__desc {
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.82);
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(196, 146, 42, 0.18);
}

.product-card__meta-item {
  font-size: 0.84rem;
  color: rgba(245, 239, 230, 0.60);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card__meta-item::before {
  content: '❀';
  display: inline-block;
  width: 14px;
  text-align: center;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.product-card__price {
  font-family: var(--font-title);
  font-size: 2.2rem;
  background: linear-gradient(135deg, #E0B86A 0%, #F2D27A 50%, #C4922A 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-light);
  margin-bottom: 22px;
  line-height: 1;
}

.product-card__price small {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.5);
  font-weight: 300;
  -webkit-text-fill-color: rgba(245, 239, 230, 0.5);
}

/* 14. JOURNEY */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.journey-step {
  text-align: center;
  padding: 0 28px;
}

.journey-step__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.journey-step__icon {
  width: 136px; height: 136px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.journey-step__icon svg { width: 54px; height: 54px; }

.journey-step:nth-child(1) .journey-step__icon {
  background: radial-gradient(circle at 35% 30%, rgba(232, 180, 168, 0.35) 0%, rgba(212, 117, 107, 0.10) 70%);
  border: 1px solid rgba(212, 117, 107, 0.35);
  color: var(--rose);
}

.journey-step:nth-child(2) .journey-step__icon {
  background: radial-gradient(circle at 35% 30%, rgba(240, 223, 184, 0.55) 0%, rgba(196, 146, 42, 0.10) 70%);
  border: 1px solid rgba(196, 146, 42, 0.32);
  color: var(--gold);
}

.journey-step:nth-child(3) .journey-step__icon {
  background: radial-gradient(circle at 35% 30%, rgba(232, 180, 168, 0.40) 0%, rgba(212, 117, 107, 0.10) 70%);
  border: 1px solid rgba(212, 117, 107, 0.42);
  color: var(--rose);
}

.journey-step__icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(196, 146, 42, 0.22);
  pointer-events: none;
}

.journey-step h3 {
  font-size: 1.5rem;
  color: var(--terracota-dark);
  margin-bottom: 12px;
}

.journey-step p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.78;
}

/* On dark backgrounds — proper contrast for journey */
.on-dark .journey-steps::before {
  background: linear-gradient(to right,
    transparent 0%,
    rgba(224, 184, 106, 0.28) 35%,
    rgba(232, 180, 168, 0.32) 50%,
    rgba(224, 184, 106, 0.28) 65%,
    transparent 100%);
  opacity: 0.7;
  top: 76px;
  left: calc(16.7% + 80px);
  right: calc(16.7% + 80px);
}
.on-dark .journey-step h3 {
  color: var(--gold-pale);
}
.on-dark .journey-step p {
  color: rgba(245, 239, 230, 0.72);
}
.on-dark .journey-step__label {
  color: var(--gold-light);
}

/* 15. TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 4px 28px rgba(42, 26, 14, 0.09), 0 1px 6px rgba(42, 26, 14, 0.05);
  border: 1px solid rgba(232, 180, 168, 0.24);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial__quote {
  font-family: var(--font-title);
  font-size: 8rem;
  color: var(--rose);
  opacity: 0.08;
  line-height: 1;
  font-style: italic;
  position: absolute;
  top: 14px;
  right: 22px;
  user-select: none;
  pointer-events: none;
}

.testimonial__text {
  font-family: var(--font-serif-i);
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
  text-align: left;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(196, 146, 42, 0.22);
}

.testimonial__photo {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-light), 0 4px 14px rgba(196, 146, 42, 0.24);
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--terracota-dark);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* 16. ABOUT */
.about__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.about__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.about__credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.about__credential::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about__content h2 { margin-bottom: 16px; }
.about__content p   { color: var(--text-soft); font-size: 0.97rem; }

/* 17. CTA FINAL */
.cta-final { text-align: center; position: relative; overflow: hidden; }

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; aspect-ratio: 2;
  background: radial-gradient(ellipse at center,
    rgba(196, 146, 42, 0.18) 0%,
    transparent 60%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }

.cta-final h2 {
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 16px;
}

.cta-final .section__sub {
  max-width: 480px;
  margin: 0 auto 40px;
}

/* 18. FOOTER */
.footer {
  background: var(--terracota-deep);
  padding: 48px 28px 36px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: rgba(245, 239, 230, 0.65);
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.footer__nav a {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.45);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--gold); }

.footer__divider {
  width: 40px; height: 1px;
  background: rgba(196, 146, 42, 0.25);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(245, 239, 230, 0.28);
}

/* 19. FLOATING WHATSAPP — refined gold ring around green */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(140deg, #25D366 0%, #128C45 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(196, 146, 42, 0.35),
    0 0 0 6px rgba(42, 26, 14, 0.25),
    0 8px 28px rgba(20, 80, 40, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-wa:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 2px rgba(196, 146, 42, 0.55),
    0 0 0 6px rgba(42, 26, 14, 0.30),
    0 12px 36px rgba(20, 80, 40, 0.55);
}

.float-wa svg { width: 28px; height: 28px; fill: var(--white); }

/* 20. FAQ (details/summary) */
.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  border-bottom: 1px solid rgba(139, 58, 42, 0.14);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--terracota-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terracota); }

.faq-item summary::after {
  content: '✿';
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
  opacity: 0.7;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  color: var(--gold);
  opacity: 1;
}

.faq-item .faq-answer {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.82;
  padding-bottom: 24px;
  max-width: 680px;
}

/* FAQ dark variant */
.on-dark .faq-item { border-bottom-color: rgba(196, 146, 42, 0.18); }
.on-dark .faq-item summary { color: var(--gold-pale); }
.on-dark .faq-item summary:hover { color: var(--white); }
.on-dark .faq-answer { color: rgba(245, 239, 230, 0.72); }

/* 21. PRICING LOTES */
.lotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lote-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 180, 168, 0.32);
  padding: 36px 30px;
  background: linear-gradient(180deg, var(--white) 0%, var(--blush-pale) 100%);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.lote-card--featured {
  background: linear-gradient(150deg, #561F12 0%, #6B2A1C 50%, #7A3020 100%);
  border-color: rgba(196, 146, 42, 0.45);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(60, 22, 12, 0.35);
  transform: scale(1.02);
}
.lote-card--featured:hover { transform: translateY(-4px) scale(1.02); }

.lote-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  color: var(--gold);
}

.lote-card--featured .lote-card__label { color: var(--gold-light); }

.lote-card__price {
  font-family: var(--font-title);
  font-size: 2.4rem;
  color: var(--terracota);
  line-height: 1;
  margin-bottom: 6px;
}

.lote-card--featured .lote-card__price {
  background: linear-gradient(135deg, #E0B86A 0%, #F2D27A 50%, #C4922A 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-light);
}

.lote-card__desc {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.65;
}

.lote-card--featured .lote-card__desc { color: rgba(245, 239, 230, 0.7); }

/* 22. FOR WHOM LIST */
.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.for-whom-list { display: flex; flex-direction: column; gap: 14px; }

.for-whom-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.for-whom-item .marker {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.for-whom-item .marker--yes { background: rgba(212, 117, 107, 0.18); color: var(--rose); }
.for-whom-item .marker--no  { background: rgba(154, 112, 88, 0.18); color: var(--text-lighter); }
.for-whom-item .marker svg  { width: 12px; height: 12px; }

/* 23. STEP LIST (what happens) */
.step-list { display: flex; flex-direction: column; gap: 0; }

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(139, 58, 42, 0.12);
  align-items: start;
}

.step-item:last-child { border-bottom: none; }

.step-item__num {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--terracota);
  opacity: 0.25;
  line-height: 1;
  padding-top: 4px;
}

.step-item h3 { color: var(--terracota-dark); margin-bottom: 8px; font-size: 1.2rem; }
.step-item p  { color: var(--text-soft); font-size: 0.95rem; }

/* on-dark step list */
.on-dark .step-item { border-bottom-color: rgba(196, 146, 42, 0.14); }
.on-dark .step-item__num { color: var(--gold); opacity: 0.35; }
.on-dark .step-item h3 { color: var(--white); }
.on-dark .step-item p  { color: rgba(245, 239, 230, 0.70); }

/* 24. REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.10s; }
.reveal--d2 { transition-delay: 0.20s; }
.reveal--d3 { transition-delay: 0.30s; }
.reveal--d4 { transition-delay: 0.42s; }
.reveal--d5 { transition-delay: 0.54s; }

/* 25. DIVIDER */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 52px 0;
  color: var(--text-lighter);
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: currentColor;
  opacity: 0.22;
}

/* 26. HIGHLIGHT BOX */
.highlight-box {
  background: var(--grad-terracota);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
  border: 1px solid rgba(196, 146, 42, 0.35);
  box-shadow: 0 12px 40px rgba(60, 22, 12, 0.28);
}

.highlight-box h3 { color: var(--white); margin-bottom: 8px; }
.highlight-box p  { color: rgba(245, 239, 230, 0.80); }

/* 27. RESPONSIVE */
@media (max-width: 900px) {
  .hero__inner        { grid-template-columns: 1fr; text-align: center; }
  .hero__visual       { order: -1; max-width: 340px; margin: 0 auto; }
  .hero__subtitle     { margin-left: auto; margin-right: auto; }
  .hero .btn-group    { justify-content: center; }

  .recognition-grid   { grid-template-columns: 1fr; }
  .tools-grid         { grid-template-columns: 1fr 1fr; }
  .products-grid      { grid-template-columns: 1fr; }
  .journey-steps::before { display: none; }
  .journey-steps      { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .about__inner       { grid-template-columns: 1fr; }
  .about__inner .about__visual { max-width: 340px; }
  .lotes-grid         { grid-template-columns: 1fr; }
  .for-whom-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section       { padding: 72px 0; }
  .tools-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .container     { padding: 0 20px; }
  .float-wa      { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .product-card  { padding: 36px 28px; }
  .step-item     { grid-template-columns: 36px 1fr; gap: 16px; }
}

/* 28. LOTE CARD PARTS */
.lote-card__header { margin-bottom: 20px; }

.lote-card__installment {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 4px;
  margin-bottom: 12px;
}
.lote-card--featured .lote-card__installment { color: rgba(245,239,230,0.55); }

.lote-card__body { display: flex; flex-direction: column; gap: 18px; }
.lote-card__body p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; margin: 0; }
.lote-card--featured .lote-card__body p { color: rgba(245,239,230,0.65); }

/* 29. FOR-WHOM LIST on dark backgrounds */
.for-whom-list--light .for-whom-item { color: rgba(245,239,230,0.78); }

/* 30. SERVICES GRID ("O que posso fazer por você") */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 34px 38px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 180, 168, 0.32);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blush) 25%, var(--gold) 50%, var(--blush) 75%, transparent 100%);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border: 1px solid rgba(196, 146, 42, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 146, 42, 0.42);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(196,146,42,0.15) 0%, rgba(196,146,42,0.05) 100%);
  border: 1px solid rgba(196, 146, 42, 0.30);
  color: var(--gold-deep);
  position: relative;
  z-index: 1;
}
.service-card__icon svg { width: 30px; height: 30px; }

.service-card__eyebrow {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--terracota-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.78;
  margin-bottom: 22px;
  flex: 1;
}

.service-card__meta {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-bottom: 22px;
  font-weight: 700;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--terracota);
  border-bottom: 1px solid rgba(139, 58, 42, 0.25);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color var(--transition), border-color var(--transition), gap var(--transition);
}
.service-card__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card__link:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
  gap: 12px;
}
.service-card__link:hover svg { transform: translateX(3px); }

.service-card--featured {
  background: var(--grad-dark);
  color: var(--white);
  border-color: rgba(196, 146, 42, 0.35);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured .service-card__eyebrow { color: var(--gold-light); }
.service-card--featured .service-card__desc { color: rgba(245,239,230,0.78); }
.service-card--featured .service-card__meta { color: rgba(245,239,230,0.45); }
.service-card--featured .service-card__icon {
  background: linear-gradient(135deg, rgba(196,146,42,0.22) 0%, rgba(196,146,42,0.06) 100%);
  border-color: rgba(196, 146, 42, 0.55);
  color: var(--gold-light);
}
.service-card--featured .service-card__link {
  color: var(--gold-light);
  border-bottom-color: rgba(196, 146, 42, 0.45);
}
.service-card--featured .service-card__link:hover {
  color: var(--white);
  border-bottom-color: var(--gold-light);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* 31. NAV cta refined: tighter, gold gradient */
.nav .btn--wa { padding: 11px 22px; font-size: 0.78rem; letter-spacing: 1px; }
.nav .btn--wa svg { width: 15px; height: 15px; }

/* ============================================================
   32. FEMININE TOUCHES — soft pink/rose details for warmth
   ============================================================ */

/* Tiny rose flower after centered eyebrows  */
.section__header.centered .eyebrow {
  position: relative;
  display: inline-block;
  padding: 0 18px;
}
.section__header.centered .eyebrow::before,
.section__header.centered .eyebrow::after {
  content: '❀';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--rose);
  opacity: 0.7;
  letter-spacing: 0;
}
.section__header.centered .eyebrow::before { left: 0; }
.section__header.centered .eyebrow::after  { right: 0; }
.on-dark .section__header.centered .eyebrow::before,
.on-dark .section__header.centered .eyebrow::after { color: var(--blush); opacity: 0.55; }

/* Hero — subtle blush glow from bottom-left for feminine warmth */
.hero { position: relative; }
.hero > .blush-glow,
.hero::before { /* already exists at top-right */ }
/* extra glow */
.hero .container::before {
  content: '';
  position: absolute;
  bottom: -10%; left: -8%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center,
    rgba(232, 180, 168, 0.18) 0%,
    rgba(212, 117, 107, 0.10) 40%,
    transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; }
.hero .container > * { position: relative; z-index: 1; }

/* Recognition cards: a tiny rose flower whisper on top */
.recognition-card { position: relative; }
.recognition-card::after {
  content: '❀';
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 0.85rem;
  color: var(--rose);
  opacity: 0.35;
  transition: opacity var(--transition), transform var(--transition);
}
.recognition-card:hover::after {
  opacity: 0.7;
  transform: rotate(20deg);
}

/* Credentials: rose flower marker (no dash) */
.about__credential::before {
  content: '❀';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  font-size: 0.7rem;
  color: var(--rose);
  opacity: 0.75;
  flex-shrink: 0;
  background: none;
  height: auto;
}
.about__credential {
  position: relative;
  padding-left: 0;
}
.about__credential::after {
  content: none;
}

/* Section dividing rose flourish: small ❀ above CTA-final headline */
.cta-final h2::before {
  content: '❀';
  display: block;
  font-size: 1.1rem;
  color: var(--blush);
  opacity: 0.65;
  margin-bottom: 18px;
  letter-spacing: 0;
  font-family: var(--font-body);
}

/* Soft pink underline accent on hero__subtitle first letter feel */
.hero__subtitle {
  position: relative;
}
.hero__subtitle::before {
  content: '❀';
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--rose);
  opacity: 0.75;
}

/* Inner-page hero subtitle: same delicate accent */
.hero-inner p {
  position: relative;
}
.hero-inner p::before {
  content: '❀';
  display: inline-block;
  font-size: 0.7rem;
  color: var(--blush);
  opacity: 0.7;
  margin-right: 10px;
  vertical-align: middle;
}

/* Service-card icon: soft blush radial behind gold for feminine depth */
.service-card__icon {
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 180, 168, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, rgba(196,146,42,0.15) 0%, rgba(196,146,42,0.05) 100%);
}

/* Testimonials: golden petal ornament */
.testimonial { position: relative; }
.testimonial::after {
  content: '❀';
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.5;
}

/* Footer: soft rose dot in copy */
.footer__copy {
  position: relative;
}
.footer__copy::before {
  content: '❀ ';
  color: var(--rose);
  opacity: 0.65;
}

/* Floating WhatsApp: gentle blush halo */
.float-wa {
  position: fixed;
}
.float-wa::after {
  background: radial-gradient(circle, rgba(232,180,168,0.22) 0%, transparent 70%);
}

/* Soft rose for ornament drop on bege backgrounds */
.bg-bege .ornament img,
.bg-bege-dark .ornament img {
  filter: drop-shadow(0 2px 6px rgba(212, 117, 107, 0.18));
}


/* ============================================================
   33. HERO INNER SPLIT — text + image (mulher-inteira)
   ============================================================ */
.hero-inner--split { padding: 130px 0 90px; text-align: left; }

.hero-inner--split .hero-inner__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-inner--split .hero-inner__text { max-width: 520px; }
.hero-inner--split h1 { text-align: left; }
.hero-inner--split p {
  margin: 16px 0 0;
  text-align: left;
  max-width: 100%;
}
.hero-inner--split .eyebrow { display: inline-block; }

.hero-inner--split .hero-inner__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner--split .hero-inner__visual::before {
  content: '';
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(ellipse at center,
    rgba(232, 180, 168, 0.22) 0%,
    rgba(196, 146, 42, 0.18) 35%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-inner--split .hero-inner__photo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.45))
          drop-shadow(0 0 32px rgba(224, 184, 106, 0.18));
  animation: gentle-float 7s ease-in-out infinite;
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 860px) {
  .hero-inner--split { padding: 110px 0 60px; text-align: center; }
  .hero-inner--split .hero-inner__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-inner--split .hero-inner__text { margin: 0 auto; }
  .hero-inner--split h1, .hero-inner--split p { text-align: center; }
  .hero-inner--split .btn-group { justify-content: center; }
  .hero-inner--split .hero-inner__visual { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ============================================================
   34. HERO ROSE (home) — wilted rose treatment
   ============================================================ */
.hero__photo--rose {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  filter:
    drop-shadow(0 22px 40px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 50px rgba(232, 180, 168, 0.18));
  animation: rose-sway 9s ease-in-out infinite;
  transform-origin: 50% 18%;
  position: relative;
  z-index: 1;
}

@keyframes rose-sway {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50%      { transform: rotate(1.2deg) translateY(-6px); }
}

/* Soft halo glow behind the rose */
.hero__visual--rose {
  position: relative;
}
.hero__visual--rose::before {
  content: '';
  position: absolute;
  inset: -8% -10%;
  background: radial-gradient(ellipse at 45% 45%,
    rgba(232, 180, 168, 0.20) 0%,
    rgba(212, 117, 107, 0.10) 35%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Reposition the dashed ring as a soft halo around the rose */
.hero__visual--rose .hero__photo-ring {
  bottom: auto;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -52%);
  border-color: rgba(224, 184, 106, 0.32);
}

@media (max-width: 860px) {
  .hero__photo--rose { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   35. CTA FINAL QUOTE — closing blessing with presence
   ============================================================ */
.cta-final__quote {
  position: relative;
  max-width: 760px;
  margin: 80px auto 0;
  padding: 48px 32px 36px;
  text-align: center;
  border-top: 1px solid rgba(224, 184, 106, 0.22);
}

.cta-final__quote-mark {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-dark);
  padding: 0 22px;
  font-family: var(--font-title);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--gold-light);
  background-clip: padding-box;
}

.cta-final__quote p {
  font-family: var(--font-serif-i);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.55;
  color: var(--gold-pale);
  letter-spacing: 0.3px;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.cta-final__quote cite {
  display: inline-block;
  margin-top: 28px;
  padding-top: 18px;
  position: relative;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.cta-final__quote cite::before {
  content: '❀';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0;
  color: var(--gold-light);
  opacity: 0.85;
}

@media (max-width: 640px) {
  .cta-final__quote { margin-top: 56px; padding: 40px 18px 28px; }
  .cta-final__quote-mark { font-size: 3.2rem; padding: 0 16px; }
}
