/* ==========================================================================
   SOMA Administradora — Design System
   Direção estética: "Dossiê Editorial" — elegante, sóbrio, orgânico.
   Papel quente + serifa expressiva (Fraunces) + traços de folha do símbolo.
   Construído mobile-first: estilos-base = mobile; media queries (min-width)
   adicionam colunas/complexidade conforme a tela cresce.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Public+Sans:wght@300;400;500;600;700&display=swap');

:root{
  /* marca */
  --navy: #0d2a4a;
  --navy-deep: #081b2e;
  --navy-soft: #1c3a5c;
  --wine: #491023;
  --wine-soft: #6c1c34;
  --rose: #d6b1a7;
  --rose-light: #f1d2cd;

  /* base */
  --paper: #faf5f1;
  --paper-dim: #f3e8e2;
  --ink: #241814;
  --ink-soft: #5a453f;
  --line: rgba(73, 16, 35, .16);
  --line-on-dark: rgba(241, 210, 205, .22);

  /* tipografia */
  --font-display: 'Fraunces', serif;
  --font-body: 'Public Sans', sans-serif;

  /* ritmo */
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);

  /* breakpoints (documentação — usar os valores diretamente nas media queries) */
  --bp-sm: 560px;   /* telefones grandes / mini-tablets */
  --bp-md: 860px;   /* tablets / nav completo */
  --bp-lg: 1024px;  /* desktop */
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; cursor: pointer; }
svg{ flex-shrink: 0; }
[data-lucide]{ width: 1em; height: 1em; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.01em;
}
p{ margin: 0 0 1.1em; color: var(--ink-soft); }
.container{
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* eyebrow labels */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 1.1em;
}
.eyebrow::before{
  content: '';
  width: 22px; height: 1px;
  background: var(--wine);
  display: inline-block;
  flex-shrink: 0;
}
@media (min-width: 560px){
  .eyebrow{ font-size: .72rem; letter-spacing: .22em; }
  .eyebrow::before{ width: 28px; }
}

/* ==========================================================================
   Botões
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 1.6em;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .45s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  width: 100%;
}
.btn-primary{
  background: var(--wine);
  color: var(--rose-light);
}
.btn-primary:hover{ background: var(--navy); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: var(--line-on-dark);
  color: inherit;
}
.btn-outline:hover{ border-color: currentColor; transform: translateY(-2px); }
.btn-ghost-dark{
  border-color: rgba(13,42,74,.3);
  color: var(--navy);
}
.btn-ghost-dark:hover{ background: var(--navy); color: var(--rose-light); border-color: var(--navy); }
.btn-whats{
  background: var(--navy);
  color: var(--rose-light);
}
.btn-whats:hover{ background: var(--wine); transform: translateY(-2px); }
.btn svg, .btn [data-lucide]{ width: 16px; height: 16px; flex-shrink: 0; }
@media (min-width: 560px){
  .btn{ width: auto; padding: .95em 1.9em; font-size: .88rem; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,245,241,.86);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .7rem;
}
.brand{ display: flex; align-items: center; gap: .7rem; min-width: 0; }
.brand img{ height: 60px; width: auto; flex-shrink: 0; }
.brand-name{
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}
.brand-name small{
  display: block;
  font-family: var(--font-body);
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-top: 2px;
  white-space: normal;
}
@media (min-width: 400px){
  .brand img{ height: 72px; }
  .brand-name{ font-size: 1.46rem; letter-spacing: .08em; }
  .brand-name small{ font-size: .7rem; letter-spacing: .16em; }
}

.main-nav ul{ display: none; }
@media (min-width: 860px){
  .main-nav{ display: flex; align-items: center; gap: 2.2rem; }
  .main-nav ul{ display: flex; gap: 1.7rem; }
}
@media (min-width: 1080px){
  .main-nav ul{ gap: 1.9rem; }
}
.main-nav a{
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
  position: relative;
  padding-block: .3rem;
}
.main-nav a::after{
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--wine);
  transition: right .35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after{ right: 0; }
.main-nav a[aria-current="page"]{ color: var(--wine); }

.nav-toggle{
  display: flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none; border: none;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span::before{ position: absolute; top: -7px; }
.nav-toggle span::after{ position: absolute; top: 7px; }
@media (min-width: 860px){
  .nav-toggle{ display: none; }
}

/* ==========================================================================
   Menu mobile (overlay independente — fica fora do header de propósito:
   o header usa backdrop-filter, que cria um novo containing block e
   quebraria um position:fixed aninhado dentro dele)
   ========================================================================== */
.mobile-nav{
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--navy);
  flex-direction: column;
  padding: 1.2rem var(--gutter) 2rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mobile-nav-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 7vh, 3rem);
}
.mobile-nav-top .brand img{ height: 30px; }
.mobile-nav-close{
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: var(--rose);
  opacity: .8;
  flex-shrink: 0;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.mobile-nav-close:hover{ opacity: 1; transform: rotate(90deg); }
.mobile-nav-close svg, .mobile-nav-close [data-lucide]{ width: 20px; height: 20px; }

.mobile-nav nav{ flex: 1; display: flex; flex-direction: column; justify-content: center; }
.mobile-nav ul{ display: flex; flex-direction: column; }
.mobile-nav li{ border-top: 1px solid var(--line-on-dark); }
.mobile-nav li:last-child{ border-bottom: 1px solid var(--line-on-dark); }
.mobile-nav a{
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1.05rem;
  color: rgba(255,255,255,.92);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.mobile-nav a:hover{ color: #fff; gap: 1.3rem; }
.mobile-nav .mn-num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: .85rem;
  color: transparent;
  -webkit-text-stroke: .5px var(--rose);
  min-width: 1.7em;
  flex-shrink: 0;
}
.mobile-nav a[aria-current="page"]{ color: var(--rose); }
.mobile-nav a[aria-current="page"] .mn-num{ color: var(--rose); -webkit-text-stroke: 0; opacity: .6; }
.mobile-nav .mobile-cta{
  padding-top: 1.6rem;
}
.mobile-nav .mobile-cta .btn{ width: 100%; }
.mobile-nav .mobile-cta .btn-outline{ border-color: var(--line-on-dark); color: #fff; }
.mobile-nav .mobile-cta .btn-outline:hover{ border-color: var(--rose); }
body.nav-open{ overflow: hidden; }
body.nav-open .mobile-nav{ transform: translateY(0); }
@media (min-width: 860px){
  .mobile-nav{ display: none; }
}

/* ==========================================================================
   Botão flutuante WhatsApp
   ========================================================================== */
.whats-float{
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 120;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--navy);
  color: var(--rose-light);
  padding: .85rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(8,27,46,.55);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.whats-float svg, .whats-float [data-lucide]{ width: 20px; height: 20px; }
.whats-float::before{
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid var(--navy);
  opacity: .5;
  animation: pulse-ring 2.6s var(--ease) infinite;
}
.whats-float:hover{ background: var(--wine); }
@keyframes pulse-ring{
  0%{ transform: scale(1); opacity: .55; }
  70%{ transform: scale(1.18); opacity: 0; }
  100%{ opacity: 0; }
}
.whats-float .whats-label{ display: none; }
@media (min-width: 640px){
  .whats-float{ padding: .95rem 1.3rem; }
  .whats-float .whats-label{ display: inline; }
}

/* ==========================================================================
   Leaf / branch motif (SVG decorativo)
   ========================================================================== */
.leaf-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  color: var(--wine);
  opacity: .55;
  margin-block: 2rem;
}
.leaf-divider svg, .leaf-divider [data-lucide]{ width: 24px; height: 24px; }
.leaf-divider .rule{ height: 1px; width: 36px; background: currentColor; opacity: .4; }
@media (min-width: 560px){
  .leaf-divider{ gap: 1rem; }
  .leaf-divider svg, .leaf-divider [data-lucide]{ width: 30px; height: 30px; }
  .leaf-divider .rule{ width: 70px; }
}

/* ==========================================================================
   Fotos (banco de imagens temporário — substituir por fotos reais da SOMA)
   ========================================================================== */
.photo-frame{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper-dim);
}
.photo-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame .photo-tag{
  position: absolute;
  left: .9rem; bottom: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(13,42,74,.88);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .5em .8em;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.photo-frame .photo-tag svg, .photo-frame .photo-tag [data-lucide]{ width: 14px; height: 14px; }
.photo-frame--square{ aspect-ratio: 1/1; }
.photo-frame--tall{ aspect-ratio: 4/5; }
.photo-frame--wide{ aspect-ratio: 16/9; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding-block: clamp(2.5rem, 9vw, 7.5rem) clamp(2.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 620px;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 68%);
  opacity: .8;
  z-index: 0;
  pointer-events: none;
}
.hero .container{
  position: relative;
  z-index: 1;
}
.hero-kicker{
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.hero .eyebrow{ justify-content: center; }
.hero h1{
  font-size: clamp(2.1rem, 8vw, 4.1rem);
  margin-inline: auto;
  max-width: 16ch;
}
.hero h1 em{
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}
.hero .lede{
  font-size: 1rem;
  max-width: 46ch;
  margin-inline: auto;
  color: var(--ink-soft);
  margin-top: 1.2rem;
}
.hero-actions{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
}
.hero-actions .btn-outline{
  border-color: rgba(73,16,35,.35);
  color: var(--wine);
}
.hero-actions .btn-outline:hover{ background: var(--wine); color: var(--rose-light); border-color: var(--wine); }
.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.hero-stats div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
}
.hero-stats div span{
  font-size: .64rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (min-width: 480px){
  .hero-actions{ flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (min-width: 860px){
  .hero .lede{ font-size: 1.05rem; }
  .hero-stats{ gap: clamp(1.6rem, 4vw, 2.6rem); margin-top: 3rem; padding-top: 2rem; }
  .hero-stats div strong{ font-size: 2rem; }
  .hero-stats div span{ font-size: .72rem; letter-spacing: .06em; }
}


/* ==========================================================================
   Section scaffolding
   ========================================================================== */
section{ padding-block: clamp(2.75rem, 8vw, 6.5rem); }
.section-head{
  max-width: 640px;
  margin-bottom: clamp(1.8rem, 5vw, 3.5rem);
}
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head h2{ font-size: clamp(1.7rem, 5.5vw, 2.6rem); }
.section-alt{ background: var(--paper-dim); }
.section-dark{ background: var(--navy); color: var(--rose-light); }
.section-dark h2, .section-dark h3, .section-dark h4{ color: #fff; }
.section-dark p{ color: rgba(241,210,205,.72); }
.section-dark .eyebrow{ color: var(--rose); }
.section-dark .eyebrow::before{ background: var(--rose); }

/* ==========================================================================
   Cards de serviço
   ========================================================================== */
.services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 560px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
  .services-grid{ grid-template-columns: repeat(4, 1fr); }
}
.service-card{
  background: var(--paper);
  padding: 2rem 1.5rem;
  position: relative;
  transition: background .4s var(--ease);
}
.service-card:hover{ background: var(--paper-dim); }
.service-card .num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  -webkit-text-stroke: .5px var(--wine);
  color: transparent;
  display: block;
  margin-bottom: 1.4rem;
}
.service-card h3{ font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p{ font-size: .9rem; margin-bottom: 0; }
.service-card.featured{
  background: var(--navy);
  color: var(--rose-light);
}
.service-card.featured h3{ color: #fff; }
.service-card.featured p{ color: rgba(241,210,205,.75); }
.service-card.featured .num{ -webkit-text-stroke: .5px var(--rose); }

/* diferenciais */
.pillars{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 560px){
  .pillars{ grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
}
@media (min-width: 900px){
  .pillars{ grid-template-columns: repeat(3, 1fr); }
}
.pillar{ padding-top: 1.4rem; border-top: 1px solid var(--line-on-dark); }
.pillar h3{ font-size: 1.1rem; }
.pillar .icon, .pillar [data-lucide]{ width: 30px; height: 30px; color: var(--rose); margin-bottom: 1.1rem; }

/* CTA strip */
.cta-strip{
  background: var(--wine);
  color: var(--rose-light);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.cta-strip h2{ color: #fff; margin-bottom: .3rem; font-size: clamp(1.5rem, 5vw, 2.2rem); }
.cta-strip p{ color: rgba(241,210,205,.8); margin: 0; }
.cta-strip .actions{ display: flex; flex-direction: column; gap: .8rem; width: 100%; }
.cta-strip .btn-outline{ border-color: rgba(241,210,205,.4); }
.cta-strip .btn-outline:hover{ background: rgba(241,210,205,.12); }
@media (min-width: 560px){
  .cta-strip .actions{ flex-direction: row; width: auto; }
}
@media (min-width: 700px){
  .cta-strip{ flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}

/* ==========================================================================
   Formulários
   ========================================================================== */
.form-wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 900px){
  .form-wrap{ grid-template-columns: .9fr 1.1fr; }
}
.form-aside h2{ font-size: clamp(1.6rem, 5vw, 2.4rem); }
.form-aside .contact-list{ margin-top: 2rem; }
.form-aside .contact-list li{
  display: flex;
  gap: .9rem;
  padding-block: .9rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}
.form-aside .contact-list li:last-child{ border-bottom: 1px solid var(--line); }
.form-aside .contact-list svg, .form-aside .contact-list [data-lucide]{ width: 18px; height: 18px; color: var(--wine); flex-shrink: 0; margin-top: 2px; }
.form-aside .contact-list strong{ display: block; color: var(--navy); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .15rem; }
.form-aside .photo-frame{ margin-top: 2rem; }

form{ background: #fff; border: 1px solid var(--line); padding: clamp(1.4rem, 4vw, 2.6rem); }
.field{ margin-bottom: 1.2rem; }
.field-row{ display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 560px){
  .field-row{ grid-template-columns: 1fr 1fr; }
}
label{
  display: block;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
input, select, textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85em 1em;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
@media (min-width: 560px){
  input, select, textarea{ font-size: .95rem; }
}
input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: var(--wine);
  background: #fff;
}
textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size: .78rem; color: var(--ink-soft); margin-top: 1rem; }
.form-submit{ display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: .5rem; }
.form-submit .btn{ width: 100%; }
.form-status{ font-size: .85rem; color: var(--wine); font-weight: 600; display: none; }
.form-status.visible{ display: inline-flex; }
@media (min-width: 480px){
  .form-submit{ flex-direction: row; align-items: center; }
  .form-submit .btn{ width: auto; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--navy-deep);
  color: rgba(241,210,205,.7);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) 2rem;
}
.footer-top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(241,210,205,.14);
}
@media (min-width: 560px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px){
  .footer-top{ grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-brand .brand-name{ color: #fff; }
.footer-brand .brand-name small{ color: var(--rose); }
.footer-brand p{ color: rgba(241,210,205,.6); font-size: .88rem; margin-top: 1rem; max-width: 32ch; }
.footer-col h4{ color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; margin-bottom: 1.1rem; }
.footer-col ul li{ margin-bottom: .65rem; font-size: .88rem; }
.footer-col a:hover{ color: #fff; }
.footer-bottom{
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: 1.6rem;
  font-size: .76rem;
  color: rgba(241,210,205,.45);
}
@media (min-width: 640px){
  .footer-bottom{ flex-direction: row; justify-content: space-between; flex-wrap: wrap; font-size: .78rem; }
}

/* ==========================================================================
   Página interna — header simples
   ========================================================================== */
.page-header{
  background: var(--navy);
  color: #fff;
  padding-block: clamp(2.75rem, 8vw, 5.5rem) clamp(2rem, 6vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.page-header::after{
  content: '';
  position: absolute;
  bottom: -30%; left: -6%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--wine) 0%, transparent 70%);
  opacity: .55;
}
.page-header .container{ position: relative; z-index: 1; }
.page-header .eyebrow{ color: var(--rose); }
.page-header .eyebrow::before{ background: var(--rose); }
.page-header h1{ color: #fff; font-size: clamp(1.9rem, 6.5vw, 3.2rem); max-width: 20ch; }
.page-header p{ color: rgba(241,210,205,.75); max-width: 50ch; margin-top: 1rem; }
.breadcrumb{ font-size: .76rem; color: rgba(241,210,205,.55); margin-bottom: 1.2rem; }
.breadcrumb a:hover{ color: #fff; }

/* prose sections (Quem Somos) */
.split{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 860px){
  .split{ grid-template-columns: .9fr 1.1fr; }
  .split.reverse{ grid-template-columns: 1.1fr .9fr; }
  .split.reverse .split-media{ order: 2; }
}
.split-media{
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--rose-light), var(--rose));
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.split-media svg, .split-media [data-lucide]{ width: 46%; height: 46%; color: var(--wine); opacity: .85; }
.split-body h2{ font-size: clamp(1.6rem, 5vw, 2.4rem); }

.value-list{ margin-top: 1.5rem; }
.value-list li{
  display: flex; gap: 1rem;
  padding-block: 1.1rem;
  border-top: 1px solid var(--line);
}
.value-list li:last-child{ border-bottom: 1px solid var(--line); }
.value-list .tag{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--wine);
  font-size: 1.1rem;
  width: 2ch;
  flex-shrink: 0;
}
.value-list h4{ font-size: 1rem; margin-bottom: .25rem; }
.value-list p{ font-size: .9rem; margin: 0; }

.timeline{ display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 1rem; }
.timeline .t-item{ border-top: 2px solid var(--wine); padding-top: 1rem; }
.timeline .t-item .year{ font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); display: block; margin-bottom: .3rem; }
.timeline .t-item p{ font-size: .86rem; margin: 0; }
@media (min-width: 480px){
  .timeline{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px){
  .timeline{ grid-template-columns: repeat(4, 1fr); }
  .timeline.timeline-3{ grid-template-columns: repeat(3, 1fr); }
}

/* Serviços detalhados */
.service-detail{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 5vw, 3.5rem);
  padding-block: clamp(1.8rem, 5vw, 3.2rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 860px){
  .service-detail{ grid-template-columns: .55fr 1.45fr; }
}
.service-detail:last-child{ border-bottom: 1px solid var(--line); }
.service-detail .sd-label{
  display: flex; align-items: baseline; gap: .8rem;
}
.service-detail .sd-label .num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  -webkit-text-stroke: 1px var(--wine);
  color: transparent;
}
.service-detail .sd-label span{
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
}
.service-detail h3{ font-size: 1.4rem; margin-top: .6rem; }
.service-detail .sd-body{ display: flex; flex-direction: column; gap: 1rem; }
.service-detail .sd-list{ display: grid; grid-template-columns: 1fr; gap: .5rem; margin-top: .6rem; }
.service-detail .sd-list li{ font-size: .88rem; color: var(--ink-soft); padding-left: 1.1rem; position: relative; }
.service-detail .sd-list li::before{ content: '—'; position: absolute; left: 0; color: var(--wine); }
.service-detail.highlight{ background: var(--paper-dim); margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); border-top-color: transparent; }
@media (min-width: 560px){
  .service-detail .sd-list{ grid-template-columns: 1fr 1fr; gap: .5rem 2rem; }
}
@media (min-width: 860px){
  .service-detail h3{ font-size: 1.5rem; }
}

.service-photo{ margin-block: clamp(2rem, 6vw, 3rem); }

/* Boletos */
.boleto-card{
  background: var(--navy);
  color: #fff;
  padding: clamp(1.8rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px){
  .boleto-card{ grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
}
.boleto-card::before{
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(241,210,205,.06) 0 1px, transparent 1px 14px);
}
.boleto-card > *{ position: relative; z-index: 1; }
.boleto-card h2{ color: #fff; font-size: clamp(1.5rem, 5vw, 2.1rem); margin-bottom: .4rem; }
.boleto-card p{ color: rgba(241,210,205,.75); margin: 0; max-width: 46ch; }
.boleto-card .btn{ width: 100%; }
@media (min-width: 640px){
  .boleto-card .btn{ width: auto; }
}
.boleto-steps{ display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 2.2rem; }
.boleto-steps .step{ border-top: 1px solid var(--line); padding-top: 1.2rem; }
.boleto-steps .step strong{ font-family: var(--font-display); color: var(--wine); font-size: 1.3rem; display: block; margin-bottom: .4rem; }
@media (min-width: 640px){
  .boleto-steps{ grid-template-columns: repeat(3,1fr); margin-top: 2.5rem; }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
[data-reveal]{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}
