/* -------------------------
   Base
-------------------------- */

:root {
  --areia-suave: #F2EDE6;
  --bege-natural: #E5DCC5;
  --verde-eucalipto: #7C8A74;
  --verde-folhagem: #506249;
  --preto-suave: #2F2F2F;
  --dourado-fosco: #C0A165;
  --branco-quente: #FBF8F3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--areia-suave);
  color: var(--preto-suave);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Títulos em Butler (ou fallback) */
h1, h2, h3, h4 {
  font-family: "Butler", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 0;
}

/* Containers e seções */

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section:nth-of-type(even) {
  background-color: #F7F2EA;
}

.section:nth-of-type(odd) {
  background-color: var(--areia-suave);
}

/* Pequenos detalhes */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--verde-eucalipto);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.section-header.narrow {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  max-width: 560px;
}

/* Links */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.text-link {
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Botões */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background-color: var(--verde-eucalipto);
  color: #fff;
  border-color: var(--verde-eucalipto);
}

.btn.primary:hover {
  background-color: var(--verde-folhagem);
  border-color: var(--verde-folhagem);
  text-decoration: none;
}

.btn.ghost {
  background-color: transparent;
  color: var(--preto-suave);
  border-color: var(--preto-suave);
}

.btn.ghost:hover {
  background-color: rgba(47,47,47,0.06);
  text-decoration: none;
}

.btn.subtle {
  background-color: transparent;
  border-color: var(--dourado-fosco);
  color: var(--preto-suave);
}

.btn.subtle:hover {
  background-color: rgba(192,161,101,0.08);
  text-decoration: none;
}

/* Header & Navegação */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(242, 237, 230, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-name {
  font-family: "Butler", "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-subtitle {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6B6B6B;
  margin-top: 0.15rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--dourado-fosco);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* HERO HOME */

.section-hero {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrapper {
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  max-width: 360px;
  width: 100%;
  border-radius: 1.75rem;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* Mensagem editorial */

.section-message {
  text-align: center;
}

.message-lead {
  font-family: "Butler", "Times New Roman", serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.message-body {
  max-width: 640px;
  margin: 0 auto 1rem;
}

/* Sobre – resumo na home */

.section-about-summary {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.about-summary-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: center;
}

.section-about-summary h2 {
  font-size: 1.6rem;
}

.about-summary-text p {
  margin-bottom: 0.75rem;
}

/* SOBRE MIM – página interna na mesma rolagem */

.section-about {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 3rem;
  align-items: start;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 1.75rem;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-content .section-subtitle {
  margin-bottom: 2rem;
}

.about-block {
  margin-bottom: 2rem;
}

.about-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.about-block ul {
  margin: 0.75rem 0 0.75rem 1.2rem;
  padding: 0;
}

.about-block li {
  margin-bottom: 0.35rem;
}

.about-cta {
  margin-top: 1.5rem;
}

/* Sessão Raiz */

.section-root {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.root-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.root-main h3,
.root-aside h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.root-main ul,
.root-aside ul {
  margin: 0.75rem 0 0.75rem 1.2rem;
  padding: 0;
}

.root-main li,
.root-aside li {
  margin-bottom: 0.4rem;
}

.root-steps {
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  padding: 1.4rem 1.4rem 1.2rem;
  border-radius: 1.5rem;
  background-color: rgba(229, 220, 197, 0.35);
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.root-integration,
.root-takeaways,
.root-faq {
  margin-bottom: 2.5rem;
}

.root-takeaways ul {
  margin-left: 1.2rem;
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.root-cta {
  text-align: center;
}

/* Produtos & Jornadas */

.section-products {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.product-card {
  padding: 1.8rem 1.6rem;
  border-radius: 1.5rem;
  background-color: #F8F3EA;
  border: 1px solid rgba(0,0,0,0.03);
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.product-card ul {
  margin-left: 1.2rem;
}

/* Contato */

.section-contact {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.contact-inner {
  max-width: 640px;
  text-align: center;
}

.contact-body ul {
  margin: 0.75rem auto 1.5rem;
  padding-left: 1.2rem;
  text-align: left;
  display: inline-block;
}

.microcopy {
  font-size: 0.85rem;
  color: #666;
}

/* Rodapé */

.site-footer {
  background-color: #1F1F1F;
  color: #EEE7DC;
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-name {
  font-family: "Butler", "Times New Roman", serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-subtitle {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  color: #C4BCB0;
}

.footer-right p {
  margin: 0 0 0.3rem;
  font-size: 0.85rem;
}

.footer-right a {
  color: inherit;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #A8A199;
}

/* Responsividade */

@media (max-width: 900px) {
  .header-inner {
    gap: 1rem;
  }

  .main-nav {
    display: none; /* versão simples sem menu mobile ainda */
  }

  .section {
    padding: 4rem 0;
  }

  .hero-grid,
  .about-summary-inner,
  .about-grid,
  .root-layout,
  .steps-grid,
  .products-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-image-wrapper {
    justify-content: center;
    order: -1;
  }

  .hero-image {
    max-width: 280px;
  }

  .about-image-wrapper {
    max-width: 380px;
    margin: 0 auto 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .section-header h2,
  .about-content h2 {
    font-size: 1.6rem;
  }

  .site-header {
    position: static;
  }
}
