/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== BASE ===== */
:root {
  --creme:     #FBF1E8;
  --offwhite:  #FEFAF7;
  --oliva:     #4D6A1F;
  --oliva-esc: #3D5A16;
  --coral:     #D96B6B;
  --rosa:      #F5C8C8;
  --salmon:    #E8847A;
  --texto:     #2D1F0E;
  --texto-mid: #5A3D28;
  --texto-lgt: #7A5A40;
  --r16: 16px;
  --r32: 32px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--creme);
  color: var(--texto);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== NAV ===== */
.nav {
  background: var(--offwhite);
  border-bottom: 1px solid var(--rosa);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 105px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img { height: 72px; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-mid);
  letter-spacing: 0.04em;
  transition: color .15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--coral); }

.nav-cta {
  background: var(--oliva-esc);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px !important;
  transition: background .15s !important;
}

.nav-cta:hover { background: var(--oliva) !important; }

/* ===== HERO ===== */
.hero {
  background: var(--creme);
  padding: 64px 24px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: var(--rosa);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: var(--rosa);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.hero-text { flex: 1; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rosa);
  border: 1.5px dashed var(--coral);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--oliva);
  margin-bottom: 8px;
}

.hero h1 span { color: var(--coral); }

.hero-sub {
  font-size: 16px;
  color: var(--texto-mid);
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--oliva-esc);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, transform .15s;
}

.btn-primary:hover { background: var(--oliva); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, color .15s;
}

.btn-secondary:hover { background: var(--coral); color: #fff; }

.hero-img {
  flex-shrink: 0;
  width: 340px;
  position: relative;
  z-index: 1;
}

.hero-img img {
  width: 100%;
  filter: drop-shadow(0 8px 32px rgba(77,106,31,0.15));
}

/* ===== PILLARS ===== */
.pillars {
  background: var(--offwhite);
  padding: 56px 24px;
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--oliva);
  margin-bottom: 8px;
}

.section-title span { color: var(--coral); }

.section-sub {
  text-align: center;
  font-size: 14px;
  color: var(--texto-mid);
  margin-bottom: 40px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.pillar-card {
  background: var(--creme);
  border-radius: var(--r16);
  padding: 28px 24px;
  text-align: center;
}

.pillar-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.pillar-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--oliva);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 13px;
  color: var(--texto-mid);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  padding: 64px 24px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.about-quote {
  flex: 1;
}

.quote-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--oliva);
  line-height: 1.5;
  border-left: 4px solid var(--coral);
  padding-left: 20px;
  margin-bottom: 20px;
}

.about p {
  font-size: 14px;
  color: var(--texto-mid);
  margin-bottom: 14px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--oliva-esc);
  padding: 48px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.btn-white {
  background: #fff;
  color: var(--oliva-esc);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  transition: transform .15s;
}

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

/* ===== BLOG GRID ===== */
.blog-section {
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.post-card {
  background: var(--offwhite);
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45,31,14,0.07);
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,31,14,0.12);
}

.post-thumb {
  background: var(--rosa);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.post-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }

.post-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.post-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--oliva);
  line-height: 1.3;
  margin-bottom: 10px;
}

.post-body p {
  font-size: 13px;
  color: var(--texto-mid);
  flex: 1;
  margin-bottom: 18px;
}

.post-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
}

.post-link:hover { text-decoration: underline; }

/* ===== CURADORIA PAGE ===== */
.page-hero {
  background: var(--offwhite);
  text-align: center;
  padding: 48px 24px 36px;
  border-bottom: 1px solid var(--rosa);
}

.page-hero h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--oliva);
  margin-bottom: 8px;
}

.page-hero h1 span { color: var(--coral); }

.page-hero p {
  font-size: 14px;
  color: var(--texto-mid);
  max-width: 480px;
  margin: 0 auto;
}

.curadoria-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oliva);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--coral);
  opacity: 0.3;
}

.card {
  background: var(--offwhite);
  border-radius: var(--r16);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(45,31,14,0.07);
  transition: transform .15s, box-shadow .15s;
  border: 1.5px solid transparent;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45,31,14,0.12);
  border-color: var(--rosa);
}

.card.featured { border-color: var(--coral); background: #fff; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--rosa);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

.card.featured .card-icon { background: var(--coral); }

.card-body { flex: 1; }

.card-badge {
  font-size: 10px; font-weight: 600; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 4px; display: block;
}

.card-title { font-size: 14px; font-weight: 600; color: var(--texto); line-height: 1.3; margin-bottom: 4px; }
.card-desc  { font-size: 12px; color: var(--texto-lgt); line-height: 1.5; }
.card-arrow { color: var(--coral); font-size: 18px; flex-shrink: 0; align-self: center; }

.divider {
  text-align: center;
  font-size: 18px;
  color: var(--coral);
  opacity: 0.5;
  margin: 24px 0;
}

.disclosure {
  font-size: 11px;
  color: #9A7A62;
  text-align: center;
  line-height: 1.6;
  margin-top: 32px;
  padding: 0 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--texto);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
}

.footer-logo { margin: 0 auto 16px; height: 100px; object-fit: contain; }

.footer p { margin-bottom: 6px; }

.footer a { color: var(--rosa); }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .hero { flex-direction: column; padding: 40px 20px 32px; text-align: center; }
  .hero-img { width: 240px; }
  .hero-actions { justify-content: center; }
  .about { flex-direction: column; }
  .nav-links { display: none; }
}
