:root {
  --bg: #f3eee8;
  --bg-soft: #fbf7f2;
  --paper: #fffdfa;
  --ink: #241d18;
  --muted: #5d524a;
  --line: #d7c6b8;
  --earth: #6d4c41;
  --earth-dark: #4d352d;
  --earth-light: #a67c68;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 20px 40px rgba(45, 31, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6f0ea 0%, #efe7df 48%, #f6f0ea 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Lora", serif;
  letter-spacing: 0.005em;
  line-height: 1.18;
  margin: 0;
}

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

.container {
  width: min(1150px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  z-index: -1;
  filter: blur(75px);
  opacity: 0.35;
}

.shape-1 {
  width: 330px;
  height: 330px;
  top: -80px;
  right: -90px;
  background: #c9a691;
}

.shape-2 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -120px;
  background: #ae8772;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(109, 76, 65, 0.15);
  backdrop-filter: blur(10px);
  background: rgba(246, 240, 234, 0.88);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-weight: 500;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.6rem;
  padding: 5.2rem 0 3.2rem;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--earth);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  max-width: 15ch;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.1rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid var(--earth);
  background: var(--earth);
  color: #fff;
  padding: 0.72rem 1.18rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--earth-dark);
  border-color: var(--earth-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--earth);
}

.btn-sm {
  padding: 0.54rem 0.95rem;
  font-size: 0.92rem;
}

.keyline {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.photo-frame {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 14px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), rgba(242, 228, 217, 0.9) 55%, rgba(228, 209, 195, 0.75));
  box-shadow: 0 24px 52px rgba(45, 31, 25, 0.16);
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0;
  margin: 0;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  background: var(--bg-soft);
}

.section {
  padding: 3.3rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.8), rgba(241, 231, 224, 0.85));
  border-top: 1px solid rgba(109, 76, 65, 0.14);
  border-bottom: 1px solid rgba(109, 76, 65, 0.14);
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  max-width: 20ch;
}

.body-max {
  max-width: 74ch;
  color: var(--muted);
}

.callout-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.callout-row article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.callout-row h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.05rem;
}

.card h3 {
  font-size: 1.38rem;
  margin-bottom: 0.35rem;
}

.card ul,
.plan ul,
.exam-review ul {
  margin: 0.6rem 0;
  padding-left: 1.1rem;
}

.note {
  color: var(--earth-dark);
  font-weight: 600;
}

.plans-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.plans-cta {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}

.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  padding: 1rem;
}

.plan-tag {
  margin: 0;
  color: var(--earth);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.plan h3 {
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

.includes {
  color: var(--muted);
}

.featured {
  background: linear-gradient(170deg, #fffefd, #ecdacb);
  border-color: #c9ac97;
}

.badge {
  margin: 0;
  color: var(--earth-dark);
  font-weight: 700;
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.list-grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

.exam-review {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem;
}

.exam-review h3 {
  font-size: 1.45rem;
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.testimonials blockquote {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
}

.testimonials cite {
  display: block;
  margin-top: 0.6rem;
  color: var(--earth);
  font-style: normal;
  font-weight: 600;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #fffdfb, #ecdccf);
  padding: 1.2rem;
}

.calendly-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 1rem;
  display: grid;
  gap: 0.35rem;
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-cta {
  margin-top: 0.4rem;
}

.site-footer {
  border-top: 1px solid rgba(109, 76, 65, 0.15);
  padding: 1.15rem 0 1.8rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-signature {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

a:focus,
button:focus,
summary:focus {
  outline: 2px solid var(--earth);
  outline-offset: 2px;
}

@media (max-width: 1030px) {
  .hero,
  .callout-row,
  .grid-2,
  .plans-grid,
  .list-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

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

  .hero {
    gap: 1.6rem;
    padding: 3.9rem 0 2.4rem;
  }

  .photo-frame {
    width: min(360px, 88vw);
  }
}

@media (max-width: 780px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.5rem;
    background: #f9f4ee;
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 1.2rem;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

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

  .brand-name {
    max-width: 215px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .footer-signature {
    height: 32px;
  }
}

@media (min-width: 1200px) {
  .hero {
    gap: 3.2rem;
    padding: 5.6rem 0 3.7rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .section-head {
    margin-bottom: 1.25rem;
  }

  #diferenciais {
    padding-top: 3.1rem;
    padding-bottom: 3rem;
  }

  #diferenciais .section-head {
    margin-bottom: 1.2rem;
  }

  #diferenciais .section-head h2 {
    max-width: 24ch;
    font-size: clamp(2.05rem, 2.45vw, 2.9rem);
    line-height: 1.14;
  }

  #diferenciais .list-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.25rem;
    align-items: start;
  }

  #diferenciais .list-grid ul {
    max-width: 34ch;
    margin-top: 0.15rem;
    padding-left: 1.2rem;
  }

  #diferenciais .list-grid li {
    margin-bottom: 0.78rem;
  }

  #diferenciais .exam-review {
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
  }
}
