:root {
  /* Primárias */
  --white: #FFFFFF;
  --champagne: #FFF2EB;
  --beige: #F7E3BF;
  --yellow-100: #FFE67F;
  --yellow-200: #FCCD54;
  --orange: #F9A730;
  --brown: #764622;

  /* Secundárias (para fundos/elementos — texto sempre marrom) */
  --blue-100: #B1DFFF;
  --blue-200: #4AA4FF;
  --blue-300: #5987FF;

  --green-100: #C7FDC5;
  --green-200: #80EC8B;
  --green-300: #37BE73;

  --pink-100: #F8CBF8;
  --pink-200: #F98BF9;
  --pink-300: #FF60D4;

  --red: #FA572F;

  --shadow: 0 10px 24px rgba(118, 70, 34, .12);
  --shadow-soft: 0 8px 18px rgba(118, 70, 34, .10);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;

  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--brown);
  background: linear-gradient(180deg, var(--champagne) 0%, var(--beige) 100%);
}

/* Tipos */
.title-short {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.title-long {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: -.4px;
}

p {
  line-height: 1.65;
  margin: .6rem 0;
}

a {
  color: var(--brown);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding: 64px 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: 1.15fr .85fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Componentes */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  border: 1px solid rgba(118, 70, 34, .10);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(252, 205, 84, .55);
  border: 1px solid rgba(118, 70, 34, .18);
  font-size: .92rem;
  box-shadow: 0 6px 14px rgba(118, 70, 34, .08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(118, 70, 34, .20);
  background: var(--yellow-200);
  color: var(--brown);
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(118, 70, 34, .10);
  cursor: pointer;
  transition: transform .08s ease;
  text-decoration: none;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0px);
}

.btn.secondary {
  background: rgba(255, 230, 127, .55);
}

.kicker {
  font-size: .95rem;
  opacity: .95;
  margin: 0 0 10px 0;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(130%) blur(10px);
  background: rgba(255, 242, 235, .80);
  border-bottom: 1px solid rgba(118, 70, 34, .10);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  height: 88px;
  width: auto;
  display: block;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .92rem;
}

.navlinks a:hover {
  background: rgba(252, 205, 84, .35);
  border-color: rgba(118, 70, 34, .14);
  text-decoration: none;
}

.menu-btn {
  display: none;
  border: 1px solid rgba(118, 70, 34, .22);
  background: rgba(255, 255, 255, .75);
  color: var(--brown);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .navlinks {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: rgba(255, 242, 235, .96);
    border-bottom: 1px solid rgba(118, 70, 34, .10);
    padding: 12px 18px 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .navlinks.open {
    display: flex;
  }

  .brand {
    min-width: auto;
  }
}

/* Hero */
.hero {
  padding: 62px 0 22px;
}

.heroShell {
  background: linear-gradient(135deg, rgba(252, 205, 84, .65), rgba(247, 227, 191, .6));
  border: 1px solid rgba(118, 70, 34, .12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.heroInner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  padding: 26px;
  align-items: center;
}

.hero h1 {
  margin: 10px 0 10px;
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  line-height: 1.05;
}

.hero h1 span {
  background: rgba(255, 242, 235, .70);
  border-radius: 14px;
  padding: 0 10px;
  border: 1px solid rgba(118, 70, 34, .12);
}

.hero .lede {
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 10px 0 18px;
}

.heroActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.heroAside {
  background: rgba(255, 255, 255, .72);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(118, 70, 34, .12);
  padding: 18px;
}

.heroAsideTop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.heroAsideTop img {
  height: 56px;
  width: auto;
  display: block;
}

/* MVV no heroAside */
.mvv{
  margin-top:14px;
  display:grid;
  gap:10px;
}

.mvvItem{
  background: rgba(255,242,235,.75); /* champagne suave */
  border:1px solid rgba(118,70,34,.12);
  border-radius:16px;
  padding:12px;
}

.mvvTitle{
  margin-bottom:6px;
  font-size:1.05rem;
}

.mvvText{
  margin:0;
}

.mvvList{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:6px;
}

.mvvFooter{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* === MVV Accordion (details/summary) === */
.mvvAccordion{
  margin-top:14px;
  display:grid;
  gap:10px;
}

.mvvDetails{
  background: rgba(255,242,235,.75); /* champagne suave */
  border:1px solid rgba(118,70,34,.12);
  border-radius:16px;
  overflow:hidden;
}

.mvvSummary{
  list-style:none;
  cursor:pointer;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  user-select:none;
}

.mvvSummary::-webkit-details-marker{ display:none; }

.mvvTitle{
  font-size:1.05rem;
}

.mvvChevron{
  display:inline-flex;
  width:28px;
  height:28px;
  border-radius:999px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(118,70,34,.16);
  background: rgba(255,255,255,.65);
  transition: transform .18s ease;
  font-weight:800;
  color: var(--brown);
}

/* Quando abre, gira a setinha */
.mvvDetails[open] .mvvChevron{
  transform: rotate(180deg);
}

.mvvPanel{
  padding:0 12px 12px 12px;
}

.mvvText{ margin:0; }

.mvvList{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:6px;
}

/* Hover suave (desktop) */
@media (hover:hover){
  .mvvSummary:hover{
    background: rgba(252,205,84,.20);
  }
}


.stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  background: rgba(255, 242, 235, .75);
  border: 1px solid rgba(118, 70, 34, .12);
  border-radius: 16px;
  padding: 12px;
  text-align: left;
}

.stat strong {
  display: block;
  font-size: 1.15rem;
}

.stat small {
  opacity: .9;
}

@media (max-width: 980px) {
  .heroInner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* Chips / Badges coloridos (texto marrom sempre) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(118, 70, 34, .12);
  background: var(--white);
  box-shadow: 0 8px 16px rgba(118, 70, 34, .08);
  font-weight: 600;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(118, 70, 34, .20);
  background: var(--yellow-200);
}

/* Blocos de propósito */
.purpose {
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(118, 70, 34, .10);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

/* SDGs */
.sdgRow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.sdg {
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(118, 70, 34, .12);
  background: rgba(255, 255, 255, .85);
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 16px rgba(118, 70, 34, .06);
}

.sdg strong {
  font-size: 1.1rem;
}

.sdg small {
  opacity: .9;
}

@media (max-width: 980px) {
  .sdgRow {
    grid-template-columns: 1fr;
  }

  .sdg {
    min-height: auto;
  }
}

/* Clubs */
.clubCard {
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(118, 70, 34, .12);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, .78);
  position: relative;
  overflow: hidden;
}

.clubCard::after {
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(252, 205, 84, .45);
  border: 1px solid rgba(118, 70, 34, .10);
  transform: rotate(12deg);
  pointer-events: none;
}

.clubTag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(118, 70, 34, .12);
  font-weight: 800;
  background: rgba(255, 230, 127, .55);
}

.clubCard h3 {
  margin: 12px 0 8px;
  font-size: 1.4rem;
}

.muted {
  opacity: .92;
}

/* Faixa de CTA */
.cta {
  background: linear-gradient(135deg, rgba(252, 205, 84, .70), rgba(249, 167, 48, .35));
  border: 1px solid rgba(118, 70, 34, .12);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta h3 {
  margin: 0;
  font-size: 1.6rem;
}

.cta p {
  margin: 6px 0 0;
  max-width: 70ch;
}

/* Footer */
footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(118, 70, 34, .12);
  background: rgba(255, 242, 235, .70);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.small {
  font-size: .92rem;
  opacity: .95;
}

.list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.list a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.list a:hover {
  background: rgba(252, 205, 84, .30);
  border-color: rgba(118, 70, 34, .12);
  text-decoration: none;
}

@media (max-width: 980px) {
  .footerGrid {
    grid-template-columns: 1fr;
  }
}

/* Acessibilidade */
:focus-visible {
  outline: 3px solid rgba(118, 70, 34, .35);
  outline-offset: 3px;
  border-radius: 14px;
}

/* Nada de fundos escuros; se alguém inventar moda no futuro, isso aqui segura. */
.no-dark {
  background: var(--white);
}

/* === Book Promo (respeita: texto sempre marrom) === */
.bookPromo .wrap{ padding-top: 0; }

.bookPromoShell{
  background: linear-gradient(135deg, rgba(252,205,84,.65), rgba(255,242,235,.65));
  border:1px solid rgba(118,70,34,.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.bookPromoGrid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:18px;
  padding:22px;
  align-items:center;
}

.bookCover{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(118,70,34,.12);
  border-radius: var(--radius-xl);
  padding:14px;
  box-shadow: var(--shadow-soft);
}
.bookCover img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 16px;
  border:1px solid rgba(118,70,34,.10);
  background: var(--champagne);
}

.bookBadges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.bookPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(252,205,84,.55);
  border:1px solid rgba(118,70,34,.18);
  font-size:.92rem;
  font-weight:700;
  color: var(--brown);
}
.bookPill.soft{
  background: rgba(255,255,255,.65);
  border-color: rgba(118,70,34,.14);
  font-weight:600;
}

.bookDot{
  width:12px;
  height:12px;
  border-radius:999px;
  border:1px solid rgba(118,70,34,.20);
  background: var(--orange);
}

.bookTitle{
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--brown);
}

.bookText{
  margin: 0 0 14px;
  max-width: 80ch;
  color: var(--brown);
}

.bookInfoGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin: 10px 0 14px;
}

.bookInfoCard{
  background: rgba(255,255,255,.80);
  border:1px solid rgba(118,70,34,.12);
  border-radius: 18px;
  padding:12px;
  box-shadow: 0 10px 16px rgba(118,70,34,.06);
  color: var(--brown);
}

.bookInfoCard.highlight{
  background: rgba(255,230,127,.55);
  border-color: rgba(118,70,34,.16);
}

.bookPrice{
  font-weight: 800;
  font-size: 1.25rem;
  margin-top: 6px;
  color: var(--brown);
}

.bookSmall{
  font-size:.92rem;
  opacity:.95;
  margin-top: 6px;
  color: var(--brown);
}

.bookCtaRow{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.bookBtn{
  background: var(--yellow-200);
  color: var(--brown);
  border:1px solid rgba(118,70,34,.20);
}

.bookNote{
  font-size:.92rem;
  opacity:.95;
  color: var(--brown);
}

.bookMiniDisclaimer{
  margin-top: 10px;
  font-size:.86rem;
  opacity:.90;
  color: var(--brown);
}

/* Responsivo */
@media (max-width: 980px){
  .bookPromoGrid{ grid-template-columns: 1fr; }
  .bookInfoGrid{ grid-template-columns: 1fr; }
}
