:root {
  --bg: #efefef;
  --card: #ece8e7;
  --card-strong: #d9d3d2;
  --ink: #4f4748;
  --ink-strong: #ffffff;
  --line: rgba(255, 255, 255, 0.72);
  --gold: #b39b85;
  --accent: #8e7561;
  --accent-2: #6f5d52;
  --soft: #faf7f5;
  --shadow: 0 18px 34px rgba(79, 70, 63, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 15%, rgba(205, 196, 191, 0.35), transparent 32%),
    radial-gradient(circle at 8% 76%, rgba(183, 175, 170, 0.28), transparent 38%),
    var(--bg);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
}

.site-shell {
  width: min(100%, 700px);
  background: linear-gradient(to bottom, #e8e8e8, #efefef);
  box-shadow: 0 24px 42px rgba(75, 66, 60, 0.2);
}

.inner-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 82vh;
  background-image: url("docs/images/fotoSiteNathalia.jpg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  padding: 2.2rem 1.4rem;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 35, 31, 0.12) 0%,
    rgba(55, 48, 45, 0.3) 40%,
    rgba(223, 222, 223, 0.8) 83%,
    rgba(235, 235, 236, 0.95) 100%
  );
}

.hero__nav {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 1.2rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
}

.hero__tag {
  color: #fff8f1;
  letter-spacing: 0.14em;
  font-size: 0.86rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(44, 35, 31, 0.3);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.1rem;
  height: 2rem;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fffdf8;
  margin: 0.3rem 0;
  border-radius: 10px;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list a {
  color: #fdf8f2;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  transition: background-color 180ms ease;
}

.menu-list a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 auto 3.2rem;
  text-align: center;
  color: #f8f6f3;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

.hero p {
  margin: 0.55rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  letter-spacing: 0.34em;
  font-weight: 300;
}

.hero__cta {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #fff;
  background: rgba(79, 62, 49, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  padding: 1.6rem 0 4.5rem;
}

.intro {
  width: min(92vw, 620px);
  margin: 0 auto 1.2rem;
  background: var(--soft);
  border: 1px solid #ddd4cf;
  border-radius: 16px;
  padding: 1rem 1.15rem;
}

.intro p {
  margin: 0;
  color: #645b5a;
  line-height: 1.45;
}

.services {
  width: min(92vw, 620px);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: grid;
  gap: 1.4rem;
}

.service-card {
  background: linear-gradient(130deg, var(--card) 0%, #dfdbda 100%);
  border-radius: var(--radius);
  border: 1px solid #b7ada8;
  border-left: 4px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(120, 109, 101, 0.12);
}

.service-card--reverse {
  background: linear-gradient(130deg, var(--card-strong) 0%, #cdc6c5 100%);
  border-left-color: var(--accent-2);
}

.service-card__text {
  padding: 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card h2 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 0.96;
  color: var(--accent-2);
}

.service-card:not(.service-card--reverse) h2 {
  color: var(--gold);
}

.service-card p {
  margin: 0;
  line-height: 1.45;
  color: #5c5859;
  font-size: 1.02rem;
}

.service-link {
  margin-top: 1rem;
  text-decoration: none;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.highlights {
  width: min(92vw, 620px);
  margin: 1.4rem auto 0;
  display: grid;
  gap: 0.85rem;
}

.highlights article {
  background: #f8f4f1;
  border: 1px solid #dfd5cf;
  border-radius: 14px;
  padding: 1rem;
}

.highlights h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #6e5f56;
}

.highlights p {
  margin: 0.45rem 0 0;
  color: #625a59;
  line-height: 1.45;
}

.cta {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.cta__button {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.08em;
  color: #f7f4f1;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow);
  padding: 0.9rem 1.3rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta__button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 21px 34px rgba(62, 57, 54, 0.27);
}

.site-footer {
  padding: 0.5rem 1rem 2rem;
  text-align: center;
  color: #7a7272;
}

.site-footer p {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.inner-hero {
  position: relative;
  padding: 4.8rem 1.3rem 2.2rem;
  min-height: 52vh;
  background:
    linear-gradient(to bottom, rgba(90, 72, 60, 0.55) 0%, rgba(60, 48, 40, 0.78) 100%),
    url("docs/images/fotoSiteNathalia.jpg") center 20% / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  color: #fff8f2;
}

.inner-hero__content h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.inner-hero__content p {
  margin: 0.5rem 0 0;
  max-width: 40ch;
  line-height: 1.45;
}

.inner-main {
  padding: 1.2rem 0 2.6rem;
}

.detail-card {
  width: min(92vw, 620px);
  margin: 0 auto 1rem;
  background: #f9f5f2;
  border: 1px solid #dfd5cf;
  border-radius: 18px;
  padding: 1.15rem;
}

.detail-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  color: #705f55;
}

.detail-card p {
  margin: 0.7rem 0 0;
  color: #5f5857;
  line-height: 1.5;
}

.detail-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: #5f5857;
  line-height: 1.5;
}

.detail-card .cta__button {
  display: block;
  margin-top: 1.2rem;
  text-align: center;
}

.about-intro p + p {
  margin-top: 0.85rem;
  border-top: 1px solid #e8ddd9;
  padding-top: 0.85rem;
}

.about-callout__tag {
  margin-top: 1rem !important;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== PAGE TRANSITIONS ===== */
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-14px);
  }
}

.site-shell.is-entering {
  animation: pageIn 0.38s ease forwards;
}

.site-shell.is-leaving {
  animation: pageOut 0.28s ease forwards;
  pointer-events: none;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
  position: fixed;
  left: 1.25rem;
  bottom: 1.6rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

.wa-float__icon {
  flex-shrink: 0;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.wa-float__icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: #fff;
}

.wa-float__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  background: #25d366;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 0 999px 999px 0;
  padding: 0;
  opacity: 0;
  margin-left: -0.6rem;
  padding-left: 0.6rem;
  height: 3.1rem;
  line-height: 3.1rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
  transition: max-width 300ms ease, opacity 260ms ease, padding-right 280ms ease;
}

.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
  max-width: 220px;
  opacity: 1;
  padding-right: 1.1rem;
}

.wa-float:hover .wa-float__icon,
.wa-float:focus-visible .wa-float__icon {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  border-radius: 50% 0 0 50%;
}

@media (max-width: 620px) {
  .wa-float {
    left: 0.85rem;
    bottom: 1.1rem;
  }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.09s; }
.reveal:nth-child(3) { transition-delay: 0.18s; }
.reveal:nth-child(4) { transition-delay: 0.27s; }
.reveal:nth-child(5) { transition-delay: 0.36s; }

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 500;
  font-style: italic;
  color: #705f55;
  margin: 0 0 1.3rem;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  width: min(92vw, 620px);
  margin: 2rem auto 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.portfolio-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid #c9c2bf;
  box-shadow: 0 6px 20px rgba(120, 109, 101, 0.1);
}

.portfolio-item__img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}

.portfolio-item figcaption {
  padding: 0.45rem 0.6rem;
  font-size: 0.77rem;
  color: #6d6261;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  width: min(92vw, 620px);
  margin: 2rem auto 0;
}

.testimonial-list {
  display: grid;
  gap: 0.85rem;
}

.testimonial {
  margin: 0;
  background: #f9f5f2;
  border: 1px solid #dfd5cf;
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.testimonial p {
  margin: 0;
  font-style: italic;
  color: #5f5655;
  line-height: 1.55;
}

.testimonial footer {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #8a7c78;
}

.testimonial strong {
  color: var(--accent-2);
}

/* ===== FAQ ===== */
.faq {
  width: min(92vw, 620px);
  margin: 2rem auto 0;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  background: #f9f5f2;
  border: 1px solid #dfd5cf;
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--accent-2);
  cursor: pointer;
  user-select: none;
  gap: 0.5rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 230ms ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 1.1rem;
  color: #5f5655;
  line-height: 1.55;
  font-size: 0.92rem;
  transition: max-height 320ms ease, padding 230ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding: 0 1.1rem 0.9rem;
}

@media (max-width: 920px) {
  .site-shell {
    width: 100%;
    box-shadow: none;
  }

  .service-card__text {
    padding: 1.35rem 1.35rem 1.1rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    z-index: 30;
  }

  .menu-list {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    min-width: 210px;
    background: rgba(64, 50, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 0.7rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  }

  .menu-list.is-open {
    display: block;
  }

  .menu-list li + li {
    margin-top: 0.25rem;
  }

  .menu-list a {
    display: block;
    font-size: 0.88rem;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 76vh;
    background-size: cover;
    padding-inline: 1rem;
  }

  .hero__nav {
    left: 1rem;
    right: 1rem;
  }

  .hero__content {
    margin-bottom: 1.9rem;
  }

  .services {
    width: min(95vw, 680px);
    margin-top: 0;
  }

  .service-card {
    min-height: 0;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .cta__button {
    width: 100%;
    text-align: center;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__tag {
    font-size: 0.78rem;
  }
}

/* ── Como funciona ─────────────────────────── */
.how-it-works {
  width: min(92vw, 620px);
  margin: 1.4rem auto 0;
}

.how-it-works .section-title {
  margin-bottom: 1.2rem;
}

.how-it-works__subtitle {
  text-align: center;
  color: #645b5a;
  margin: -0.8rem 0 1.4rem;
  font-size: 0.95rem;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.how-it-works__step {
  background: var(--soft);
  border: 1px solid #ddd4cf;
  border-radius: 14px;
  padding: 1.2rem 1rem;
  text-align: center;
}

.how-it-works__number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.how-it-works__step h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #6e5f56;
}

.how-it-works__step p {
  margin: 0;
  font-size: 0.87rem;
  color: #625a59;
  line-height: 1.45;
}

.how-it-works__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

@media (max-width: 600px) {
  .how-it-works__steps {
    grid-template-columns: 1fr;
  }
}

/* ── Pack Tiers ────────────────────────────── */
.pack-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.pack-tier {
  background: var(--card);
  border: 1px solid #c5bbb7;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pack-tier--featured {
  transform: scale(1.04);
  box-shadow: var(--shadow);
  border-color: var(--gold);
  background: linear-gradient(130deg, var(--card) 0%, #dfdbda 100%);
}

.pack-tier__badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.pack-tier h4 {
  margin: 0 0 0.3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #6e5f56;
}

.pack-tier__composition {
  font-size: 0.82rem;
  color: #7a7272;
  margin: 0 0 0.6rem;
}

.pack-tier__price {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .pack-tiers {
    grid-template-columns: 1fr;
  }

  .pack-tier--featured {
    transform: none;
  }
}

.pack-tiers--two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
  .pack-tiers--two {
    grid-template-columns: 1fr;
  }
}

/* ── Tabela de preços ──────────────────────── */
.price-summary {
  margin-top: 2.2rem;
}

.price-summary h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.price-table th,
.price-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd4cf;
}

.price-table thead th {
  background: var(--card-strong);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table td:last-child {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* ── Preço no detail-card ──────────────────── */
.detail-card__price {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

/* ── Acessibilidade ────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
