:root {
  --paper: #fffaf2;
  --paper-soft: #f7efe4;
  --sage: #8ca88d;
  --sage-deep: #4d715d;
  --clay: #c28a68;
  --rose: #e9c9bd;
  --ink: #2d332d;
  --muted: #6f766d;
  --line: rgba(77, 113, 93, 0.18);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(77, 74, 60, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 22px clamp(20px, 5vw, 64px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 250, 242, 0.12);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-action:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 250, 242, 0.2);
}

.header-action svg,
.brand-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(20px, 7vw, 96px) 74px;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("./assets/ines.png");
  background-position: 82% center;
  background-size: cover;
  transform: scale(1);
  animation: quietZoom 16s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(29, 39, 32, 0.86), rgba(29, 39, 32, 0.58) 42%, rgba(29, 39, 32, 0.2)),
    linear-gradient(0deg, rgba(30, 38, 32, 0.58), rgba(30, 38, 32, 0.14));
}

.hero-content {
  position: relative;
  max-width: 680px;
  animation: riseIn 900ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero-hook {
  color: #f5d7c4;
}

.hero-hook {
  max-width: 580px;
  margin: 0 0 14px;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 9vw, 6.9rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6vw, 5.1rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.3;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.hero-trust {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: var(--white);
  color: var(--sage-deep);
}

.button.secondary {
  border: 1px solid currentColor;
  color: var(--white);
}

.section {
  padding: clamp(72px, 11vw, 140px) clamp(20px, 7vw, 96px);
}

.benefit-grid svg {
  width: 24px;
  height: 24px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.section-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
}

.portrait-panel {
  margin: 0;
}

.portrait-panel img {
  width: 100%;
  height: clamp(460px, 62vw, 680px);
  object-fit: cover;
  border-radius: 0 120px 0 120px;
  box-shadow: var(--shadow);
}

.center-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.center-heading h2 {
  margin-bottom: 0;
}

.benefits {
  background: var(--paper-soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 270px;
  padding: 34px;
  background: var(--paper);
  transition: background 180ms ease, transform 180ms ease;
}

.benefit-grid article:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.benefit-grid svg {
  margin-bottom: 42px;
  color: var(--clay);
}

.benefit-grid p,
.process-steps p,
.service-heading p,
.pack-copy p,
.booking p {
  color: var(--muted);
}

.experience,
.pack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--sage-deep);
  color: var(--white);
}

.experience-image {
  background-image: url("./assets/quadro.jpeg");
}

.pack-image {
  background-image: url("./assets/mulher.jpeg");
}

.experience-image,
.pack-image {
  min-height: 480px;
  background-position: center;
  background-size: cover;
}

.experience-copy,
.pack-copy {
  align-self: center;
  padding: clamp(52px, 8vw, 96px);
}

.experience-copy p,
.pack-copy p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.76);
}

.service {
  background: var(--paper);
}

.astrology {
  background: var(--paper-soft);
}

.astrology-image {
  margin: 0 0 clamp(36px, 6vw, 72px);
}

.astrology-image img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  border-radius: 0 96px 0 96px;
  box-shadow: var(--shadow);
}

.service-heading {
  max-width: 850px;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.service-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-details div {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper-soft);
  padding: 24px;
}

.service-details span,
.pack-price span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-details strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  text-align: right;
}

.technique-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technique-list li {
  border-bottom: 1px solid var(--line);
  padding: 15px 0 17px;
  color: var(--sage-deep);
}

.technique-list strong {
  display: block;
  font-weight: 700;
}

.technique-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.astrology-layout {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

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

.astrology-copy > p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.insight-list li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--sage-deep);
  font-weight: 700;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.note-grid article {
  background: var(--paper);
  padding: 24px;
}

.note-grid h3 {
  color: var(--ink);
}

.note-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}

.process-steps article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.process-steps span {
  display: block;
  margin-bottom: 44px;
  color: var(--clay);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.pack {
  background: #586f5d;
}

.pack-copy h2 {
  max-width: 720px;
}

.pack-duration,
.pack-about {
  font-weight: 700;
}

.pack-subtitle {
  margin: 30px 0 8px;
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pack-about {
  margin-top: 24px;
}

.pack ul {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.pack-feature-list {
  margin-bottom: 26px !important;
}

.pack li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
}

.pack-price-inline {
  margin-bottom: 42px;
}

.pack-sessions {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: 30px;
}

.pack-sessions article {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 20px;
}

.pack-sessions span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pack-sessions h3 {
  color: var(--white);
}

.pack-sessions p {
  margin-bottom: 0;
}

.pack-include {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 800;
}

.pack-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  max-width: 760px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pack-highlights article {
  padding: 22px;
  background: rgba(255, 250, 242, 0.06);
}

.pack-highlights h3 {
  color: var(--white);
}

.pack-highlights p {
  margin-bottom: 0;
}

.pack-sessions ul {
  gap: 8px;
  margin: 14px 0 0;
}

.pack-sessions li {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.pack-price {
  display: inline-grid;
  gap: 2px;
  border-left: 2px solid var(--rose);
  padding-left: 18px;
}

.pack-price span {
  color: rgba(255, 255, 255, 0.66);
}

.pack-price strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.8rem;
  line-height: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
}

blockquote {
  min-height: 220px;
  margin: 0;
  background: var(--paper-soft);
  padding: 34px;
  color: var(--sage-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.pricing {
  background: var(--paper-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.pricing-grid article {
  background: var(--paper);
  padding: clamp(26px, 4vw, 42px);
}

.pricing-grid h3 {
  margin-bottom: 8px;
  color: var(--sage-deep);
  font-size: 1.04rem;
}

.pricing-grid p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-grid ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.pricing-grid li:first-child {
  padding-top: 0;
}

.pricing-grid span {
  color: var(--ink);
  font-weight: 700;
}

.pricing-grid strong {
  color: var(--sage-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.pricing-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin: 0 clamp(20px, 7vw, 96px) clamp(48px, 7vw, 80px);
  border-radius: 44px;
  background:
    linear-gradient(120deg, rgba(77, 113, 93, 0.9), rgba(140, 168, 141, 0.78)),
    url("https://images.unsplash.com/photo-1476611338391-6f395a0ebc7b?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: var(--white);
  padding: clamp(42px, 7vw, 82px);
}

.booking h2 {
  margin-bottom: 16px;
}

.booking p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(20px, 7vw, 96px) 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.footer-brand p {
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--sage-deep);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(77, 113, 93, 0.42);
  background: var(--paper-soft);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quietZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .site-header {
    align-items: flex-start;
  }

  .header-action {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .header-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .benefit-grid,
  .process-steps,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .service-layout,
  .astrology-layout,
  .experience,
  .pack {
    grid-template-columns: 1fr;
  }

  .note-grid {
    grid-template-columns: 1fr;
  }

  .pack-highlights {
    grid-template-columns: 1fr;
  }

  .pack-image {
    order: -1;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 14px 0;
  }

  .brand {
    max-width: 142px;
    font-size: 1.16rem;
    line-height: 1;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-action {
    width: 36px;
    min-height: 36px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 96px 16px 26px;
  }

  .hero-bg {
    background-color: #27362d;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(24, 32, 27, 0.18) 0%, rgba(24, 32, 27, 0.28) 30%, rgba(24, 32, 27, 0.9) 58%, rgba(24, 32, 27, 0.96) 100%),
      linear-gradient(90deg, rgba(24, 32, 27, 0.46), rgba(24, 32, 27, 0.2));
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-hook {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .hero-lead {
    margin-bottom: 10px;
    font-size: 1.28rem;
  }

  .hero-copy {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .hero-trust {
    margin-bottom: 18px;
    font-size: 0.83rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .benefit-grid,
  .process-steps,
  .testimonial-grid,
  .pricing-grid,
  .technique-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .portrait-panel img {
    height: 430px;
    border-radius: 0 80px 0 80px;
  }

  .service-details div {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .service-details strong {
    text-align: left;
  }

  .booking {
    border-radius: 28px;
  }

  .button {
    width: 100%;
  }

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

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 48px;
    height: 48px;
  }

  .footer-social {
    width: 100%;
  }

  .footer-social a {
    flex: 1;
  }
}
