:root {
  --color-bg: #f7f1eb;
  --color-bg-alt: #ffffff;
  --color-bg-highlight: #f1e1dd;
  --color-primary: #734332;
  --color-primary-soft: #c44331;
  --color-text: #1c1c1c;
  --color-muted: #666666;
  --shadow-soft: 0 18px 45px rgba(16, 24, 40, 0.12);
  --radius-lg: 18px;
  --radius-full: 999px;
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  scroll-behavior: smooth;
}

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

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

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

/* TOPO */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
      to bottom,
      rgba(247, 241, 235, 0.92),
      rgba(247, 241, 235, 0.82)
    );
  border-bottom: 1px solid rgba(115, 67, 50, 0.08);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__title {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.brand__subtitle {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.96rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0;
  line-height: 1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(115, 67, 50, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(115, 67, 50, 0.1);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Remove o risco embaixo especificamente do botão "Agendar sessão" */
.nav__cta::after {
  display: none;
}

/* Em vez do risco, muda a cor do botão ao passar o mouse */
.nav__cta:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 14px 35px rgba(115, 67, 50, 0.25);
}

/* HERO */
.hero {
  padding: 4.5rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.highlight {
  color: var(--color-primary);
}

.hero__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 32rem;
  margin-bottom: 1.7rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero__location {
  font-size: 0.93rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.15s ease, border-color 0.15s ease;
}

.button--with-icon {
  gap: 10px;
}

.button--primary {
  background: linear-gradient(135deg, var(--color-primary), #8a5643);
  color: #fff;
  box-shadow: 0 14px 35px rgba(115, 67, 50, 0.25);
}

.button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(115, 67, 50, 0.32);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(115, 67, 50, 0.2);
  color: var(--color-primary);
}

.button--ghost:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.button--large {
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
}

.hero__image-card {
  position: relative;
}

.hero__image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 124, 110, 0.18);
}

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

.hero__floating-card {
  position: absolute;
  right: -10%;
  bottom: -10%;
  max-width: 260px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* SEÇÕES GENÉRICAS */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--highlight {
  background: var(--color-bg-highlight);
}

/* Fundo específico para determinadas seções */
#como-funciona {
  background: rgb(232, 199, 196);
}

.section__narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section__center {
  text-align: center;
}

.section h2 {
  font-size: 1.8rem;
  margin: 0 0 0.9rem;
  text-align: left;
}

.section__center h2 {
  text-align: center;
}

.section__intro {
  margin: 0 auto 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.section__closing {
  margin-top: 1.6rem;
  font-size: 1rem;
  color: var(--color-muted);
}

/* CARDS */
.cards {
  display: grid;
  gap: 1.6rem;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 124, 110, 0.16);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* STEPS / COMO FUNCIONA */
.steps {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(148, 124, 110, 0.16);
}

.step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.step__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.step__body p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* QUEM SOU EU */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 3rem;
  align-items: center;
}

.about__image img {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.about__content h2 {
  margin-bottom: 0.9rem;
}

.about__content p {
  font-size: 0.99rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin: 0 0 0.8rem;
}

.about__formation {
  margin-top: 1.2rem;
}

.about__formation h3 {
  font-size: 1.02rem;
  margin: 0 0 0.6rem;
}

.about__formation ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* AGENDAR / CONTATO */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__details {
  font-size: 0.98rem;
  color: var(--color-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 0.25rem 0;
  background: #151515;
  color: #f5f5f5;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
  text-align: center;
}

.footer__location {
  color: #b8b8b8;
}

/* RESPONSIVIDADE */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__image-card {
    order: -1;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .cards--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    grid-template-columns: minmax(0, 1fr);
  }

  .about__image {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .topbar__content {
    padding-inline: 1rem;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-inline: 0.5rem;
  }

  .cards--three {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__floating-card {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 3.2rem 0;
  }
}


