/* Núcleo de Psicologia Mayara Techio — tipografia editorial, mobile-first */

:root {
  --bg-page: #fff9f7;
  --bg-soft: #fff0f3;
  --bg-section: #fadbe2;
  --rose-dust: #e0456b;
  --rose-deep: #c4365a;
  --burgundy: #6b1f38;
  --burgundy-soft: #a12d52;
  --text: #261418;
  --text-muted: #5c4850;
  --white: #fff;
  --shadow: 0 20px 50px rgba(107, 31, 56, 0.14);
  --shadow-soft: 0 8px 30px rgba(107, 31, 56, 0.09);
  --radius: 24px;
  --radius-sm: 16px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Parisienne", cursive;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.03);
  }
  66% {
    transform: translate(-10px, 10px) scale(0.98);
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 69, 107, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(224, 69, 107, 0);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-enter {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-orb {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0));
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.serif {
  font-family: var(--font-serif);
}

.italic {
  font-style: italic;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--burgundy);
  color: var(--white);
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.container.narrow {
  width: min(640px, 92vw);
}

@media (min-width: 1024px) {
  .container.narrow {
    width: min(720px, 92vw);
  }

  body {
    font-size: 1.125rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 246, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 107, 107, 0.12);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  border-bottom-color: rgba(184, 107, 107, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1140px, 92vw);
  margin-inline: auto;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}

@media (min-width: 1024px) {
  .site-nav {
    gap: 0.5rem 1.5rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease-out);
}

.brand-mark:active {
  transform: scale(0.98);
}

.brand-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-line {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-script {
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--burgundy-soft);
  margin-top: 0.05rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 10px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(184, 107, 107, 0.1);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--burgundy);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--rose-dust);
  transition: width 0.3s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--rose-deep);
}

.nav-cta::after {
  display: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--rose-dust), var(--burgundy-soft));
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(143, 78, 86, 0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(143, 78, 86, 0.4);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(253, 248, 246, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 107, 107, 0.15);
    box-shadow: var(--shadow-soft);
    animation: menu-in 0.35s var(--ease-out);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    text-align: center;
    margin-top: 0.75rem;
    border: none;
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.25rem, 11vw, 5.75rem) 0 clamp(3.5rem, 12vw, 7rem);
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -15%, rgba(255, 182, 198, 0.45), transparent 52%),
    radial-gradient(ellipse 65% 55% at 100% 55%, rgba(255, 228, 232, 0.95), transparent 48%),
    radial-gradient(ellipse 55% 50% at 0% 85%, rgba(255, 236, 240, 0.9), transparent 50%),
    var(--bg-page);
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
  animation: float-orb 18s ease-in-out infinite;
}

.hero-orb--1 {
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  background: #ff9eb0;
  top: 5%;
  right: -8%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: min(220px, 45vw);
  height: min(220px, 45vw);
  background: #f5b8c8;
  bottom: 15%;
  left: -12%;
  animation-delay: -6s;
}

.hero-orb--3 {
  width: min(160px, 35vw);
  height: min(160px, 35vw);
  background: #ffd0dc;
  top: 40%;
  left: 30%;
  animation-delay: -12s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 38rem;
  margin-inline: auto;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .hero-inner {
    max-width: 44rem;
  }

  .hero-title-script {
    font-size: clamp(3.25rem, 4.2vw, 4.25rem);
  }

  .hero-title-serif {
    font-size: clamp(2.5rem, 3.2vw, 3.35rem);
  }

  .hero-lead {
    font-size: 1.2rem;
    max-width: 36rem;
  }

  .hero-eyebrow {
    font-size: 1.1rem;
  }
}

.hero-enter {
  opacity: 0;
  animation: hero-enter 0.85s var(--ease-out) forwards;
  animation-delay: var(--enter-delay, 0s);
}

.hero-eyebrow {
  font-size: 1rem;
  font-weight: 500;
  color: var(--burgundy-soft);
  margin: 0 0 0.65rem;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 0 0 1.1rem;
  line-height: 1.12;
}

.hero-title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 9vw, 3.75rem);
  color: var(--burgundy-soft);
  font-weight: 400;
  line-height: 1.05;
}

.hero-title-serif {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6.5vw, 3rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

.hero-lead {
  max-width: 32rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
}

.hero-lead strong {
  color: var(--burgundy);
  font-weight: 700;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.hero-inner > .btn-primary {
  margin-top: 0.15rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--burgundy-soft);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 107, 107, 0.22);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.tag-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-dust), var(--burgundy-soft));
  flex-shrink: 0;
}

.wave-divider {
  color: var(--bg-soft);
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(36px, 8vw, 52px);
}

/* Hero permanece centralizado em todas as larguras (melhor leitura no desktop) */

/* Diferenciais / pilares */
.section-pillars {
  background: var(--bg-page);
  border-top: 1px solid rgba(184, 107, 107, 0.08);
}

.section-kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 0.6rem;
  text-align: center;
}

.section-pillars .section-title {
  text-align: center;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 480px) {
  .section-pillars .section-title {
    max-width: none;
  }
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.pillars-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    gap: 1.75rem;
  }

  .pillar-card {
    padding: 1.75rem 1.5rem 1.85rem;
    min-height: 100%;
  }

  .pillar-title {
    font-size: 1.45rem;
  }

  .pillar-text {
    font-size: 1rem;
  }
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.35rem 1.6rem;
  border: 1px solid rgba(184, 107, 107, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pillar-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(184, 107, 107, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--burgundy);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.pillar-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pillars-grid .reveal:nth-child(1) {
  transition-delay: 0.04s;
}
.pillars-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.pillars-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.pillars-grid .reveal:nth-child(4) {
  transition-delay: 0.22s;
}

/* Benefícios (panfleto) */
.section-benefits {
  background: var(--white);
  text-align: center;
}

.section-benefits .section-title {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.65rem, 4.2vw, 2.15rem);
}

.benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  text-align: left;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.benefits-grid .reveal:nth-child(1) {
  transition-delay: 0.04s;
}
.benefits-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.benefits-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.benefits-grid .reveal:nth-child(4) {
  transition-delay: 0.22s;
}

.benefit-card {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid rgba(184, 107, 107, 0.1);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.benefit-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.benefits-closing {
  margin: 2rem auto 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #e94d72 0%, var(--burgundy-soft) 48%, #8f2450 100%);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(224, 69, 107, 0.42);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(224, 69, 107, 0.5);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn-shine::before {
    animation: none;
    display: none;
  }
}

.btn-secondary {
  background: var(--white);
  color: var(--burgundy);
  border-color: rgba(184, 107, 107, 0.45);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: var(--burgundy);
  background: var(--bg-soft);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  transform: translateY(2rem) scale(0.96);
}

.reveal-scale.is-visible {
  transform: translateY(0) scale(1);
}

.reveal-lift {
  transform: translateY(2.5rem);
}

.reveal-lift.is-visible {
  transform: translateY(0);
}

/* Sections */
.section {
  padding: clamp(3.25rem, 10vw, 5.25rem) 0;
  position: relative;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 2.65rem);
  font-weight: 600;
  color: var(--burgundy);
  margin: 0 0 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section-about {
  background: var(--bg-soft);
  text-align: center;
}

.section-about .prose {
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-about .section-title {
  position: relative;
  z-index: 1;
}

.watermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 18vw, 8rem);
  font-weight: 600;
  color: rgba(184, 107, 107, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.watermark-center {
  left: 50%;
  transform: translateX(-50%);
}

.watermark-sm {
  font-size: clamp(3rem, 14vw, 5.5rem);
  left: 50%;
  transform: translateX(-50%);
  top: -0.5rem;
}

.watermark-founder {
  display: none;
}

.watermark-dark {
  color: rgba(255, 255, 255, 0.06);
  left: 50%;
  transform: translateX(-50%);
}

.watermark-vertical {
  display: none;
}

.watermark-loc {
  display: none;
}

.section-about .narrow,
.section-founder .container {
  position: relative;
}

.prose p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Lista de especialidades (tipografia panfleto) */
.section-about .services-header {
  margin-bottom: 1.5rem;
}

.services-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.services-intro-title {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 3.6vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.85rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.services-intro-lead {
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.58;
  max-width: 38rem;
}

.services-catalog {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* “O que é?” — grade de cartões (menos rolagem, mesmo tom editorial) */
.section-about .container.narrow {
  width: min(640px, 92vw);
}

@media (min-width: 520px) {
  .section-about .container.narrow {
    width: min(840px, 92vw);
  }
}

.section-about .services-catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 520px) {
  .section-about .services-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.75rem;
    align-items: stretch;
  }
}

.section-about .services-catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  padding: 1rem 0.75rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.48;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(184, 107, 107, 0.14);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .section-about .services-catalog-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
}

.section-about .services-catalog-name {
  display: block;
  font-weight: 700;
  color: var(--rose-dust);
  font-size: 0.95rem;
  line-height: 1.3;
}

.section-about .services-catalog-desc {
  display: block;
  color: var(--text-muted);
  font-size: 0.89rem;
  line-height: 1.52;
}

.services-catalog .reveal:nth-child(1) {
  transition-delay: 0s;
}
.services-catalog .reveal:nth-child(2) {
  transition-delay: 0.05s;
}
.services-catalog .reveal:nth-child(3) {
  transition-delay: 0.1s;
}
.services-catalog .reveal:nth-child(4) {
  transition-delay: 0.14s;
}
.services-catalog .reveal:nth-child(5) {
  transition-delay: 0.18s;
}
.services-catalog .reveal:nth-child(6) {
  transition-delay: 0.22s;
}
.services-catalog .reveal:nth-child(7) {
  transition-delay: 0.26s;
}
.services-catalog .reveal:nth-child(8) {
  transition-delay: 0.3s;
}

/* Founder */
.section-founder {
  background: var(--bg-page);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  position: relative;
}

@media (min-width: 1024px) {
  .founder-photo-frame {
    max-width: 320px;
  }

  .founder-name {
    font-size: clamp(2.5rem, 3vw, 3rem);
  }

  .prose p {
    font-size: 1.12rem;
  }
}

@media (max-width: 800px) {
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo-wrap {
    justify-self: center;
  }

  .founder-highlights {
    text-align: left;
    max-width: 36rem;
    margin-inline: auto;
  }

  .founder-bio.prose {
    text-align: left;
  }

  .founder-content .specialties-box {
    text-align: left;
  }

  .watermark-founder {
    display: block;
  }
}

@media (min-width: 801px) {
  .founder-content {
    text-align: left;
  }

  .watermark-founder {
    display: block;
    left: 0;
    transform: none;
    top: -0.25rem;
  }
}

.founder-photo-wrap {
  position: relative;
}

.founder-photo-frame {
  aspect-ratio: 3 / 4;
  max-width: 280px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 3px solid rgba(255, 255, 255, 0.85);
  outline: 2px solid rgba(184, 107, 107, 0.35);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.4s var(--ease-out);
}

.founder-photo-frame:hover {
  box-shadow: 0 28px 60px rgba(92, 36, 49, 0.2);
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.founder-content {
  position: relative;
  padding-top: 0.5rem;
}

.founder-name {
  font-size: clamp(2.15rem, 5vw, 2.85rem);
  color: var(--burgundy);
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.founder-role {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin: 0 0 1.2rem;
  font-weight: 600;
}

.founder-highlights {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.founder-highlights li {
  margin-bottom: 0.55rem;
}

.founder-bio {
  margin-bottom: 1.5rem;
}

.specialties-box {
  background: linear-gradient(145deg, var(--rose-dust), #8f2450);
  color: var(--white);
  padding: 1.6rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.specialties-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

.checklist {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.checklist li:last-child {
  margin-bottom: 0;
}

/* Team */
.section-team {
  background: linear-gradient(180deg, #ffd6e0 0%, var(--bg-soft) 50%, var(--bg-page) 100%);
}

.team-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.team-script {
  font-family: var(--font-script);
  font-size: clamp(2.25rem, 8vw, 3.25rem);
  color: var(--burgundy);
  margin: 0 0 0.2rem;
  line-height: 1;
}

.team-title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burgundy);
  margin: 0 0 0.5rem;
}

.team-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 28rem;
  margin-inline: auto;
  line-height: 1.55;
}

@media (min-width: 1024px) {
  .team-sub {
    font-size: 1.08rem;
    max-width: 36rem;
  }
}

.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .team-list {
    max-width: 820px;
    margin-inline: auto;
    gap: 1.75rem;
  }

  .team-row,
  .team-row-reverse {
    align-items: stretch;
    gap: 1.5rem;
  }

  .team-photo {
    width: 132px;
    height: 132px;
  }

  .team-card {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .team-name {
    font-size: 1.2rem;
  }

  .team-role {
    font-size: 0.95rem;
  }

  .team-note {
    font-size: 0.92rem;
  }
}

.team-list > .reveal:nth-child(1) {
  transition-delay: 0s;
}
.team-list > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.team-list > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.team-list > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.team-list > .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.team-row-reverse {
  flex-direction: row-reverse;
}

.team-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--rose-deep);
  box-shadow: 0 4px 20px rgba(196, 54, 90, 0.22);
  transition: transform 0.35s var(--ease-out);
  overflow: hidden;
  background: var(--bg-soft);
}

.team-row.is-visible .team-photo {
  animation: pulse-soft 2.5s ease-out 0.5s 1;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.team-card {
  flex: 1;
  min-width: 220px;
  background: linear-gradient(90deg, rgba(255, 240, 243, 0.55) 0%, var(--white) 14%);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184, 107, 107, 0.1);
  border-left: 4px solid var(--rose-dust);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-name {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--text);
}

.team-role {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-serif);
}

.team-note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .team-row,
  .team-row-reverse {
    flex-direction: column;
    text-align: center;
  }

  .team-card {
    width: 100%;
  }
}

/* Info */
.section-info {
  background: linear-gradient(155deg, #c43d60 0%, var(--burgundy) 38%, #4a1428 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.section-info .container {
  position: relative;
}

.section-title-light {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

.info-grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.info-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease-out), background 0.35s;
}

.info-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

.prose-list {
  margin: 0;
  padding-left: 1.15rem;
}

.prose-list li {
  margin-bottom: 0.55rem;
}

.prose-list li:last-child {
  margin-bottom: 0;
}

.info-quote {
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 auto 1.5rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.96);
  max-width: 40rem;
  font-family: var(--font-serif);
}

.info-cta-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 1.1rem;
  position: relative;
  z-index: 1;
}

.section-info .btn {
  position: relative;
  z-index: 1;
}

/* Location */
.section-location {
  background: var(--bg-page);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: minmax(280px, 0.95fr) 1.15fr;
    gap: 2.5rem 3rem;
    align-items: center;
  }

  .location-map {
    min-height: 340px;
  }

  .location-map iframe {
    min-height: 340px;
  }
}

@media (max-width: 800px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-text {
    text-align: center;
    padding-left: 0;
  }

  .address-block {
    margin-inline: auto;
  }

  .map-link {
    display: inline-block;
  }
}

@media (min-width: 801px) {
  .watermark-loc {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: rgba(184, 107, 107, 0.12);
    white-space: nowrap;
    pointer-events: none;
  }

  .location-text {
    padding-left: 3.5rem;
  }
}

.location-text {
  position: relative;
}

.section-location .section-title {
  margin-bottom: 1rem;
}

.address-block {
  font-style: normal;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.map-link {
  color: var(--rose-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(143, 78, 86, 0.35);
  transition: border-color 0.2s, color 0.2s;
}

.map-link:hover {
  border-bottom-color: var(--burgundy);
  color: var(--burgundy);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 107, 107, 0.22);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

/* Contact */
.section-contact {
  background: var(--bg-soft);
  text-align: center;
}

.contact-lead {
  color: var(--text-muted);
  margin: 0 0 1.6rem;
  max-width: 26rem;
  margin-inline: auto;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 28rem;
  line-height: 1.55;
}

.contact-hint code {
  font-size: 0.82em;
  background: rgba(184, 107, 107, 0.14);
  padding: 0.12rem 0.38rem;
  border-radius: 6px;
}

.contact-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 26rem;
  margin: 0 auto;
  line-height: 1.55;
}

.contact-mail-link {
  color: var(--burgundy-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-mail-link:hover {
  color: var(--burgundy);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #241c1e 0%, #1a1416 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.25rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo {
  border-radius: 12px;
  transition: transform 0.35s var(--ease-out);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-brand {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-weight: 600;
}

.footer-domain {
  margin: 0;
  font-size: 0.9rem;
}

.footer-domain a {
  color: #e8b4b8;
  text-decoration: none;
  font-weight: 600;
}

.footer-domain a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  max-width: 26rem;
  margin: 0.5rem 0 0;
  padding: 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-nav a:hover {
  color: #f5d0d4;
  text-decoration: underline;
}

.footer-top {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e8b4b8;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 180, 184, 0.4);
  padding-bottom: 2px;
}

.footer-top:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.footer-copy {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  opacity: 0.72;
}

/* Botão flutuante WhatsApp */
.fab-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0));
  z-index: 200;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.fab-whatsapp:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 3px;
}

.fab-whatsapp-icon {
  display: block;
}

@media (min-width: 900px) {
  .fab-whatsapp {
    right: 1.5rem;
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
    width: 3.75rem;
    height: 3.75rem;
  }

  .fab-whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}

@keyframes fab-nudge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .fab-whatsapp:not(:hover) {
    animation: fab-nudge 3s ease-in-out infinite;
    animation-delay: 2s;
  }

  .fab-whatsapp:hover {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fab-whatsapp {
    animation: none !important;
  }
}
