/* Camila Imamura — identidade: #384531 / #AF6B39 */
:root {
  --brand: #384531;
  --accent: #af6b39;
  --accent-hover: #94582e;
  --bg: #f7f4ef;
  --bg-alt: #efe9e0;
  --surface: #ffffff;
  --text: #2a3226;
  --muted: #5c6656;
  --line: rgba(56, 69, 49, 0.14);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(56, 69, 49, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brand);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.15rem;
  max-width: 38rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--brand {
  background: var(--brand);
  color: #fff;
}

.btn--brand:hover {
  background: #2c3827;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 0.7rem 0;
}

/* Sobre o hero escuro: texto claro */
.site-header .nav__wordmark strong {
  color: #fff;
}

.site-header .nav__wordmark small {
  color: #e8c4a8;
}

.site-header .nav__logo img {
  filter: brightness(0) invert(1);
}

.site-header .nav__links a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header .nav__links a:hover {
  color: #fff;
  opacity: 1;
}

.site-header .nav__toggle span {
  background: #fff;
}

.site-header.is-scrolled,
.site-header--solid {
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.5rem 0;
}

.site-header.is-scrolled .nav__wordmark strong,
.site-header--solid .nav__wordmark strong {
  color: var(--brand);
}

.site-header.is-scrolled .nav__wordmark small,
.site-header--solid .nav__wordmark small {
  color: var(--accent);
}

.site-header.is-scrolled .nav__logo img,
.site-header--solid .nav__logo img {
  filter: none;
}

.site-header.is-scrolled .nav__links a,
.site-header--solid .nav__links a {
  color: var(--brand);
}

.site-header.is-scrolled .nav__links a:hover,
.site-header--solid .nav__links a:hover {
  color: var(--accent);
}

.site-header.is-scrolled .nav__toggle span,
.site-header--solid .nav__toggle span {
  background: var(--brand);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

.nav__logo img {
  display: block;
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.3s ease;
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.1;
  min-width: 0;
}

.nav__wordmark strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.nav__wordmark small {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

@media (max-width: 380px) {
  .nav__wordmark small {
    display: none;
  }
}

.nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.4rem;
}

.nav__links a {
  font-size: 0.92rem;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  transition: background 0.3s ease;
}

.nav > .btn {
  display: none;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }

  .nav__toggle {
    display: none;
  }

  .nav > .btn {
    display: inline-flex;
  }
}

.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.4rem;
}

.nav__mobile.is-open {
  display: block;
}

.nav__mobile a {
  display: block;
  padding: 0.7rem 0;
  color: var(--brand);
  border-bottom: 1px solid var(--line);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(42, 50, 38, 0.72) 0%,
      rgba(56, 69, 49, 0.78) 45%,
      rgba(42, 50, 38, 0.88) 100%
    ),
    url("../assets/photos/camila-01.jpg") center 18% / cover no-repeat;
}

.hero__content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 6.5rem 0 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
}

.hero__brand {
  display: block;
  height: 88px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  opacity: 0.96;
  animation: rise 0.9s ease both;
}

.hero__copy {
  width: 100%;
  animation: rise 0.9s ease 0.1s both;
}

.hero h1 {
  color: #fff;
  max-width: none;
  font-size: clamp(2.15rem, 8.2vw, 3.85rem);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-inline: auto;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero__actions .btn {
  width: 100%;
}

@media (min-width: 800px) {
  .hero {
    align-items: end;
  }

  .hero__bg {
    background:
      linear-gradient(
        105deg,
        rgba(42, 50, 38, 0.92) 0%,
        rgba(56, 69, 49, 0.78) 42%,
        rgba(56, 69, 49, 0.35) 68%,
        rgba(175, 107, 57, 0.22) 100%
      ),
      url("../assets/photos/camila-01.jpg") 72% 18% / cover no-repeat;
  }

  .hero__content {
    width: min(100% - 2.5rem, var(--max));
    padding: 8rem 0 5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
    align-items: center;
    justify-items: start;
    text-align: left;
    gap: 2.75rem 3.25rem;
  }

  .hero__brand {
    order: 2;
    height: clamp(150px, 18vw, 220px);
    max-width: 240px;
    margin: 0;
    object-position: right center;
    justify-self: end;
  }

  .hero__copy {
    order: 1;
  }

  .hero h1 {
    max-width: 16ch;
  }

  .hero .lead {
    margin-inline: 0;
    font-size: 1.15rem;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
  }

  .hero__actions .btn {
    width: auto;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Split / text blocks */
.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }

  .split--reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .split--reverse .split__media {
    order: -1;
  }
}

.check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.online-box {
  margin-top: 2.75rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

.online-box h3 {
  margin-bottom: 0.35rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.pill {
  font-size: 0.86rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  color: var(--brand);
  background: var(--surface);
}

/* Expect / Don't */
.expect-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .expect-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.expect-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.expect-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}

.expect-list--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.expect-list--no li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

/* About */
.about-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
  border: 0;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.crn {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Testimonials */
.quotes {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .quotes {
    grid-template-columns: 1fr 1fr;
  }
}

.quote {
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--accent);
  padding-top: 1.25rem;
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--brand);
  font-style: italic;
}

.quote footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

/* FAQ */
.faq {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brand);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--accent);
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0.85rem 0 0.2rem;
  max-width: 48rem;
}

/* Investment / CTA */
.invest-panel,
.final-cta {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--brand);
  margin: 0.5rem 0 0.25rem;
}

.final-cta-band {
  background: var(--brand);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.final-cta-band h2,
.final-cta-band p {
  color: #fff;
}

.final-cta-band p {
  opacity: 0.88;
}

/* Footer */
.site-footer {
  background: #2a3226;
  color: rgba(255, 255, 255, 0.82);
  /* espaço livre para o botão flutuante do WhatsApp */
  padding: 3.5rem 0 6.5rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-logo {
  display: block;
  height: 88px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 1.1rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  padding-right: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Legal pages */
.legal {
  padding: 8rem 0 4rem;
}

.legal h1 {
  margin-bottom: 1.5rem;
}

.legal h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

/* Header on light pages */
.site-header--solid {
  background: rgba(247, 244, 239, 0.96);
  box-shadow: 0 1px 0 var(--line);
}
