/* ============================================
   TOKENS
============================================ */
:root {
  --lav-50:  #F6F1FF;
  --lav-100: #EDE1FF;
  --lav-200: #DECBFF;
  --lav-300: #C6A9FF;
  --lav-600: #8B5CF6;
  --lav-700: #7C3AED;

  --ink-900: #2D2440;
  --ink-600: #5B4E77;
  --ink-400: #8578A0;

  --cream: #FFFDFB;
  --line: #D8C6F5;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  --container: 1120px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22,.9,.32,1);
}

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 { font-family: var(--font-display); margin: 0; color: var(--ink-900); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lav-700);
  font-weight: 600;
  margin: 0 0 14px;
}
.eyebrow--center { text-align: center; }
.eyebrow--onlight { color: var(--lav-200); }

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.section-title--left { text-align: left; }
.section-title--onlight { color: var(--cream); max-width: 720px; margin-left: auto; margin-right: auto; }

.section-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--ink-600);
  font-size: 17px;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--lav-600);
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(124, 58, 237, .55);
}
.btn--primary:hover {
  background: var(--lav-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(124, 58, 237, .6);
}
.btn--ghost {
  background: transparent;
  color: var(--lav-700);
  border: 1.5px solid var(--lav-300);
}
.btn--ghost:hover {
  background: var(--lav-50);
  border-color: var(--lav-600);
  transform: translateY(-2px);
}
.btn--block { width: 100%; }

.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2.5px solid var(--lav-700);
  outline-offset: 3px;
}

/* ============================================
   HEADER / NAV
============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 253, 251, .85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -.01em;
  color: var(--ink-900);
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-600);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--lav-600);
  transition: width .25s var(--ease);
}
.nav__link:hover { color: var(--ink-900); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  background: var(--lav-600);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: var(--lav-700); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ink-900);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--lav-50) 0%, var(--lav-100) 45%, var(--lav-200) 100%);
}

.hero__breath {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  pointer-events: none;
}
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--lav-300);
  opacity: .55;
  animation: breathe 7s var(--ease) infinite;
}
.ring--1 { animation-delay: 0s; }
.ring--2 { inset: 8%; animation-delay: -2.3s; }
.ring--3 { inset: 16%; animation-delay: -4.6s; background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.5), transparent 60%); }

@keyframes breathe {
  0%, 100% { transform: scale(.92); opacity: .35; }
  50% { transform: scale(1.04); opacity: .7; }
}

.hero__grid { position: relative; z-index: 2; }
.hero__content { max-width: 620px; padding: 140px 0 100px; }

.hero__title {
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink-900);
  margin-bottom: 26px;
}
.hero__title em {
  font-style: italic;
  color: var(--lav-700);
  font-weight: 400;
}

.hero__subtitle {
  font-size: 22px;
  color: var(--ink-600);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--ink-600);
  border-radius: 20px;
  opacity: .6;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--ink-600);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ============================================
   SERVIÇOS
============================================ */
.services { padding: 130px 0; background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 940px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--lav-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.price-card--highlight {
  background: linear-gradient(160deg, var(--lav-100), var(--lav-200));
  border-color: var(--lav-300);
}

.price-card__badge {
  position: absolute;
  top: 28px;
  right: 36px;
  background: var(--lav-600);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-card__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.price-card__desc {
  color: var(--ink-600);
  font-size: 15px;
  margin: 0 0 26px;
  min-height: 66px;
}

.price-tabs {
  display: inline-flex;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 24px;
  width: fit-content;
}
.price-tab {
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-600);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.price-tab.is-active {
  background: var(--ink-900);
  color: #fff;
}

.price-panel { margin-bottom: 8px; }

.price-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 6px;
}
.price-value span {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-400);
}

.price-detail {
  font-size: 14px;
  color: var(--ink-600);
  margin: 0 0 16px;
}

.price-methods {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink-600);
}
.price-methods li { display: flex; align-items: center; gap: 10px; }

.tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.tag--pix { background: var(--lav-600); color: #fff; }
.tag--card { background: var(--cream); color: var(--ink-900); border: 1px solid var(--line); }

.price-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-600);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.price-features li { padding-left: 22px; position: relative; }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lav-600);
}

.price-card > .btn { margin-top: auto; }

/* ============================================
   SOBRE MIM
============================================ */
.about {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--lav-50);
}

.about__blob {
  position: absolute;
  top: -10%;
  left: -12%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 35% 35%, var(--lav-200), transparent 70%);
  filter: blur(40px);
  opacity: .8;
  border-radius: 43% 57% 65% 35% / 45% 40% 60% 55%;
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}

.portrait-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px dashed var(--lav-300);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.portrait-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--lav-300), var(--lav-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 20px 44px -16px rgba(124, 58, 237, .5);
}

.about__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-900);
  line-height: 1.5;
  margin: 0 0 22px;
}
.about__text {
  color: var(--ink-600);
  font-size: 16px;
  margin: 0 0 30px;
}

.badge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-900);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ============================================
   CONTATO
============================================ */
.contact {
  background: var(--ink-900);
  padding: 120px 0;
}
.contact__inner { text-align: center; }

.contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact__ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lav-100);
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 8px;
  transition: color .2s;
}
.contact__ig svg { width: 22px; height: 22px; }
.contact__ig:hover { color: #fff; }

/* ============================================
   DÚVIDAS / ACCORDION
============================================ */
.faq { padding: 130px 0 150px; background: var(--cream); }

.accordion {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.accordion__item { border-bottom: 1px solid var(--line); }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
}

.accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--lav-700);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion__icon::before { width: 16px; height: 2px; }
.accordion__icon::after { width: 2px; height: 16px; transition: transform .3s var(--ease); }
.accordion__item.is-open .accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.accordion__panel p {
  margin: 0 0 26px;
  padding-right: 40px;
  color: var(--ink-600);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 26px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-400);
}
.footer__inner a { color: var(--lav-200); font-weight: 600; }
.footer__inner a:hover { color: #fff; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .about__grid .badge-list { justify-content: center; }
  .portrait-ring { margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100svh;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -12px 0 40px -20px rgba(0,0,0,.2);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__cta { margin-top: 6px; }

  .hero__breath { right: -30%; opacity: .8; }
  .hero__content { padding: 120px 0 90px; }

  .contact__actions { flex-direction: column; gap: 18px; }
}

@media (max-width: 480px) {
  .price-card { padding: 32px 24px; }
  .services, .about, .faq { padding-top: 96px; padding-bottom: 96px; }
  .contact { padding: 90px 0; }
}
@media (max-width: 429px) {
  .price-card__badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
}
