:root {
  --ink: #1d1a39;
  --muted: #6e2350;
  --paper: #f8dfdc;
  --cream: #e8bcb9;
  --mist: #f3cfca;
  --sage: #451962;
  --sage-dark: #1d1a39;
  --rose: #a43e5a;
  --rose-dark: #6e2350;
  --clay: #f39f5a;
  --gold: #f39f5a;
  --line: rgba(110, 35, 80, 0.18);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(29, 26, 57, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito Sans", "Lato", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(243, 159, 90, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(110, 35, 80, 0.14);
  background: rgba(232, 188, 185, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
}

.brand {
  min-width: 0;
  text-decoration: none;
}

.brand strong {
  display: block;
  color: var(--sage-dark);
  font-family: "Varela Round", "Nunito Sans", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.15;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  border-radius: 6px;
  padding: 8px 2px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--rose-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--rose-dark);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.button:hover {
  background: var(--rose);
  transform: translateY(-1px);
}

.whatsapp-button {
  font-weight: 700;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--rose-dark);
}

.button.secondary:hover {
  border-color: var(--rose);
  background: rgba(232, 188, 185, 0.42);
}

.button.sage {
  background: var(--sage-dark);
}

.button.sage:hover {
  background: var(--sage);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 34px rgba(20, 82, 46, 0.28);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(20, 82, 46, 0.34);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float::after {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 159, 90, 0.38), transparent 30%),
    radial-gradient(circle at 8% 86%, rgba(164, 62, 90, 0.23), transparent 32%),
    linear-gradient(135deg, #e8bcb9 0%, #f1c5bb 48%, #f39f5a 125%);
}

.hero::before {
  position: absolute;
  right: min(5vw, 70px);
  top: 96px;
  z-index: -1;
  width: clamp(230px, 28vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(110, 35, 80, 0.22);
  border-radius: 42% 58% 52% 48% / 48% 40% 60% 52%;
  content: "";
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.84fr);
  gap: clamp(26px, 5vw, 70px);
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: min(760px, calc(100vh - 79px));
  padding: clamp(54px, 8vw, 96px) 0 clamp(48px, 7vw, 86px);
  align-items: center;
}

.hero-inner > *,
.two-column > *,
.contact-panel > *,
.feature-split > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.36rem, 6vw, 4.45rem);
  font-weight: 400;
  text-wrap: balance;
}

h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 400;
}

h3 {
  font-size: 1.16rem;
}

.nowrap {
  white-space: nowrap;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(29, 26, 57, 0.78);
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-pill {
  border: 1px solid rgba(110, 35, 80, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 9px 13px;
  color: var(--sage-dark);
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(29, 26, 57, 0.08);
}

.hero-media {
  position: relative;
}

.image-card,
.visual-placeholder {
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.74);
  border-radius: 46% 54% 42% 58% / 58% 42% 58% 42%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), transparent 48%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.52), transparent 30%),
    linear-gradient(135deg, #451962, #6e2350 48%, #f39f5a);
  box-shadow: var(--shadow);
}

.hero-visual {
  height: clamp(430px, 49vw, 620px);
  min-height: 0;
}

.visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-placeholder:has(img)::after {
  display: none;
}

.visual-placeholder::after {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: inherit;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.36), transparent 19%),
    linear-gradient(180deg, transparent 0%, rgba(29, 26, 57, 0.3) 100%);
  color: rgba(255, 255, 255, 0.9);
  content: "imagem substituivel";
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card {
  position: absolute;
  right: -10px;
  bottom: 34px;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(248, 223, 220, 0.9);
  box-shadow: 0 18px 46px rgba(29, 26, 57, 0.2);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.hero-card strong {
  display: block;
  color: var(--sage-dark);
  font-size: 0.95rem;
}

.hero-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 90px) 0;
  scroll-margin-top: 112px;
}

.section.soft-band {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, rgba(232, 188, 185, 0.78), rgba(248, 223, 220, 0.96));
}

.section.soft-band > .section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.two-column,
.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature {
  position: relative;
  border: 1px solid rgba(110, 35, 80, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  padding: 18px 18px 18px 48px;
  box-shadow: 0 10px 28px rgba(29, 26, 57, 0.08);
}

.feature::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.feature strong {
  display: block;
  margin-bottom: 4px;
}

.feature span {
  color: var(--muted);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.steps::before {
  position: absolute;
  top: 46px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 35, 80, 0.28), transparent);
  content: "";
}

.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(29, 26, 57, 0.1);
}

.steps .card {
  position: relative;
  overflow: hidden;
  border-color: rgba(110, 35, 80, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 188, 185, 0.55)),
    radial-gradient(circle at 88% 8%, rgba(243, 159, 90, 0.2), transparent 34%);
  padding: 28px;
  box-shadow: 0 22px 48px rgba(29, 26, 57, 0.13);
}

.steps .card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(110, 35, 80, 0.18);
  border-radius: 42% 58% 52% 48% / 48% 42% 58% 52%;
  content: "";
}

.steps .card h3 {
  position: relative;
  z-index: 1;
  color: var(--sage-dark);
  font-family: "Varela Round", "Nunito Sans", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 400;
}

.steps .card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(110, 35, 80, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #e8bcb9, #f39f5a);
  color: var(--rose-dark);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(29, 26, 57, 0.13);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

#avaliacoes {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1160px) / 2));
  padding-left: max(16px, calc((100% - 1160px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 159, 90, 0.18), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(164, 62, 90, 0.24), transparent 28%),
    linear-gradient(135deg, #1d1a39 0%, #451962 54%, #6e2350 100%);
}

#avaliacoes .section-heading .eyebrow {
  color: #f39f5a;
}

#avaliacoes .section-heading h2 {
  color: #e8bcb9;
}

#avaliacoes .section-heading p {
  color: rgba(232, 188, 185, 0.78);
}

#avaliacoes .card {
  border-color: rgba(232, 188, 185, 0.22);
  background: rgba(232, 188, 185, 0.94);
  box-shadow: 0 22px 52px rgba(29, 26, 57, 0.3);
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.quote {
  margin: 14px 0;
  color: var(--muted);
  font-size: 1rem;
}

.reviewer {
  color: var(--ink);
  font-weight: 900;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.about-photo {
  position: relative;
  min-height: clamp(360px, 43vw, 560px);
  overflow: hidden;
  border: 10px solid rgba(232, 188, 185, 0.76);
  border-radius: 54% 46% 48% 52% / 42% 58% 42% 58%;
  background:
    radial-gradient(circle at 50% 32%, rgba(243, 159, 90, 0.28), transparent 24%),
    linear-gradient(145deg, #451962 0%, #6e2350 46%, #a43e5a 100%);
  box-shadow: var(--shadow);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 26px;
  background: linear-gradient(180deg, transparent 45%, rgba(29, 26, 57, 0.28));
  color: rgba(232, 188, 185, 0.92);
  content: "sua foto aqui";
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo:has(img)::after {
  display: none;
}

.about-copy {
  max-width: 720px;
}

.about-copy p:not(.eyebrow) {
  color: rgba(29, 26, 57, 0.78);
  font-size: 1.06rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  margin-top: 34px;
}

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

.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--muted);
}

.map-box {
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #e8bcb9;
  box-shadow: 0 14px 34px rgba(29, 26, 57, 0.1);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #1d1a39;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  color: rgba(232, 188, 185, 0.82);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-inner,
  .two-column,
  .feature-split,
  .about-profile,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-media {
    max-width: 620px;
  }

  .hero-visual {
    height: clamp(360px, 74vw, 520px);
  }

  .about-photo {
    max-width: 520px;
    min-height: 420px;
  }

  .steps,
  .reviews {
    grid-template-columns: 1fr;
  }

  .steps::before {
    top: 8%;
    bottom: 8%;
    left: 23px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(110, 35, 80, 0.3), transparent);
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(1160px, calc(100% - 24px));
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 12px 14px;
    overflow: visible;
    font-size: 0.9rem;
    text-align: center;
  }

  .nav-links .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-inner,
  .section,
  .section.soft-band > .section-inner,
  .footer-inner {
    width: min(1160px, calc(100% - 24px));
  }

  .hero-inner {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.1;
    text-wrap: auto;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .hero-visual {
    height: 340px;
  }

  .about-photo {
    min-height: 340px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    height: 54px;
    gap: 10px;
    border-radius: 8px;
  }

  .whatsapp-float::before {
    content: "Agendar pelo WhatsApp";
    font-size: 0.98rem;
    font-weight: 700;
  }

  .whatsapp-float::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
